1,634件
-
Struct edge def
117/* Control flow edge information.*/ 118 struct edge_def GTY(()) 119{ 120/* The two blocks at the ends of the edge.*/ 121 struct basic_block_def*src; 122 struct basic_block_def*dest; 123 124 -
Offsetof
549#ifndef offsetof 550#define offsetof(TYPE, MEMBER) ((size_t)&((TYPE*) 0)-MEMBER) 551#endif== 例====*プログラム==#include stdio.h#define offsetof(TYPE, MEMBER) ((size_t)&((TYPE*) 0)-MEMBER) struct test{ int a -
Struct cpp context
141 struct cpp_context 142{ 143/* Doubly-linked list.*/ 144 cpp_context*next,*prev; 145 146 union 147{ 148/* For ISO macro expansion. Contexts other than the base context 149 are contiguous tokens. e.g -
Add params
40/* Add the N PARAMS to the current list of compiler parameters.*/ 41 42 void 43 add_params (const param_info params[], size_t n) 44{ 45/* Allocate enough space for the new parameters.*/ 46 -
Call expr flags
617/* Detect flags from a CALL_EXPR.*/ 618 619 int 620 call_expr_flags (tree t) 621{ 622 int flags; 623 tree decl= get_callee_fndecl (t); 624 625 if (decl) 626 flags= flags -
Struct chunk info
53/* The chunk_info data structure forms a stack of the results from the 54 first phase of formatting (pp_base_format) which have not yet been 55 output (pp_base_output_formatted_text). A -
HONOR NANS
264/* True if the given mode has a NaN representation and the treatment of 265 NaN operands is important. Certain optimizations, such as folding 266 x* 0 into x, are not correct for NaN operands -
Enum integer type kind
2983/* An enumeration of the standard C integer types. These must be 2984 ordered so that shorter types appear before longer ones, and so 2985 that signed types appear before unsigned ones, for the correct -
Xrealloc
169: PTR 170: xrealloc (PTR oldmem, size_t size) 171:{ 172: PTR newmem; 173: 174: if (size== 0) 175: size= 1; 176: if (!oldmem) 177: newmem= malloc (size); 178: else 179: newmem= realloc (oldmem -
Xmalloc
140: PTR 141: xmalloc (size_t size) 142:{ 143: PTR newmem; 144: 145: if (size== 0) 146: size= 1; 147: newmem= malloc (size); 148: if (!newmem) 149: xmalloc_failed (size); 150: 151: return -
Htab hash pointer
188/* A hash function for pointers.*/ 189 extern htab_hash htab_hash_pointer; 79 htab_hash htab_hash_pointer= hash_pointer; -
VALGRIND DISCARD
41#ifdef ENABLE_VALGRIND_CHECKING 42# ifdef HAVE_VALGRIND_MEMCHECK_H 43# include valgrind/memcheck.h 44# elif defined HAVE_MEMCHECK_H 45# include memcheck.h 46# else 47# include valgrind.h 48# endif 49 -
TREE INT CST HIGH
*TREE_INT_CST(NODE) - struct tree_int_cst.int_cst 1081#define TREE_INT_CST_HIGH(NODE) (TREE_INT_CST (NODE).high) リンク元 -
SIZEOF LONG LONG
24/* If HAVE_LONG_LONG and SIZEOF_LONG_LONG aren't defined, but 25 GCC_VERSION= 3000, assume this is the second or later stage of a 26 bootstrap, we do have long long, and -
Xcalloc
154: PTR 155: xcalloc (size_t nelem, size_t elsize) 156:{ 157: PTR newmem; 158: 159: if (nelem== 0|| elsize== 0) 160: nelem= elsize= 1; 161: 162: newmem= calloc (nelem, elsize); 163: if (!newmem -
Fancy abort
595/* Report an internal compiler error in a friendly manner. This is 596 the function that gets called upon use of abort() in the source 597 code generally, thanks to a special macro.*/ 598 599 -
DECL THREAD LOCAL P
2582/* In a VAR_DECL, nonzero if the data should be allocated from 2583 thread-local storage.*/ 2584#define DECL_THREAD_LOCAL_P(NODE)\ 2585 (VAR_DECL_CHECK (NODE)-decl_with_vis.tls_model -
Zone get object alloc word
570/* Find which element of the alloc_bits array OBJECT should be 571 recorded in.*/ OBJECTがどの要素でalloc_bits配列の 記録されなければならないかについて -
Enum mode class
33/* Mode classes.*/ 34 35#include "mode-classes.def" 36#define DEF_MODE_CLASS(M) M 37 enum mode_class{ MODE_CLASSES, MAX_MODE_CLASS}; 38#undef DEF_MODE_CLASS 39#undef MODE_CLASSES -
Gcc assert
124#ifdef ENABLE_RUNTIME_CHECKING 125#define gcc_assert(EXPR) ((void)(!(EXPR)? abort (), 0: 0)) 126#else 127/* Include EXPR, so that unused variable warnings do not occur.*/ 128#define gcc_assert(EXPR) ((void)(0 -
ARG UNUSED
272:/* Before GCC 3.4, the C++ frontend couldn't parse attributes placed after the 273: identifier name.*/ 274:#if! defined(__cplusplus)|| (GCC_VERSION= 3004) 275:# define ARG_UNUSED(NAME) NAME ATTRIBUTE_UNUSED 276:#else -
DECL BUILT IN CLASS
2697/* For a builtin function, identify which part of the compiler defined it.*/ 2698#define DECL_BUILT_IN_CLASS(NODE)\ 2699 (FUNCTION_DECL_CHECK (NODE)-function_decl.built_in_class) リンク元 -
ISDIGIT
97:#define ISDIGIT(c)_sch_test(c,_sch_isdigit) リンク元 -
DECL SIZE UNIT
2078/* Likewise for the size in bytes.*/ 2079#define DECL_SIZE_UNIT(NODE) (DECL_COMMON_CHECK (NODE)-decl_common.size_unit) リンク元 -
ATTRIBUTE UNUSED
268:#ifndef ATTRIBUTE_UNUSED 269:#define ATTRIBUTE_UNUSED__attribute__ ((__unused__)) 270:#endif/* ATTRIBUTE_UNUSED*/ リンク元
注目のコミュニティ

Minecraft Wiki
games
4000
ページ20000
画像1
動画
Minecraft WikiはMinecraftに関する究極の情報源であり、ゲームプレイ、ブロック、クラフトレシピ、アップデート、イベント、チュートリアルなどの情報が集められています。