/prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/ |
dlfcn.h | 38 extern void* dlsym(void* handle, const char* symbol);
|
/prebuilts/ndk/7/platforms/android-5/arch-x86/usr/include/ |
dlfcn.h | 38 extern void* dlsym(void* handle, const char* symbol);
|
/prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/ |
dlfcn.h | 38 extern void* dlsym(void* handle, const char* symbol);
|
/prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/ |
dlfcn.h | 38 extern void* dlsym(void* handle, const char* symbol);
|
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/ |
dlfcn.h | 38 extern void* dlsym(void* handle, const char* symbol);
|
/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/ |
dlfcn.h | 38 extern void* dlsym(void* handle, const char* symbol);
|
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/ |
dlfcn.h | 38 extern void* dlsym(void* handle, const char* symbol);
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/ |
dlfcn.h | 38 extern void* dlsym(void* handle, const char* symbol);
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
proxies-symbols.js | 48 var symbol = Symbol("secret") 50 assertFalse(symbol in p) 51 assertFalse(symbol in o) 52 assertEquals(undefined, p[symbol]) 53 assertEquals(undefined, o[symbol]) 54 assertEquals(47, p[symbol] = 47) 55 assertEquals(47, o[symbol] = 47) 56 assertFalse(delete p[symbol]) 57 assertTrue(delete o[symbol]) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/loadso/win32/ |
SDL_sysloadso.c | 86 void *symbol = NULL; local 98 symbol = (void *)GetProcAddress((HMODULE)handle, name_t); 99 if ( symbol == NULL ) { 115 symbol = (void *)GetProcAddress((HMODULE)handle, name); 116 if ( symbol == NULL ) { 126 if ( symbol == NULL ) { 129 return(symbol);
|
/frameworks/rs/cpu_ref/linkloader/include/impl/ |
ELFSectionSymTab.hxx | 56 ELFSymbolTy *symbol = table[i]; local 57 if ( symbol ) { 58 name_map[symbol->getName()] = symbol; 66 typename llvm::StringMap<ELFSymbolTy *>::const_iterator symbol = local 68 if (symbol == name_map.end()) { 71 return symbol->getValue(); 97 // Seek to the start of symbol table 100 // Read all symbol table entry 120 out() << "Symbol Table" << '\n' [all...] |
/external/chromium_org/v8/test/mjsunit/es6/ |
mirror-symbols.js | 8 function testSymbolMirror(symbol, description) { 10 var mirror = debug.MakeMirror(symbol); 22 assertEquals('symbol', mirror.type()); 25 assertEquals('Symbol(' + description_text + ')', mirror.toText()); 26 assertSame(symbol, mirror.value()); 30 assertEquals('symbol', fromJSON.type); 35 testSymbolMirror(Symbol("a"), "a"); 36 testSymbolMirror(Symbol(12), "12"); 37 testSymbolMirror(Symbol.for("b"), "b"); 38 testSymbolMirror(Symbol(), undefined) [all...] |
/external/oprofile/libpp/ |
diff_container.cpp | 60 /// add a symbol not present in the new profile 65 diff_symbol symbol(sym); 66 symbol.diffs.fill(sym.sample.counts.size(), -INFINITY); 67 add_sym(syms, symbol, choice); 71 /// add a symbol not present in the old profile 76 diff_symbol symbol(sym); 77 symbol.diffs.fill(sym.sample.counts.size(), INFINITY); 78 add_sym(syms, symbol, choice); 82 /// add a diffed symbol 88 diff_symbol symbol(sym2) [all...] |
/external/bison/src/ |
gram.h | 30 Each symbol (either token or variable) receives a symbol number. 32 are for variables. Symbol number zero is the end-of-input token. 38 initial rule, `$accept: START-SYMBOL $end', which is numbered 1, 44 instance RITEM stores both symbol (the RHS) and rule numbers: the 56 RULES[R].lhs -- the symbol of the left hand side of rule R. 61 RULES[R].prec -- the symbol providing the precedence level of R. 63 RULES[R].precsym -- the symbol attached (via %prec) to give its 65 need to distinguish one from the other when reducing: a symbol used 81 The right hand side is stored as symbol numbers in a portion o [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
module.hpp | 78 struct symbol { struct in struct:clover::module 79 symbol(const clover::compat::vector<char> &name, resource_id section, function in struct:clover::module::symbol 82 symbol() : name(), section(0), offset(0), args() { } function in struct:clover::module::symbol 93 /// Look up a symbol by name. Throws module::noent_error if not 95 const symbol &sym(compat::string name) const; 101 clover::compat::vector<symbol> syms;
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer_win.cc | 45 PSYMBOL_INFO symbol = (PSYMBOL_INFO)buffer; local 46 symbol->SizeOfStruct = sizeof(SYMBOL_INFO); 47 symbol->MaxNameLen = MAX_SYM_NAME; 50 (DWORD64)addr, &offset, symbol); 61 info->function = internal_strdup(symbol->Name);
|
/external/llvm/test/MC/Mips/ |
micromips-expansions.s | 19 # CHECK: lui $10, %hi(symbol) # encoding: [0xaa'A',0x41'A',0x00,0x00] 21 # CHECK: value: symbol@ABS_HI, 24 # CHECK: lw $10, %lo(symbol)($10) # encoding: [0x4a'A',0xfd'A',0x00,0x00] 26 # CHECK: value: symbol@ABS_LO, 28 # CHECK: lui $1, %hi(symbol) # encoding: [0xa1'A',0x41'A',0x00,0x00] 30 # CHECK: value: symbol@ABS_HI, 33 # CHECK: sw $10, %lo(symbol)($1) # encoding: [0x41'A',0xf9'A',0x00,0x00] 35 # CHECK: value: symbol@ABS_LO, 53 lw $t2, symbol($a0) 54 sw $t2, symbol($t1 [all...] |
/external/lzma/Java/SevenZip/Compression/LZMA/ |
Decoder.java | 42 int symbol = Base.kNumLowLenSymbols;
local 44 symbol += m_MidCoder[posState].Decode(rangeDecoder);
46 symbol += Base.kNumMidLenSymbols + m_HighCoder.Decode(rangeDecoder);
47 return symbol;
64 int symbol = 1;
local 66 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol);
67 while (symbol < 0x100);
68 return (byte)symbol;
73 int symbol = 1; local [all...] |
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
module.hpp | 78 struct symbol { struct in struct:clover::module 79 symbol(const clover::compat::vector<char> &name, resource_id section, function in struct:clover::module::symbol 82 symbol() : name(), section(0), offset(0), args() { } function in struct:clover::module::symbol 93 /// Look up a symbol by name. Throws module::noent_error if not 95 const symbol &sym(compat::string name) const; 101 clover::compat::vector<symbol> syms;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
workaround.hpp | 233 # define BOOST_WORKAROUND(symbol, test) \ 234 ((symbol ## _WORKAROUND_GUARD + 0 == 0) && \ 235 (symbol != 0) && (1 % (( (symbol test) ) + 1))) 242 // (symbol test) + 1 => if (symbol test) then 2 else 1 243 // 1 % ((symbol test) + 1) => if (symbol test) then 1 else 0 249 // symbol test => if (symbol <= x) then 1 else - [all...] |
/external/libxml2/ |
xmlmodule.c | 102 * @name: the name of the symbol 103 * @symbol: the resulting symbol address 105 * Lookup for a symbol address in the given module 111 * Returns 0 if the symbol was found, or -1 in case of error 114 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol) 118 if ((NULL == module) || (symbol == NULL)) { 125 rc = xmlModulePlatformSymbol(module->handle, name, symbol); 131 "failed to find symbol: %s\n", 239 * returns 0 on success and the loaded symbol in result, and -1 on error [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
symbol.h | 70 /** struct symbol - symtab entry 74 struct symbol { struct 84 void symbol__delete(struct symbol *sym); 87 static inline size_t symbol__size(const struct symbol *sym) 138 static inline void *symbol__priv(struct symbol *sym) 151 struct symbol *sym; 158 struct symbol *sym; 178 struct symbol *sym; 224 struct symbol *dso__find_symbol(struct dso *dso, enum map_type type, 226 struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/ |
SymbolTable.cpp | 8 // Symbol table for parsing. Most functionaliy and main ideas 33 // Symbol table levels are a map of pointers to symbols that have to be deleted. 41 bool TSymbolTableLevel::insert(TSymbol *symbol) 43 symbol->setUniqueId(TSymbolTable::nextUniqueId()); 45 // returning true means symbol was added to the table 46 tInsertResult result = level.insert(tLevelPair(symbol->getMangledName(), symbol)); 63 // performance operation, and only intended for symbol tables that 82 // performance operation, and only intended for symbol tables that 89 TSymbol *symbol = it->second local 105 TSymbol *symbol; local 136 TSymbol *symbol = table[level]->find(name); local [all...] |
/external/chromium_org/third_party/libxml/src/ |
xmlmodule.c | 98 * @name: the name of the symbol 99 * @symbol: the resulting symbol address 101 * Lookup for a symbol address in the given module 103 * Returns 0 if the symbol was found, or -1 in case of error 106 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol) 110 if ((NULL == module) || (symbol == NULL)) { 117 rc = xmlModulePlatformSymbol(module->handle, name, symbol); 123 "failed to find symbol: %s\n", 231 * returns 0 on success and the loaded symbol in result, and -1 on error [all...] |
/external/iptables/extensions/ |
libxt_TOS.c | 54 const struct tos_symbol_info *symbol; local 59 " --set-tos symbol Set TOS field (IPv4 only) by symbol\n" 62 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol) 64 symbol->value, symbol->value, symbol->name); 71 const struct tos_symbol_info *symbol; local [all...] |