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

<<31323334353637383940>>

  /prebuilts/go/linux-x86/src/debug/macho/
macho.go 164 // A SymtabCmd is a Mach-O symbol table command.
174 // A DysymtabCmd is a Mach-O dynamic symbol table command.
198 // An Nlist32 is a Mach-O 32-bit symbol table entry.
207 // An Nlist64 is a Mach-O 64-bit symbol table entry.
216 // A Symbol is a Mach-O 32-bit or 64-bit symbol table entry.
217 type Symbol struct {
  /bionic/libc/bionic/
malloc_common.cpp 236 char symbol[128]; local
237 snprintf(symbol, sizeof(symbol), "%s_%s", prefix, suffix);
238 *func = reinterpret_cast<FunctionType>(dlsym(malloc_impl_handler, symbol));
240 error_log("%s: dlsym(\"%s\") failed", getprogname(), symbol);
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
EscapingEvaluator.java 102 .symbol("EscapeMode.ESCAPE_NONE"));
182 string(name)), JavaExpression.symbol("EscapeMode.ESCAPE_IS_CONSTANT"), JavaExpression
183 .symbol("EscapeMode.ESCAPE_NONE"));
203 return JavaExpression.callOn(JavaExpression.symbol("EscapeMode"), "combineModes", first,
245 setEscaping(JavaExpression.symbol("EscapeMode.ESCAPE_IS_CONSTANT"));
  /external/webp/src/utils/
huffman_encode_utils.c 22 // Util function to optimize the symbol map for RLE coding
50 uint32_t symbol = counts[0]; local
53 if (i == length || counts[i] != symbol) {
54 if ((symbol == 0 && stride >= 5) ||
55 (symbol != 0 && stride >= 7)) {
63 symbol = counts[i];
150 // bit_depths[]: how many bits are used for the symbol.
375 // 0 bit-depth means that the symbol does not exist.
388 depth_count[0] = 0; // ignore unused symbol
  /toolchain/binutils/binutils-2.25/bfd/
nlm32-i386.c 86 If this is a relocation fixup rather than an imported symbol (the
90 segment. If this is an imported symbol, then the high bit is 0
92 offset to the symbol, or 1 if the location should adjusted by the
93 absolute value of the symbol.
263 the symbol value, if any, the same way. */
266 /* The value of a symbol is the offset into the section. If the
267 symbol is in the .bss segment, we need to include the size of
331 struct nlm_relent *nlm_relocs; /* Relocation records for symbol. */
334 unsigned char symlength; /* Length of symbol name. */
340 sym -> symbol.the_bfd = abfd
    [all...]
elf32-nios2.c 832 /* Given the symbol's value and its section we can determine its final
839 /* The symbol table entry, if any, that this was derived from. */
859 decides to copy as dynamic relocs in check_relocs for each symbol.
885 symbol. */
888 /* Track dynamic relocs copied for this symbol. */
956 /* GOT pointer symbol _gp_got. */
    [all...]
coff-h8300.c 200 asymbol * symbol ATTRIBUTE_UNUSED,
349 #define CALC_ADDEND(abfd, symbol, ext_reloc, cache_ptr) \
396 the relaxed reloc, notify the linker that symbol addresses
1084 asymbol *symbol; local
1315 asymbol *symbol = *(reloc->sym_ptr_ptr); local
    [all...]
mach-o.c 500 Must be called only for symbol pointer section and symbol stubs
520 Must be called only for symbol pointer section and symbol stubs
550 /* Copy any private info we understand from the input symbol
551 to the output symbol. */
566 os->symbol.udata.i = is->symbol.udata.i;
772 alocation[j] = &sym->symbols[j].symbol;
807 /* We need to allocate a bfd symbol for every indirect symbol and t
    [all...]
riscix.c 162 asymbol *symbol ATTRIBUTE_UNUSED,
197 asymbol *symbol,
208 /* If this is an undefined symbol, return error. */
209 if (bfd_is_und_section (symbol->section)
210 && (symbol->flags & BSF_WEAK) == 0)
215 if (symbol->section->name != input_section->name
221 relocation += symbol->value;
222 relocation += symbol->section->output_section->vma;
223 relocation += symbol->section->output_offset;
333 /* Name was clobbered by aout_write_syms to be symbol index. *
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
v32-err-1.s 11 move.d [$acr],$r3 ; No error - $acr treated as a symbol.
13 move.d $acr,$r7 ; No error - $acr treated as a symbol.
15 move $acr,$srp ; No error - $acr treated as a symbol.
97 jump $srp ; No error - $srp treated as a symbol.
98 jump $bz ; No error - $bz treated as a symbol.
  /system/extras/simpleperf/scripts/
pprof_proto_generator.py 300 symbol = self.lib.GetSymbolOfCurrentSample()
310 if self._filter_symbol(symbol):
311 location_id = self.get_location_id(symbol.vaddr_in_file, symbol)
315 if self._filter_symbol(symbol):
316 location_id = self.get_location_id(entry.ip, entry.symbol)
349 def _filter_symbol(self, symbol):
350 if not self.dso_filter or symbol.dso_name in self.dso_filter:
382 def get_location_id(self, ip, symbol):
383 mapping_id = self.get_mapping_id(symbol.mapping[0], symbol.dso_name
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/goobj/
read.go 23 // A SymKind describes the kind of memory represented by a symbol.
30 // TODO(rsc): Reduce the number of symbol types in the object files.
120 // A Sym is a named symbol in an object file.
122 SymID // symbol identifier (name and version)
123 Kind SymKind // kind of symbol
126 Type SymID // symbol for Go type information
127 Data Data // memory image of symbol
133 // a symbol within a package.
135 // Name is the name of a symbol.
141 // a symbol in one file from a symbol of the same nam
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/goobj/
read.go 23 // A SymKind describes the kind of memory represented by a symbol.
30 // TODO(rsc): Reduce the number of symbol types in the object files.
120 // A Sym is a named symbol in an object file.
122 SymID // symbol identifier (name and version)
123 Kind SymKind // kind of symbol
126 Type SymID // symbol for Go type information
127 Data Data // memory image of symbol
133 // a symbol within a package.
135 // Name is the name of a symbol.
141 // a symbol in one file from a symbol of the same nam
    [all...]
  /external/toybox/kconfig/
zconf.tab.c_shipped 64 /* Put the tokens into the symbol table, so that GDB and other debuggers
173 struct symbol *symbol_hash[257];
206 struct symbol *symbol;
386 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
393 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
429 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
504 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM
    [all...]
conf.c 67 static void conf_askvalue(struct symbol *sym, const char *def)
173 struct symbol *sym = menu->sym;
207 struct symbol *sym = menu->sym;
281 struct symbol *sym, *def_sym;
410 struct symbol *sym;
472 struct symbol *sym;
  /frameworks/base/tools/aapt/
AaptAssets.h 306 * All information we know about a particular symbol.
371 if (!check_valid_symbol_name(name, pos, "symbol")) {
382 if (!check_valid_symbol_name(name, pos, "symbol")) {
392 if (!check_valid_symbol_name(name, pos, "symbol")) {
401 if (!check_valid_symbol_name(name, pos, "symbol")) {
436 if (!check_valid_symbol_name(name, pos, "nested symbol")) {
462 bool check_valid_symbol_name(const String8& symbol, const SourcePos& pos, const char* label) {
463 if (valid_symbol_name(symbol)) {
466 pos.error("invalid %s: '%s'\n", label, symbol.string());
469 AaptSymbolEntry& edit_symbol(const String8& symbol, const SourcePos* pos)
    [all...]
  /frameworks/base/tools/aapt2/unflatten/
BinaryResourceParser.cpp 393 Symbol symbol; local
394 symbol.state = SymbolState::kPublic;
395 symbol.source = source_.WithLine(0);
396 if (!table_->SetSymbolStateAllowMangled(name, res_id, symbol, context_->GetDiagnostics())) {
531 Attribute::Symbol symbol; local
532 symbol.value = util::DeviceToHost32(map_entry.value.data);
533 symbol.symbol = Reference(util::DeviceToHost32(map_entry.name.ident))
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 379 # Attempt to match the current input symbol the token type
380 # specified by +type+. If the symbol matches the type,
381 # consume the current symbol and return its value. If
382 # the symbol doesn't match, attempt to use the follow-set
397 # the current symbol from the input stream.
440 "missing #{ token_name } at #{ token_error_display( e.symbol ) }"
443 "mismatched input #{ token_error_display( e.symbol ) } expecting #{ token_name }"
446 "mismatched tree node: #{ e.symbol } expecting #{ token_name }"
448 "no viable alternative at input " << token_error_display( e.symbol )
451 [ token_error_display( e.symbol ), e.expecting.inspect
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
link.go 41 // Symbol is an entry in the symbol table.
42 type Symbol struct {
61 Sub *Symbol
62 Outer *Symbol
63 Gotype *Symbol
64 Reachparent *Symbol
70 // P contains the raw symbol data.
75 func (s *Symbol) String() string {
82 func (s *Symbol) ElfsymForReloc() int32
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
link.go 41 // Symbol is an entry in the symbol table.
42 type Symbol struct {
61 Sub *Symbol
62 Outer *Symbol
63 Gotype *Symbol
64 Reachparent *Symbol
70 // P contains the raw symbol data.
75 func (s *Symbol) String() string {
82 func (s *Symbol) ElfsymForReloc() int32
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/mzscheme/
mzrun.swg 452 Scheme_Object *pointer, *symbol;
456 symbol = scheme_intern_symbol("swig-runtime-data-type-pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME);
457 pointer = scheme_lookup_global(symbol, env);
469 Scheme_Object *pointer, *symbol;
473 symbol = scheme_intern_symbol("swig-runtime-data-type-pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME);
474 pointer = scheme_lookup_global(symbol, env);
492 scheme_add_global_symbol(symbol, pointer, env);
  /external/ImageMagick/MagickCore/
fx.c 1271 symbol[MagickPathExtent]; local
    [all...]
  /cts/tools/dasm/src/java_cup/
lalr_state.java 25 * would be reduced into a C, matching the first symbol in our production
42 * the symbol on the LHS.
218 * @param on_sym the symbol the transition is under.
221 public void add_transition(symbol on_sym, lalr_state to_st)
239 * from a state we make a transition on each symbol that appears before
283 symbol sym, sym2;
322 /* add the symbol before the dot (if any) to our collection */
327 /* now create a transition out for each individual symbol */
330 sym = (symbol)s.nextElement();
336 symbol before the dot *
    [all...]
  /frameworks/base/tools/aapt2/proto/
TableProtoSerializer.cpp 100 for (auto& symbol : attr->symbols) {
102 SerializeItemCommonToPb(symbol.symbol, pb_symbol);
103 SerializeReferenceToPb(symbol.symbol, pb_symbol->mutable_name());
104 pb_symbol->set_value(symbol.value);
  /prebuilts/go/darwin-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...]

Completed in 3050 milliseconds

<<31323334353637383940>>