HomeSort by relevance Sort by last modified time
    Searched defs:symbol (Results 101 - 125 of 267) sorted by null

1 2 3 45 6 7 8 91011

  /system/core/libcorkscrew/
symbol_table.c 56 const symbol_t* symbol = (const symbol_t*)element; local
57 if (addr < symbol->start) return -1;
58 if (addr >= symbol->end) return 1;
65 ALOGV("Loading symbol table from '%s'.", filename);
133 // Iterate through the dynamic symbol table, and count how many symbols
144 // Iterate through the symbol table, and count how many symbols
156 // Now, create an entry in our symbol table structure for each symbol...
199 // Sort the symbol table entries, so they can be bsearched later
  /art/compiler/
elf_writer_mclinker.cc 231 // subtract a word so symbol is within section
257 const std::string& symbol = compiled_code.GetSymbol(); local
258 SafeMap<const std::string*, const std::string*>::iterator it = added_symbols_.find(&symbol);
262 added_symbols_.Put(&symbol, &symbol);
264 // Add input to supply code for symbol
268 mcld::Input* code_input = ir_builder_->ReadInput(symbol,
385 const std::string& symbol = compiled_code.GetSymbol(); local
386 SafeMap<const std::string*, uint32_t>::iterator it = symbol_to_compiled_code_offset_.find(&symbol);
392 symbol,
    [all...]
  /art/compiler/sea_ir/code_gen/
code_gen.cc 198 std::string symbol = "dex_"; local
199 symbol += art::MangleForJni(PrettyMethod(invoke->GetCalledMethodIndex(), dex_file_));
  /bionic/libc/bionic/
malloc_debug_common.cpp 297 char symbol[128]; local
298 snprintf(symbol, sizeof(symbol), "%s_%s", prefix, suffix);
299 *func = reinterpret_cast<FunctionType>(dlsym(malloc_impl_handler, symbol));
301 error_log("%s: dlsym(\"%s\") failed", __progname, symbol);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
RubyTarget.java 120 } else if ( formatName.equals( "symbol" ) ) {
121 return symbol( idString );
205 private String symbol( String value ) { method in class:RubyTarget.RubyRenderer
  /external/chromium_org/courgette/
disassembler_elf_32_arm.cc 278 // The other 3 bytes of r_info are the symbol
279 uint32 symbol = rel.r_info >> 8; local
284 if (symbol != 0)
  /external/chromium_org/native_client_sdk/src/libraries/xray/
browser.c 30 struct XRaySymbol* symbol = XRaySymbolTableLookup(symbols, addr); local
31 return XRaySymbolGetName(symbol);
symtable.c 5 /* XRay symbol table */
57 const char* XRaySymbolGetName(struct XRaySymbol* symbol) {
58 return (NULL == symbol) ? "(null)" : symbol->name;
65 struct XRaySymbol* symbol; local
66 symbol = XRaySymbolPoolAlloc(sympool);
67 symbol->name = name;
68 return symbol;
73 struct XRaySymbol* symbol; local
81 symbol = &sympool->current->symbols[sympool->index]
132 struct XRaySymbol* symbol; local
156 struct XRaySymbol* symbol = XRaySymbolCreate(symtab->symbol_pool, name); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterValidatedProgram.cpp 78 const ANGLEShaderSymbol& symbol = symbols[i]; local
79 switch (symbol.symbolType) {
82 SymbolNameToTypeMap::iterator builtInAttribute = attributeNameToTypeMap->find(symbol.name);
89 if (meshType == MeshTypeAttached && symbol.name == "a_triangleCoord") {
95 if (symbol.dataType != builtInAttribute->value) {
104 if (symbol.isSampler()) {
114 SymbolNameToTypeMap::iterator builtInUniform = uniformNameToTypeMap->find(symbol.name);
115 if (builtInUniform != uniformNameToTypeMap->end() && (symbol.isArray || symbol.dataType != builtInUniform->value)) {
285 // Implemented using the same symbol names as the Compositing and Blending spec
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
ValidateLimitations.cpp 13 bool IsLoopIndex(const TIntermSymbol* symbol, const TLoopStack& stack) {
15 if (i->index.id == symbol->getId())
21 void MarkLoopForUnroll(const TIntermSymbol* symbol, TLoopStack& stack) {
23 if (i->index.id == symbol->getId()) {
49 virtual void visitSymbol(TIntermSymbol* symbol) {
53 mValid = (symbol->getQualifier() == EvqConst) ||
54 IsLoopIndex(symbol, mLoopStack);
76 virtual void visitSymbol(TIntermSymbol* symbol) {
77 if (IsLoopIndex(symbol, mLoopStack)) {
78 switch (symbol->getBasicType())
125 TIntermSymbol* symbol = node->getLeft()->getAsSymbolNode(); local
265 TIntermSymbol* symbol = declInit->getLeft()->getAsSymbolNode(); local
307 TIntermSymbol* symbol = binOp->getLeft()->getAsSymbolNode(); local
365 TIntermSymbol* symbol = NULL; local
428 TIntermSymbol* symbol = params[i]->getAsSymbolNode(); local
439 TSymbol* symbol = symbolTable.find(node->getName()); local
463 const TIntermSymbol* symbol = operand->getAsSymbolNode(); local
    [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/third_party/icu/source/test/intltest/
tsdtfmsy.cpp 41 DateFormatSymbols *symbol; local
43 symbol=new DateFormatSymbols(Locale::getDefault(), status);
45 month=symbol->getMonths(cnt);
54 delete symbol;
60 DateFormatSymbols *symbol; local
62 symbol=new DateFormatSymbols(Locale::getDefault(), status);
70 const UnicodeString * month = symbol->getMonths(cnt,context[i],width[j]);
79 delete symbol;
85 DateFormatSymbols *symbol; local
87 symbol=new DateFormatSymbols(Locale::getDefault(), status)
113 DateFormatSymbols *symbol; local
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
huffman_encode.c 22 // Util function to optimize the symbol map for RLE coding
54 int symbol = counts[0]; local
57 if (i == length || counts[i] != symbol) {
58 if ((symbol == 0 && stride >= 5) ||
59 (symbol != 0 && stride >= 7)) {
67 symbol = counts[i];
163 // bit_depths[]: how many bits are used for the symbol.
396 // 0 bit-depth means that the symbol does not exist.
409 depth_count[0] = 0; // ignore unused symbol
  /external/elfutils/src/
addr2line.c 69 { "symbols", 'S', NULL, 0, N_("Also show symbol or section names"), 0 },
111 /* True if ELF symbol or section info should be shown. */
304 /* No symbol name. Get a section name instead. */
341 GElf_Sym *symbol = ((void **) arg)[1]; local
346 const char *symbol_name = dwfl_module_getsym (mod, i, symbol, NULL);
349 switch (GELF_ST_TYPE (symbol->st_info))
421 /* It was symbol+offset. */
426 error (0, 0, gettext ("cannot find symbol '%s'"), name);
  /external/icu4c/test/intltest/
tsdtfmsy.cpp 42 DateFormatSymbols *symbol; local
44 symbol=new DateFormatSymbols(Locale::getDefault(), status);
46 month=symbol->getMonths(cnt);
55 delete symbol;
61 DateFormatSymbols *symbol; local
63 symbol=new DateFormatSymbols(Locale::getDefault(), status);
71 const UnicodeString * month = symbol->getMonths(cnt,context[i],width[j]);
80 delete symbol;
86 DateFormatSymbols *symbol; local
88 symbol=new DateFormatSymbols(Locale::getDefault(), status)
114 DateFormatSymbols *symbol; local
145 DateFormatSymbols *symbol=new DateFormatSymbols(Locale::getEnglish(), status); local
    [all...]
  /external/llvm/include/llvm/Object/
Archive.h 124 class Symbol {
130 bool operator ==(const Symbol &other) const {
134 Symbol(const Archive *p, uint32_t symi, uint32_t stri)
140 Symbol getNext() const;
144 Symbol symbol; member in class:llvm::object::Archive::symbol_iterator
146 symbol_iterator(const Symbol &s) : symbol(s) {}
147 const Symbol *operator->() const {
148 return &symbol;
    [all...]
  /external/openfst/src/include/fst/script/
draw-impl.h 130 string symbol = syms->Find(id); local
131 if (symbol == "") {
133 << " is not mapped to any textual symbol"
134 << ", symbol table = " << syms->Name()
136 symbol = "?";
139 EscapeChars(symbol, &nsymbol);
211 const SymbolTable *isyms_; // ilabel symbol table
212 const SymbolTable *osyms_; // olabel symbol table
213 const SymbolTable *ssyms_; // slabel symbol table
  /external/oprofile/libutil++/
op_bfd.h 33 /// all symbol vector indexing uses this type
37 * A symbol description from a bfd point of view. This duplicate
39 * the symbol is an artificial symbol
56 asymbol const * symbol() const { return bfd_symbol; } function in class:op_bfd_symbol
67 /// the original bfd symbol, this can be null if the symbol is an
68 /// artificial symbol
70 /// the offset of this symbol relative to the begin of the section's
71 /// symbol
    [all...]
  /external/srec/tools/grxmlcompile/
fst-io.h 81 string symbol = syms->Find(id); local
82 if (symbol == "") {
84 << " is not mapped to any textual symbol"
85 << ", symbol table = " << syms->Name()
89 *ostrm_ << symbol; local
138 const SymbolTable *isyms_; // ilabel symbol table
139 const SymbolTable *osyms_; // olabel symbol table
140 const SymbolTable *ssyms_; // slabel symbol table
296 LOG(ERROR) << "FstReader: Symbol \"" << s
298 << ", symbol table = " << syms->Name(
    [all...]
  /external/v8/src/
scopeinfo.cc 420 String* symbol; local
422 if (HEAP->LookupSymbolIfExists(name, &symbol)) {
423 int index = Hash(data, symbol);
426 key.name = symbol;
448 String* symbol; local
449 if (HEAP->LookupSymbolIfExists(name, &symbol)) {
  /external/v8/test/cctest/
test-compiler.cc 103 Handle<String> symbol = FACTORY->LookupAsciiSymbol(name); local
104 return Isolate::Current()->context()->global()->GetProperty(*symbol);
110 Handle<String> symbol = FACTORY->LookupAsciiSymbol(name); local
112 SetProperty(global, symbol, object, NONE, kNonStrictMode);
  /external/webp/src/utils/
huffman_encode.c 22 // Util function to optimize the symbol map for RLE coding
54 int symbol = counts[0]; local
57 if (i == length || counts[i] != symbol) {
58 if ((symbol == 0 && stride >= 5) ||
59 (symbol != 0 && stride >= 7)) {
67 symbol = counts[i];
163 // bit_depths[]: how many bits are used for the symbol.
396 // 0 bit-depth means that the symbol does not exist.
409 depth_count[0] = 0; // ignore unused symbol
  /external/zlib/src/contrib/blast/
blast.c 95 * symbol[] are the symbol values in canonical order, where the number of
101 short *symbol; /* canonically ordered symbols */ member in struct:huffman
105 * Decode a code from the stream s using huffman table h. Return the symbol or
131 int index; /* index of first code of length len in symbol table */
146 if (code < first + count) { /* if length len, return symbol */
149 return h->symbol[index + (code - first)];
183 * enough bits will resolve to a symbol. If the return value is positive, then
189 int symbol; /* current symbol when stepping through length[] * local
282 int symbol; \/* decoded symbol, extra bits for distance *\/ local
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 65 * - Catch missing end-of-block symbol error
202 * symbol[] are the symbol values in canonical order, where the number of
208 short *symbol; /* canonically ordered symbols */ member in struct:huffman
212 * Decode a code from the stream s using huffman table h. Return the symbol or
241 int index; /* index of first code of length len in symbol table */
247 if (code - count < first) /* if length len, return symbol */
248 return h->symbol[index + (code - first)];
269 int index; /* index of first code of length len in symbol table */
284 if (code - count < first) { /* if length len, return symbol */
342 int symbol; \/* current symbol when stepping through length[] *\/ local
440 int symbol; \/* decoded symbol *\/ local
545 int symbol; local
704 int symbol; \/* decoded value *\/ local
    [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 341 // if the symbol does not exist, we can set type to NOTYPE
432 // into output symbol table
480 /// finalizeSymbolValue - finalize the resolved symbol value.
482 /// symbol.
497 LDSymbol* symbol = m_pModule->getNamePool().findSymbol(symName); local
498 assert(NULL != symbol && "--defsym symbol should be in the name pool");
502 symbol->setValue(symVal);

Completed in 2229 milliseconds

1 2 3 45 6 7 8 91011