/external/chromium_org/third_party/tcmalloc/vendor/src/ |
libc_override_gcc_and_weak.h | 36 // suppports the 'alias' attribute. 54 #define ALIAS(tc_fn) __attribute__ ((alias (#tc_fn))) 57 ALIAS(tc_new); 59 ALIAS(tc_delete); 61 ALIAS(tc_newarray); 63 ALIAS(tc_deletearray); 65 ALIAS(tc_new_nothrow); 67 ALIAS(tc_newarray_nothrow); 69 ALIAS(tc_delete_nothrow) [all...] |
libc_override_glibc.h | 51 // __attribute__((alias)) to do the overriding easily (exception: 75 #define ALIAS(tc_fn) __attribute__ ((alias (#tc_fn))) 77 void* __libc_malloc(size_t size) ALIAS(tc_malloc); 78 void __libc_free(void* ptr) ALIAS(tc_free); 79 void* __libc_realloc(void* ptr, size_t size) ALIAS(tc_realloc); 80 void* __libc_calloc(size_t n, size_t size) ALIAS(tc_calloc); 81 void __libc_cfree(void* ptr) ALIAS(tc_cfree); 82 void* __libc_memalign(size_t align, size_t s) ALIAS(tc_memalign); 83 void* __libc_valloc(size_t size) ALIAS(tc_valloc) [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
libc_override_gcc_and_weak.h | 36 // suppports the 'alias' attribute. 54 #define ALIAS(tc_fn) __attribute__ ((alias (#tc_fn))) 64 ALIAS(tc_new); 66 ALIAS(tc_delete); 68 ALIAS(tc_newarray); 70 ALIAS(tc_deletearray); 72 ALIAS(tc_new_nothrow); 74 ALIAS(tc_newarray_nothrow); 76 ALIAS(tc_delete_nothrow) [all...] |
libc_override_glibc.h | 62 // __attribute__((alias)) to do the overriding easily (exception: 86 #define ALIAS(tc_fn) __attribute__ ((alias (#tc_fn))) 88 void* __libc_malloc(size_t size) ALIAS(tc_malloc); 89 void __libc_free(void* ptr) ALIAS(tc_free); 90 void* __libc_realloc(void* ptr, size_t size) ALIAS(tc_realloc); 91 void* __libc_calloc(size_t n, size_t size) ALIAS(tc_calloc); 92 void __libc_cfree(void* ptr) ALIAS(tc_cfree); 93 void* __libc_memalign(size_t align, size_t s) ALIAS(tc_memalign); 94 void* __libc_valloc(size_t size) ALIAS(tc_valloc) [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface.cc | 73 ALIAS("__tsan_unaligned_read2") SANITIZER_INTERFACE_ATTRIBUTE; 75 ALIAS("__tsan_unaligned_read4") SANITIZER_INTERFACE_ATTRIBUTE; 77 ALIAS("__tsan_unaligned_read8") SANITIZER_INTERFACE_ATTRIBUTE; 79 ALIAS("__tsan_unaligned_write2") SANITIZER_INTERFACE_ATTRIBUTE; 81 ALIAS("__tsan_unaligned_write4") SANITIZER_INTERFACE_ATTRIBUTE; 83 ALIAS("__tsan_unaligned_write8") SANITIZER_INTERFACE_ATTRIBUTE;
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_allocator_testlib.cc | 137 void cfree(void *p) ALIAS("free"); 138 void *pvalloc(size_t size) ALIAS("valloc"); 139 void *__libc_memalign(size_t alignment, size_t size) ALIAS("memalign"); 155 void *operator new(size_t size) ALIAS("malloc"); 156 void *operator new[](size_t size) ALIAS("malloc"); 157 void *operator new(size_t size, std::nothrow_t const&) ALIAS("malloc"); 158 void *operator new[](size_t size, std::nothrow_t const&) ALIAS("malloc"); 159 void operator delete(void *ptr) ALIAS("free"); 160 void operator delete[](void *ptr) ALIAS("free"); 161 void operator delete(void *ptr, std::nothrow_t const&) ALIAS("free") [all...] |
/external/clang/include/clang/Driver/ |
CC1AsOptions.h | 25 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
|
Options.h | 38 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
|
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
indirect_size.c | 52 __attribute__ ((alias( # to ))); 53 # define ALIAS(from,to) ALIAS2( from, __gl ## to ## _size ) 55 # define ALIAS(from,to) \ 355 ALIAS( Fogiv, Fogfv ) 356 ALIAS( Lightiv, Lightfv ) 357 ALIAS( LightModeliv, LightModelfv ) 358 ALIAS( Materialiv, Materialfv ) 359 ALIAS( TexParameteriv, TexParameterfv ) 360 ALIAS( TexEnviv, TexEnvfv ) 361 ALIAS( TexGenfv, TexGendv [all...] |
/external/clang/lib/Driver/ |
CC1AsOptions.cpp | 24 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 27 FLAGS, OPT_##GROUP, OPT_##ALIAS, ALIASARGS },
|
DriverOptions.cpp | 24 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 27 FLAGS, OPT_##GROUP, OPT_##ALIAS, ALIASARGS },
|
SanitizerArgs.h | 35 #define SANITIZER_GROUP(NAME, ID, ALIAS) ID = ALIAS, 112 #define SANITIZER_GROUP(NAME, ID, ALIAS) .Case(NAME, ID)
|
/packages/apps/Exchange/src/com/android/exchange/provider/ |
GalResult.java | 58 public static final String ALIAS = "alias";
|
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/ |
program_parse.tab.h | 43 ALIAS = 261, 151 #define ALIAS 261
|
/external/llvm/unittests/Option/ |
OptionParsingTest.cpp | 22 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 40 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 43 FLAGS, OPT_##GROUP, OPT_##ALIAS, ALIASARGS },
|
/external/checkpolicy/ |
policy_scan.l | 105 ALIAS | 106 alias { return(ALIAS); }
|
/external/compiler-rt/lib/asan/ |
asan_malloc_linux.cc | 105 ALIAS("memalign");
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
GalParser.java | 84 galData.put(GalData.ALIAS, getValue());
|
/external/compiler-rt/lib/lsan/ |
lsan_interceptors.cc | 138 INTERCEPTOR(void, cfree, void *p) ALIAS("free"); 171 INTERCEPTOR(void *, __libc_memalign, uptr align, uptr s) ALIAS("memalign");
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_internal_defs.h | 120 # define ALIAS(x) 134 # define ALIAS(x) __attribute__((alias(x)))
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/118/1/.cp/lib/ |
jarprocessor-ant.jar | |
/external/clang/lib/Basic/ |
IdentifierTable.cpp | 178 #define ALIAS(NAME, TOK, FLAGS) \ 181 #define CXX_KEYWORD_OPERATOR(NAME, ALIAS) \ 183 AddCXXOperatorKeyword(StringRef(#NAME), tok::ALIAS, *this);
|
/frameworks/compile/slang/ |
llvm-rs-cc.cpp | 78 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 87 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 95 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 98 FLAGS, OPT_##GROUP, OPT_##ALIAS, ALIASARGS },
|
/external/chromium_org/third_party/icu/source/i18n/ |
transreg.cpp | 58 // Alias 429 ALIAS, 435 UnicodeString stringArg; // For RULES_*, ALIAS, COMPOUND_RBT 553 // reg->get() inside the mutex, they'll get back an alias, they call 554 // alias->isRuleBased(), and if they get TRUE, they call alias->parse() 559 // alias->parse() and reg->reget(), that another thread will have 570 entry->entryType = TransliteratorEntry::ALIAS; 580 entry->entryType = TransliteratorEntry::ALIAS; 662 const UnicodeString& alias, [all...] |
/external/icu4c/i18n/ |
transreg.cpp | 60 // Alias 431 ALIAS, 437 UnicodeString stringArg; // For RULES_*, ALIAS, COMPOUND_RBT 555 // reg->get() inside the mutex, they'll get back an alias, they call 556 // alias->isRuleBased(), and if they get TRUE, they call alias->parse() 561 // alias->parse() and reg->reget(), that another thread will have 572 entry->entryType = TransliteratorEntry::ALIAS; 582 entry->entryType = TransliteratorEntry::ALIAS; 664 const UnicodeString& alias, [all...] |