HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 851 - 875 of 2152) sorted by null

<<31323334353637383940>>

  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
macho.go 33 return nil, fmt.Errorf("missing symbol table")
37 // We infer the size of a symbol by looking at where the next symbol begins.
  /prebuilts/go/darwin-x86/src/compress/bzip2/
bzip2.go 248 // the symbol set is reduced. The symbols used are stored as a
256 for symbol := uint(0); symbol < 16; symbol++ {
257 if bits&(1<<(15-symbol)) != 0 {
258 symbolPresent[16*symRange+symbol] = true
266 // There must be an EOF symbol.
277 // tree indexes telling us which tree to use for each 50 symbol block.
300 // the previously decoded symbol bitmap.
380 // This is either the RUNA or RUNB symbol
    [all...]
  /prebuilts/go/darwin-x86/src/plugin/
plugin_dlopen.go 99 // Fill out the value of each plugin symbol.
111 return nil, errors.New("plugin.Open: could not find symbol " + symName + ": " + C.GoString(cErr))
125 func lookup(p *Plugin, symName string) (Symbol, error) {
129 return nil, errors.New("plugin: symbol " + symName + " not found in plugin " + p.pluginpath)
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
objfile.go 8 // Now they are more like standard object files, in that each symbol is defined
22 // - sequence of symbol references used by the defined symbols
42 // A symbol reference is a string name followed by a version.
44 // A symbol points to other symbols using an index into the symbol
46 // In the symbol layout described below "symref index" stands for this
49 // Each symbol is laid out as the following fields (taken from LSym*):
137 // Provide the the index of a symbol reference by symbol name.
139 // Used for deduplicating the symbol reference list
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
macho.go 33 return nil, fmt.Errorf("missing symbol table")
37 // We infer the size of a symbol by looking at where the next symbol begins.
  /prebuilts/go/linux-x86/src/compress/bzip2/
bzip2.go 248 // the symbol set is reduced. The symbols used are stored as a
256 for symbol := uint(0); symbol < 16; symbol++ {
257 if bits&(1<<(15-symbol)) != 0 {
258 symbolPresent[16*symRange+symbol] = true
266 // There must be an EOF symbol.
277 // tree indexes telling us which tree to use for each 50 symbol block.
300 // the previously decoded symbol bitmap.
380 // This is either the RUNA or RUNB symbol
    [all...]
  /prebuilts/go/linux-x86/src/plugin/
plugin_dlopen.go 99 // Fill out the value of each plugin symbol.
111 return nil, errors.New("plugin.Open: could not find symbol " + symName + ": " + C.GoString(cErr))
125 func lookup(p *Plugin, symName string) (Symbol, error) {
129 return nil, errors.New("plugin: symbol " + symName + " not found in plugin " + p.pluginpath)
  /toolchain/binutils/binutils-2.25/bfd/
coff-i960.c 101 * correct info on this symbol */
107 if (bfd_is_und_section (cs->symbol.section)) {
112 /* So the target symbol has to be of coff type, and the symbol
114 if ((bfd_asymbol_flavour(&cs->symbol) != bfd_target_coff_flavour)
118 from a mix n match input, linking from coff to a symbol defined in a
120 will only work if the bout symbol is non leaf. */
122 (char *) _("uncertain calling convention for non-COFF symbol");
141 the 2nd auxent of the original symbol. We keep the native
164 appear to correctly handle a reloc against a symbol defined in th
    [all...]
elf64-mips.c 191 /* 32 bit symbol relative relocation. */
227 /* High 16 bits of symbol value. */
242 /* Low 16 bits of symbol value. */
954 /* 32 bit symbol relative relocation. */
    [all...]
  /external/kmod/libkmod/
libkmod-elf.c 537 const char *symbol = elf_get_mem(elf, off + offcrc); local
539 if (symbol[0] == '.')
540 symbol++;
542 slen += strlen(symbol) + 1;
554 const char *symbol = elf_get_mem(elf, off + offcrc); local
557 if (symbol[0] == '.')
558 symbol++;
562 a[i].symbol = itr;
563 symbollen = strlen(symbol) + 1;
564 memcpy(itr, symbol, symbollen)
892 const char *symbol = elf_get_mem(elf, off + i + crclen); local
    [all...]
  /frameworks/base/tools/aapt2/
ResourceParser_test.cpp 328 ASSERT_TRUE(enum_attr->symbols[0].symbol.name);
329 EXPECT_THAT(enum_attr->symbols[0].symbol.name.value().entry, Eq("bar"));
332 ASSERT_TRUE(enum_attr->symbols[1].symbol.name);
333 EXPECT_THAT(enum_attr->symbols[1].symbol.name.value().entry, Eq("bat"));
336 ASSERT_TRUE(enum_attr->symbols[2].symbol.name);
337 EXPECT_THAT(enum_attr->symbols[2].symbol.name.value().entry, Eq("baz"));
355 ASSERT_TRUE(flag_attr->symbols[0].symbol.name);
356 EXPECT_THAT(flag_attr->symbols[0].symbol.name.value().entry, Eq("bar"));
359 ASSERT_TRUE(flag_attr->symbols[1].symbol.name);
360 EXPECT_THAT(flag_attr->symbols[1].symbol.name.value().entry, Eq("bat"))
    [all...]
  /system/extras/simpleperf/
cmd_report.cpp 53 const Symbol* symbol; member in struct:__anon114431::BranchFromEntry
58 : map(nullptr), symbol(nullptr), vaddr_in_file(0), flags(0) {}
70 const Symbol* symbol; member in struct:__anon114431::SampleEntry
78 const MapEntry* map, const Symbol* symbol, uint64_t vaddr_in_file)
86 symbol(symbol),
149 const Symbol* symbol variable
191 const Symbol* symbol = thread_tree_->FindSymbol(map, ip, &vaddr_in_file); variable
    [all...]
  /bionic/tools/versioner/src/
SymbolDatabase.cpp 51 for (const ELFSymbolRef symbol : elf->getDynamicSymbolIterators()) {
52 Expected<StringRef> symbolNameOrError = symbol.getName();
55 errx(1, "failed to get symbol name for symbol in %s: %s", filename.c_str(),
134 printf("duplicated symbol '%s' in '%s'\n", symbol_name.str().c_str(), file.str().c_str());
  /development/scripts/
symbol.py 19 The information can include symbol names, offsets, and source locations.
176 """Look up symbol information about an address.
199 """Look up symbol information for a set of addresses from the given library.
247 """Look up line and symbol information for a set of addresses.
254 A dictionary of the form {addr: [(symbol, file:line)]} where
256 or an empty list if no symbol information was found.
307 symbol = child.stdout.readline().strip()
308 if symbol == "??":
309 symbol = None
313 if symbol is None and location is None
    [all...]
  /development/vndk/tools/header-checker/header-abi-util/include/
header_abi_util.h 74 void AddToVars(std::string &symbol);
76 void AddToFunctions(std::string &symbol);
  /external/autotest/client/bin/net/
net_utils_mock.py 17 def __init__(self, symbol, **kwargs):
18 mock.mock_function.__init__(self, symbol, *kwargs)
  /external/brotli/dec/
decode.c 296 bits that correspond to the decoded symbol.
415 /* Reads (s->symbol + 1) symbols.
421 /* max_bits == 1..10; symbol == 0..3; 1..40 bits will be read. */
425 uint32_t num_symbols = s->symbol;
454 /* Process single decoded symbol code length:
462 uint32_t* symbol, uint32_t* repeat, uint32_t* space,
467 symbol_lists[next_symbol[code_len]] = (uint16_t)(*symbol);
468 next_symbol[code_len] = (int)(*symbol);
472 BROTLI_LOG(("[ReadHuffmanCode] code_length[%d] = %d\n", *symbol, code_len));
474 (*symbol)++
539 uint32_t symbol = s->symbol; local
    [all...]
  /external/icu/icu4c/source/i18n/
affixpatternparser.h 35 * Includes the symbol, ISO code form, and long form(s) of the currency name
41 * Symbol is \u00a4; ISO form is \u00a4\u00a4;
49 void setSymbol(const UnicodeString &symbol) {
50 fSymbol = symbol;
101 * The symbol form of the currency.
  /external/icu/icu4c/source/samples/numfmt/
main.cpp 99 * while the currency symbol and number of decimals are set for
117 // the currency symbol
147 // Unicode string with the desired currency display symbol or name
148 UChar symbol[16]; member in struct:__anon20235
177 symbols.setSymbol(DecimalFormatSymbols::kCurrencySymbol, currencyMap[i].symbol);
188 * while the currency symbol and number of decimals are set for
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.sh 8 * By default application code must explicitly refer to mangled symbol names,
  /external/libxml2/os400/
wrappers.c 84 _lx_dlsym(void * handle, const char * symbol)
90 result = dlsym(handle, xmlTranscodeResult(symbol, NULL, &d, NULL));
  /external/llvm/include/llvm/LTO/legacy/
LTOModule.h 43 const GlobalValue *symbol; member in struct:llvm::LTOModule::NameAndAttributes
135 /// Get the attributes for a symbol at the specified index.
142 /// Get the name of the symbol at the specified index.
151 return _symbols[index].symbol;
172 /// Add a symbol which isn't defined just yet to a list to be resolved later.
176 /// Add a defined symbol to the list.
180 /// Add a data symbol as defined to the list.
184 /// Add a function symbol as defined to the list.
188 /// Add a global symbol from module-level ASM to the defined list.
191 /// Add a global symbol from module-level ASM to the undefined list
    [all...]
  /external/llvm/test/MC/Mips/
macro-la-bad.s 21 la $5, symbol
  /external/llvm/test/MC/PowerPC/
ppc64-localentry.s 46 # if the target symbol does not use .localentry
75 # Verify that symbol assignment copies the Other bits.
  /external/llvm/test/MC/X86/AlignedBundling/
labeloffset.s 22 # 26 bytes of instructions between the pop and the use of the pic base symbol.
53 # 26 bytes of instructions between the pop and the use of the pic base symbol.

Completed in 732 milliseconds

<<31323334353637383940>>