HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 351 - 375 of 1029) sorted by null

<<11121314151617181920>>

  /art/compiler/
elf_fixup.cc 36 // Lookup "oatdata" symbol address.
127 // TODO: Unfortunate ELFObjectFile has protected symbol access, so use ElfFile
135 Elf32_Sym* symbol = elf_file.GetSymbol(section_type, i); local
136 CHECK(symbol != nullptr);
137 if (symbol->st_value != 0) {
141 symbol->st_value, symbol->st_value + base_address);
143 symbol->st_value += base_address;
  /external/chromium_org/third_party/icu/source/test/depstest/
depstest.py 38 # nm shows a symbol class of "W" rather than "T".
127 for symbol in imports:
129 if symbol in _obj_files[file_name]["imports"]:
131 (item_type, name, file_name, symbol, name, _symbols_to_files.get(symbol)))
149 for symbol in system_symbols:
150 _symbols_to_files[symbol] = name
  /external/chromium_org/tools/cygprofile/
symbolize.py 93 # information needed to symbolize (i.e. address, size and symbol name).
99 # called in profiled run, we will symbolize to include all symbol names at
121 """Find starting address of a symbol at a particular address.
124 that the log file may give an address after the start of the symbol. The
136 the starting address of the symbol at address addr
165 """Find function symbol names at address addr."""
223 symbol = AddrToLine(call[3], lib_file)
225 + symbol)
229 for symbol in symbols:
230 print '.text.' + symbol
    [all...]
  /external/icu/icu4c/source/test/depstest/
depstest.py 38 # nm shows a symbol class of "W" rather than "T".
127 for symbol in imports:
129 if symbol in _obj_files[file_name]["imports"]:
131 (item_type, name, file_name, symbol, name, _symbols_to_files.get(symbol)))
149 for symbol in system_symbols:
150 _symbols_to_files[symbol] = name
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
vmlinux-kallsyms.c 5 #include "symbol.h"
12 struct symbol *sym)
25 struct symbol *sym;
67 * find the reference relocation * symbol, i.e. the symbol we will use
100 * While doing that look if we find the ref reloc symbol, if we find it
121 struct symbol *pair, *first_pair;
124 sym = rb_entry(nd, struct symbol, rb_node);
140 * kallsyms don't have the symbol end, so we
141 * set that by using the next symbol start - 1
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
UnwindMacOSXFrameBackchain.cpp 15 #include "lldb/Symbol/Function.h"
16 #include "lldb/Symbol/Symbol.h"
17 #include "lldb/Symbol/ObjectFile.h"
145 else if (first_frame_sc.symbol)
147 range.GetBaseAddress() = first_frame_sc.symbol->GetAddress();
148 range.SetByteSize (first_frame_sc.symbol->GetByteSize());
244 else if (first_frame_sc.symbol)
246 range.GetBaseAddress() = first_frame_sc.symbol->GetAddress();
247 range.SetByteSize (first_frame_sc.symbol->GetByteSize())
    [all...]
  /external/srec/srec/Semproc/src/
SymbolTable.c 71 /* delete the symbol table */
81 Symbol* symbol; local
95 CHKLOG(rc, ST_getSymbolSlot(self, &symbol));
99 LSTRCPY(symbol->key, key);
102 CHKLOG(rc, HashMapPut(self->hashmap, symbol->key, symbol->value));
105 buf = symbol->value;
196 ESR_ReturnCode ST_getSymbolSlot(SymbolTable* ptr, Symbol** slot)
291 PLogError(L("Semproc: Symbol table has too many special symbols"))
    [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 118 // Add the symbol set by -u as an undefind global symbol into symbol pool
138 // create the output symbol if it dose not have one
445 // Traverse all the resolveInfo and add the output symbol to output
485 // go through the entire symbol assignments
487 LDSymbol* symbol = NULL; local
488 assert((*it).second.symbol().type() == Operand::SYMBOL);
489 const llvm::StringRef symName = (*it).second.symbol().name()
671 Module::sym_iterator symbol, symEnd = m_pModule->sym_end(); local
706 LDSymbol* symbol = (*assign).first; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 19 On the other hand, symbol numbers (representing the grammar's
76 symbol, number = mo.groups()
78 assert symbol not in self.symbol2number
80 self.symbol2number[symbol] = number
81 self.number2symbol[number] = symbol
176 symbol = mo.group(2)
178 assert self.symbol2number[symbol] == number, (lineno, line)
179 assert self.number2symbol[number] == symbol, (lineno, line)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 19 On the other hand, symbol numbers (representing the grammar's
76 symbol, number = mo.groups()
78 assert symbol not in self.symbol2number
80 self.symbol2number[symbol] = number
81 self.number2symbol[number] = symbol
176 symbol = mo.group(2)
178 assert self.symbol2number[symbol] == number, (lineno, line)
179 assert self.number2symbol[number] == symbol, (lineno, line)
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 552 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol)
556 if (symbol == 0)
575 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol)
577 symbol |= 0x100;
580 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
581 symbol <<= 1;
583 while (symbol < 0x10000);
586 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte)
589 symbol |= 0x100
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 553 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol)
557 if (symbol == 0)
576 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol)
578 symbol |= 0x100;
581 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
582 symbol <<= 1;
584 while (symbol < 0x10000);
587 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte)
590 symbol |= 0x100
    [all...]
  /external/lzma/C/
LzmaEnc.c 552 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol)
556 if (symbol == 0)
575 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol)
577 symbol |= 0x100;
580 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
581 symbol <<= 1;
583 while (symbol < 0x10000);
586 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte)
589 symbol |= 0x100;
    [all...]
Ppmd7Enc.c 77 void Ppmd7_EncodeSymbol(CPpmd7 *p, CPpmd7z_RangeEnc *rc, int symbol)
85 if (s->Symbol == symbol)
97 if ((++s)->Symbol == symbol)
108 p->HiBitsFlag = p->HB2Flag[p->FoundState->Symbol];
110 MASK(s->Symbol) = 0;
112 do { MASK((--s)->Symbol) = 0; } while (--i);
119 if (s->Symbol == symbol)
    [all...]
  /external/lzma/xz-embedded/
xz_dec_lzma2.c 20 * Minimum number of usable input buffer to safely decode one LZMA symbol.
522 uint32_t symbol = 1; local
525 if (rc_bit(rc, &probs[symbol]))
526 symbol = (symbol << 1) + 1;
528 symbol <<= 1;
529 } while (symbol < limit);
531 return symbol;
539 uint32_t symbol = 1; local
543 if (rc_bit(rc, &probs[symbol])) {
584 uint32_t symbol; local
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Build/
Inline.py 130 for symbol in unbound_symbols(code):
131 if symbol in kwds:
133 elif symbol in locals:
134 kwds[symbol] = locals[symbol]
135 elif symbol in globals:
136 kwds[symbol] = globals[symbol]
138 print("Couldn't find ", symbol)
  /external/bison/src/
reader.c 56 | Set the start symbol. |
60 grammar_start_symbol_set (symbol *sym, location loc)
98 /* After all symbol type declarations have been parsed, packgram invokes
169 | null pointer instead of a symbol to terminate the rule. The next |
170 | symbol is the lhs of the following rule. |
176 /* The (currently) last symbol of GRAMMAR. */
181 grammar_symbol_append (symbol *sym, location loc)
203 symbol *sym = p->content.sym;
208 _("duplicated symbol name for %s ignored"),
229 grammar_current_rule_begin (symbol *lhs, location loc
    [all...]
  /external/chromium_org/base/debug/
stack_trace_win.cc 47 // thread at a time. SymbolContext code may access a symbol server over the
101 // Initialize symbol information retrieval structures.
103 PSYMBOL_INFO symbol = reinterpret_cast<PSYMBOL_INFO>(&buffer[0]); local
104 symbol->SizeOfStruct = sizeof(SYMBOL_INFO);
105 symbol->MaxNameLen = kMaxNameLength - 1;
107 &sym_displacement, symbol);
119 (*os) << symbol->Name << " [0x" << trace[i] << "+"
122 // If there is no symbol information, add a spacer.
123 (*os) << "(No symbol) [0x" << trace[i] << "]";
137 // Defer symbol load until they're needed, use undecorated names, an
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
SymbolTable.h 11 // Symbol table for parsing. Has these design characteristics:
13 // * Same symbol table can be used to compile many shaders, to preserve
18 // so that symbol table lookups are never ambiguous. This allows
19 // a simpler symbol table structure.
21 // * Pushing and popping of scope, so symbol table will really be a stack
22 // of symbol tables. Searched from the top, with new inserts going into
26 // in the symbol table. The parser can substitute constants at parse
30 // are tracked in the intermediate representation, not the symbol table.
39 // Symbol base class. (Can build functions or variables out of these...)
95 // Variable class, meaning a symbol that's not a function
    [all...]
  /external/chromium_org/third_party/codesighs/
nm2tsv.c 155 char* symbol = NULL; local
188 symbol = type + 1;
189 *symbol = '\0';
190 symbol++;
216 case 'W': /* weak symbol ??? */
256 ** Symbol is last.
258 fprintf(inOptions->mOutput, "%s\n", symbol);
481 printf("GNU nm is assumed for symbol type determination.\n");
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
file_storage_unittest.py 15 from memory_inspector.core import symbol namespace
101 symbols = symbol.Symbols()
102 # Symbol db is global per archive, no need to StartNewSnapshot.
103 symbols.Add('foo.so', 1, symbol.Symbol('sym1', 'file1.c', 11))
104 symbols.Add('bar.so', 2, symbol.Symbol('sym2', 'file2.c', 12))
105 sym3 = symbol.Symbol('sym3', 'file2.c', 13)
  /external/chromium_org/v8/src/
log-utils.cc 161 void Log::MessageBuilder::AppendSymbolName(Symbol* symbol) {
162 DCHECK(symbol);
163 Append("symbol(");
164 if (!symbol->name()->IsUndefined()) {
166 AppendDetailed(String::cast(symbol->name()), false);
169 Append("hash %x)", symbol->Hash());
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
machine.h 12 struct symbol;
93 struct symbol **parent,
116 struct symbol *machine__find_kernel_symbol(struct machine *machine,
126 struct symbol *machine__find_kernel_function(struct machine *machine, u64 addr,
135 struct symbol *machine__find_kernel_function_by_name(struct machine *machine,
  /external/lldb/scripts/Python/interface/
SBModule.i 13 "Represents an executable image and its associated object and symbol files.
22 SBModule supports symbol iteration, for example,
24 for symbol in module:
25 name = symbol.GetName()
26 saddr = symbol.GetStartAddress()
27 eaddr = symbol.GetEndAddress()
49 print INDENT2 + 'symbol type: %s' % symbol_type_to_str(sym.GetType())
55 symbol type: code
57 symbol type: code
59 symbol type: cod
    [all...]
  /external/zopfli/src/zopfli/
deflate.c 45 static void AddBits(unsigned symbol, unsigned length,
50 unsigned bit = (symbol >> i) & 1;
61 static void AddHuffmanBits(unsigned symbol, unsigned length,
67 unsigned bit = (symbol >> (length - i - 1)) & 1;
141 /* This is an encoding of a huffman tree, so now the length is a symbol */
142 unsigned char symbol = i < hlit2 ? ll_lengths[i] : d_lengths[i - hlit2]; local
144 if(use_16 || (symbol == 0 && (use_17 || use_18))) {
145 for (j = i + 1; j < lld_total && symbol ==
153 if (symbol == 0 && count >= 3) {
178 /* Repetitions of any symbol */
225 unsigned symbol = clsymbols[rle[i]]; local
383 size_t symbol, sum, limit; local
    [all...]

Completed in 2644 milliseconds

<<11121314151617181920>>