| /src/tests/usr.bin/indent/ |
| fmt_init.c | 8 int global = { initializer }; 10 initializer 16 int local = { initializer }; 18 initializer 24 // $ XXX: The spaces around the initializer are gone. 25 int global = {initializer}; 27 initializer 33 // $ XXX: The spaces around the initializer are gone. 34 int local = {initializer}; 36 initializer [all...] |
| opt_bad.c | 119 * A declaration that has a braced initializer is still a declaration and 124 initializer(void) function 144 initializer(void) function 168 // $ The '}' in an initializer does not finish a declaration,
|
| edge_cases.c | 22 /* same as '(int){ initializer }' */ 23 number = (int)<% initializer %>; 38 /* same as '(int){ initializer }' */ 41 number = (int)<%initializer % >;
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/ |
| dylib_fixes.c | 19 __attribute__((constructor)) static void initializer () function
|
| deh.d | 48 cast(byte*) t !is typeid(t).initializer.ptr)
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/ |
| hash.h | 34 isc_hash_set_initializer(const void *initializer);
|
| /src/external/bsd/pcc/dist/pcc/driver/ |
| platform.c | 138 const struct platform_specific *initializer; member in struct:__anon7932 160 const struct platform_specific *initializer; local 184 initializer = platform_specific_inits[i].initializer; 188 if (initializer[j].arch != arch && 189 initializer[j].arch != ARCH_ANY) 191 if (initializer[j].os != os && 192 initializer[j].os != OS_ANY) 195 strlist_append_array(l, initializer[j].values);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| id.d | 36 mixin(msgtable.generate(&initializer)); 575 // Used to generate the code for each initializer. 576 string initializer(Msgtable m)
|
| /src/external/apache2/llvm/dist/clang/include/clang/CodeGen/ |
| ConstantInitFuture.h | 45 /// A "future" for a completed constant initializer, which can be passed 58 /// A future can be explicitly created from a fixed initializer. 59 explicit ConstantInitFuture(llvm::Constant *initializer) : Data(initializer) { 60 assert(initializer && "creating null future"); 66 /// Return the type of the initializer. 69 /// Abandon this initializer. 72 /// Install the initializer into a global variable. This cannot
|
| /src/external/mpl/bind/dist/lib/isc/ |
| hash.c | 52 isc_hash_set_initializer(const void *initializer) { 53 REQUIRE(initializer != NULL); 55 memmove(isc_hash_key, initializer, sizeof(isc_hash_key));
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/ |
| rmem.d | 232 return GC.malloc(ci.initializer.length, attr, ci); 239 const initializer = ci.initializer; 241 auto p = mem.isGCEnabled ? allocClass(ci) : allocmemoryNoFree(initializer.length); 242 memcpy(p, initializer.ptr, initializer.length); 253 return cast(Object) allocmemoryNoFree(ci.initializer.length); 267 const initializer = ti.initializer; 268 memcpy(p, initializer.ptr, initializer.length) [all...] |
| rootobject.d | 33 initializer,
|
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| tsd_generic.h | 80 tsd_t initializer = TSD_INITIALIZER; local 81 wrapper->val = initializer; 110 tsd_t initializer = TSD_INITIALIZER; local 111 wrapper->val = initializer;
|
| tsd_win.h | 93 tsd_t initializer = TSD_INITIALIZER; local 94 wrapper->val = initializer;
|
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| tsd_generic.h | 80 tsd_t initializer = TSD_INITIALIZER; local 81 wrapper->val = initializer; 110 tsd_t initializer = TSD_INITIALIZER; local 111 wrapper->val = initializer;
|
| tsd_win.h | 93 tsd_t initializer = TSD_INITIALIZER; local 94 wrapper->val = initializer;
|
| /src/external/bsd/pcc/dist/pcc/cc/driver/ |
| platform.c | 257 const struct platform_specific *initializer; member in struct:__anon7929 279 const struct platform_specific *initializer; local 303 initializer = platform_specific_inits[i].initializer; 307 if (initializer[j].arch != arch && 308 initializer[j].arch != ARCH_ANY) 310 if (initializer[j].os != os && 311 initializer[j].os != OS_ANY) 313 strlist_append_array(l, initializer[j].values);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| StringSet.h | 27 StringSet(std::initializer_list<StringRef> initializer) { 28 for (StringRef str : initializer)
|
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| tsd_generic.h | 91 tsd_t initializer = TSD_INITIALIZER; local 93 wrapper->val = initializer; 134 tsd_t initializer = TSD_INITIALIZER; local 136 wrapper->val = initializer;
|
| tsd_win.h | 93 tsd_t initializer = TSD_INITIALIZER; local 94 wrapper->val = initializer;
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| tsd_generic.h | 91 tsd_t initializer = TSD_INITIALIZER; local 93 wrapper->val = initializer; 134 tsd_t initializer = TSD_INITIALIZER; local 136 wrapper->val = initializer;
|
| tsd_win.h | 93 tsd_t initializer = TSD_INITIALIZER; local 94 wrapper->val = initializer;
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| ConstantInitBuilder.cpp | 1 //===--- ConstantInitBuilder.cpp - Global initializer builder -------------===// 52 ConstantInitBuilderBase::createFuture(llvm::Constant *initializer) { 54 Buffer.push_back(initializer); 67 ConstantInitBuilderBase::createGlobal(llvm::Constant *initializer, 74 initializer->getType(), 77 initializer, 88 llvm::Constant *initializer){ 89 GV->setInitializer(initializer); 157 // position after installing the initializer. 170 // position after installing the initializer [all...] |
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| lambda.cc | 290 (i.e. without explicit initializer). */ 522 /* From an ID and INITIALIZER, create a capture (by reference if 535 tree initializer = orig_init; local 537 if (PACK_EXPANSION_P (initializer)) 539 initializer = PACK_EXPANSION_PATTERN (initializer); 543 if (TREE_CODE (initializer) == TREE_LIST 545 && !PACK_EXPANSION_P (TREE_VALUE (initializer))) 546 initializer = build_x_compound_expr_from_list (initializer, ELK_INIT [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| lambda.cc | 286 (i.e. without explicit initializer). */ 512 /* From an ID and INITIALIZER, create a capture (by reference if 525 tree initializer = orig_init; local 527 if (PACK_EXPANSION_P (initializer)) 529 initializer = PACK_EXPANSION_PATTERN (initializer); 533 if (TREE_CODE (initializer) == TREE_LIST 535 && !PACK_EXPANSION_P (TREE_VALUE (initializer))) 536 initializer = build_x_compound_expr_from_list (initializer, ELK_INIT [all...] |