HomeSort by relevance Sort by last modified time
    Searched refs:symbols (Results 201 - 225 of 1791) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/mesa3d/src/amd/common/
ac_binary.c 52 * total number of symbols, and we will only be filling the list
53 * with offsets of global symbols. The memory savings from
56 * of global symbols.
85 static void parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols,
91 if (!relocs || !symbols || !binary->reloc_count) {
103 gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &symbol);
118 Elf_Data *symbols = NULL, *relocs = NULL; local
164 symbols = elf_getdata(section, section_data);
166 parse_symbol_table(symbols, &section_header, binary);
174 parse_relocs(elf, relocs, symbols, symbol_sh_link, binary)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_elf_util.c 46 * total number of symbols, and we will only be filling the list
47 * with offsets of global symbols. The memory savings from
50 * of global symbols.
79 static void parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols,
85 if (!relocs || !symbols || !binary->reloc_count) {
97 gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &symbol);
112 Elf_Data *symbols = NULL, *relocs = NULL; local
158 symbols = elf_getdata(section, section_data);
160 parse_symbol_table(symbols, &section_header, binary);
168 parse_relocs(elf, relocs, symbols, symbol_sh_link, binary)
    [all...]
  /libcore/ojluni/src/main/java/sun/util/locale/provider/
CalendarDataUtility.java 163 DateFormatSymbols symbols = getDateFormatSymbols(id, locale); local
166 return symbols.getMonths(context, width);
170 return symbols.getNarrowEras();
172 return symbols.getEras();
174 return symbols.getEraNames();
179 return symbols.getWeekdays(context, width);
181 return symbols.getAmPmStrings();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DateFormatSymbolsTest.java 87 DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale); local
88 assertEquals(DateFormatSymbols.getInstance(Locale.ROOT), symbols); local
96 DateFormatSymbols symbols = new DateFormatSymbols(); local
97 DateFormatSymbols clone = (DateFormatSymbols) symbols.clone();
98 assertTrue("Not equal", symbols.equals(clone));
404 DateFormatSymbols symbols = new DateFormatSymbols(Locale.FRANCE); local
405 String[][] zoneStrings = symbols.getZoneStrings();
411 objectOStream.writeObject(symbols);
421 assertEquals(symbols, symbolsD);
  /prebuilts/go/darwin-x86/src/debug/elf/
file.go 452 // getSymbols returns a slice of Symbols from parsing the symbol table
466 // ErrNoSymbols is returned by File.Symbols and File.DynamicSymbols
494 symbols := make([]Symbol, symtab.Len()/Sym32Size)
501 symbols[i].Name = str
502 symbols[i].Info = sym.Info
503 symbols[i].Other = sym.Other
504 symbols[i].Section = SectionIndex(sym.Shndx)
505 symbols[i].Value = uint64(sym.Value)
506 symbols[i].Size = uint64(sym.Size)
510 return symbols, strdata, ni
    [all...]
  /prebuilts/go/linux-x86/src/debug/elf/
file.go 452 // getSymbols returns a slice of Symbols from parsing the symbol table
466 // ErrNoSymbols is returned by File.Symbols and File.DynamicSymbols
494 symbols := make([]Symbol, symtab.Len()/Sym32Size)
501 symbols[i].Name = str
502 symbols[i].Info = sym.Info
503 symbols[i].Other = sym.Other
504 symbols[i].Section = SectionIndex(sym.Shndx)
505 symbols[i].Value = uint64(sym.Value)
506 symbols[i].Size = uint64(sym.Size)
510 return symbols, strdata, ni
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/number/
CurrencyDemo.java 51 DecimalFormatSymbols symbols = result.getDecimalFormatSymbols(); local
52 symbols.setCurrencySymbol(hack.symbol);
53 result.setDecimalFormatSymbols(symbols);
  /external/llvm/test/ExecutionEngine/RuntimeDyld/ARM/
MachO_ARM_PIC_relocations.s 20 # Check stub generation for external symbols by referencing a common symbol, 'baz'.
31 # Check stub generation for internal symbols by referencing 'bar'.
37 # Add 'aaa' to the common symbols to make sure 'baz' isn't at the start of the
  /build/soong/scripts/
strip.sh 11 # --keep-symbols
21 --keep-symbols Keep symbols in out-file
45 "${CROSS_COMPILE}objcopy" -S --remove-section .gdb_index --remove-section .comment --keep-symbols="${outfile}.keep_symbols" "${outfile}.mini_debuginfo"
65 keep-symbols) keep_symbols=true ;;
91 echo "--keep-symbols and --keep-mini-debug-info cannot be used together"
  /external/antlr/antlr-3.4/runtime/Python/tests/
t022scopes.py 67 symbols = parser.c()
70 symbols,
115 symbols = parser.d()
118 symbols,
  /external/bison/src/
closure.c 65 fprintf (stderr, " %s", symbols[*rp]->tag);
81 fprintf (stderr, "\t%s firsts\n", symbols[i]->tag);
85 symbols[j + ntokens]->tag);
102 fprintf (stderr, "\t%s derives\n", symbols[i]->tag);
119 | symbols 8 3 20, the symbol 8 can be the beginning of the data for |
154 | For example, if symbol 5 can be derived as the sequence of symbols |
graphviz.c 95 if (s->errs->symbols[n])
96 bitset_set (*no_reduce_set, s->errs->symbols[n]->number);
195 firstd = print_token (&dout, firstd, symbols[i]->tag);
199 firste = print_token (&eout, firste, symbols[i]->tag);
symtab.c 31 | Symbols sorted by tag. Allocated by the first invocation of |
32 | symbols_do, after which no more symbols should be created. |
38 | Distinguished symbols. |
91 fatal (_("too many symbols in input grammar (limit is %d)"),
237 /* Apply default %destructor's only to user-defined symbols. */
291 /* Apply the default %printer only to user-defined symbols. */
496 | into FDEFINES. Put in SYMBOLS. |
508 symbols[this->number] = this;
558 symbols[token_translations[this->user_token_number]],
759 | Free the symbols.
    [all...]
  /external/boringssl/src/util/fipstools/testdata/x86_64-BSS/
in.s 8 # BSS symbols may also be emitted in .bss sections.
  /external/brotli/dec/
huffman.h 50 /* interpreted as follows: 0 means 1 symbol, 1 means 2 symbols, 2 means 3 */
51 /* symbols, 3 means 4 symbols with lengths 2,2,2,2, 4 means 4 symbols with */
54 int root_bits, uint16_t* symbols, uint32_t num_symbols);
  /external/curl/docs/libcurl/
mksymbolsmanpage.pl 52 .TH libcurl-symbols 3 "$date" "libcurl $version" "libcurl symbols"
54 libcurl-symbols \\- libcurl symbol version information
55 .SH "libcurl symbols"
56 This man page details version information for public symbols provided in the
58 introduced and for some symbols two additional information pieces:
67 This man page is automatically generated from the symbols-in-versions file.
  /external/icu/icu4c/source/i18n/
digitformatter.h 130 * Let symbols determine the digits, decimal separator,
133 DigitFormatter(const DecimalFormatSymbols &symbols);
138 * according to symbols.
140 void setDecimalFormatSymbols(const DecimalFormatSymbols &symbols);
145 * according to symbols in the context of monetary amounts.
147 void setDecimalFormatSymbolsForMonetary(const DecimalFormatSymbols &symbols);
239 void setOtherDecimalFormatSymbols(const DecimalFormatSymbols &symbols);
  /external/llvm/test/Object/Inputs/
elfver.S 6 # Also, strip off non-dynamic symbols:
  /external/mesa3d/src/compiler/glsl/
ir_print_visitor.h 88 _mesa_symbol_table *symbols; member in class:ir_print_visitor
  /external/syslinux/gpxe/src/util/
symcheck.pl 40 # Add symbols that we know will be generated or required by the linker
73 # Add symbols that we know will be used by the debug system
86 # symbols
89 while ( ( my $object, my $symbols ) = each %$symtab ) {
90 while ( ( my $symbol, my $info ) = each %$symbols ) {
105 # Check for multiply defined, never-defined and unused global symbols
129 # Linker-provided symbols are exempt from this check.
149 # Check for excessively large local symbols. Text and rodata symbols
152 while ( ( my $object, my $symbols ) = each %$symtab )
    [all...]
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
example_test.go 32 w.Write([]byte("These symbols will be escaped: = \t"))
36 // These symbols will be escaped: =3D =09
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
example_test.go 32 w.Write([]byte("These symbols will be escaped: = \t"))
36 // These symbols will be escaped: =3D =09
  /toolchain/binutils/binutils-2.25/bfd/
coff-m88k.c 82 /* Get symbol value. (Common symbols are special.) */
248 #define RELOC_PROCESSING(relent,reloc,symbols,abfd,section) \
249 reloc_processing(relent, reloc, symbols, abfd, section)
254 asymbol **symbols,
263 relent->sym_ptr_ptr = symbols + obj_convert (abfd)[reloc->r_symndx];
coff-tic30.c 151 #define RELOC_PROCESSING(relent,reloc,symbols,abfd,section) \
152 reloc_processing(relent, reloc, symbols, abfd, section)
157 asymbol **symbols,
165 relent->sym_ptr_ptr = symbols + obj_convert (abfd)[reloc->r_symndx];
liboasys.h 75 asymbol *symbols; member in struct:_oasys_data

Completed in 1041 milliseconds

1 2 3 4 5 6 7 891011>>