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

1 2 3 4 5 67 8 91011>>

  /development/scripts/
stack_core.py 20 import symbol namespace
27 print "Reading symbols from", symbol.SYMBOLS_DIR
60 if symbol.ARCH == "arm64" or symbol.ARCH == "mips64" or symbol.ARCH == "x86_64":
65 self.register_line = re.compile("(([ ]*\\b(" + self.register_names[symbol.ARCH] + ")\\b +[0-9a-f]" + self.width + "){2,5})")
81 # bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so (symbol)
108 if symbol.ARCH == "arm64" or symbol.ARCH == "mips64" or symbol.ARCH == "x86_64"
    [all...]
stack 23 import symbol namespace
57 symbol.ARCH = value
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
elf_mem_image.cc 33 // Allow dynamic symbol lookup in an in-memory Elf image.
46 // /* This flag appears in a Versym structure. It means that the symbol
75 static int ElfBind(const ElfW(Sym) *symbol) {
76 return ELF32_ST_BIND(symbol->st_info);
78 static int ElfType(const ElfW(Sym) *symbol) {
79 return ELF32_ST_TYPE(symbol->st_info);
86 static int ElfBind(const ElfW(Sym) *symbol) {
87 return ELF64_ST_BIND(symbol->st_info);
89 static int ElfType(const ElfW(Sym) *symbol) {
90 return ELF64_ST_TYPE(symbol->st_info)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
elf_mem_image.cc 33 // Allow dynamic symbol lookup in an in-memory Elf image.
46 // /* This flag appears in a Versym structure. It means that the symbol
75 static int ElfBind(const ElfW(Sym) *symbol) {
76 return ELF32_ST_BIND(symbol->st_info);
78 static int ElfType(const ElfW(Sym) *symbol) {
79 return ELF32_ST_TYPE(symbol->st_info);
86 static int ElfBind(const ElfW(Sym) *symbol) {
87 return ELF64_ST_BIND(symbol->st_info);
89 static int ElfType(const ElfW(Sym) *symbol) {
90 return ELF64_ST_TYPE(symbol->st_info)
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
map.c 9 #include "../../util/symbol.h"
23 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
39 static u32 *symbol__browser_index(struct symbol *self)
47 struct symbol *sym;
117 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
  /external/lldb/source/Symbol/
SymbolContext.cpp 10 #include "lldb/Symbol/SymbolContext.h"
17 #include "lldb/Symbol/Block.h"
18 #include "lldb/Symbol/ClangASTContext.h"
19 #include "lldb/Symbol/CompileUnit.h"
20 #include "lldb/Symbol/ObjectFile.h"
21 #include "lldb/Symbol/Symbol.h"
22 #include "lldb/Symbol/SymbolFile.h"
23 #include "lldb/Symbol/SymbolVendor.h"
36 symbol (NULL
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cgraph.h 32 /* Symbol table consists of functions and variables.
41 /* Base of all entries in the symbol table.
45 /* Type of the symbol. */
80 /* Linked list of symbol table entries starting with symtab_nodes. */
84 entries for single symbol name in the case of LTO resolutions,
206 struct symtab_node_base symbol; variable in typeref:struct:symtab_node_base
452 struct symtab_node_base symbol; variable in typeref:struct:symtab_node_base
480 /* Symbol table entry. */
481 union GTY((desc ("%h.symbol.type"), chain_next ("%h.symbol.next")
    [all...]
  /bionic/libc/bionic/
NetdClient.cpp 28 static void netdClientInitFunction(void* handle, const char* symbol, FunctionType* function) {
30 InitFunctionType initFunction = reinterpret_cast<InitFunctionType>(dlsym(handle, symbol));
  /cts/tools/dasm/src/java_cup/runtime/
virtual_parse_stack.java 15 * state is maintained on the virtual stack, not full symbol objects.
81 symbol stack_sym;
86 /* get a copy of the first symbol we have not transfered */
87 stack_sym = (symbol)real_stack.elementAt(real_stack.size()-1-real_next);
92 /* put the state number from the symbol onto the virtual stack */
  /external/chromium_org/media/base/simd/
media_export.asm 5 ; A set of helper macros for controlling symbol visibility.
16 ; A flag representing the specified symbol is a private symbol. This define adds
30 ; Designates a symbol as PRIVATE if EXPORT_SYMBOLS is not set.
  /external/lldb/source/Core/
AddressResolverName.cpp 16 #include "lldb/Symbol/ClangNamespaceDecl.h"
17 #include "lldb/Symbol/Function.h"
18 #include "lldb/Symbol/SymbolContext.h"
19 #include "lldb/Symbol/Symbol.h"
151 // Remove any duplicates between the funcion list and the symbol list
167 if (symbol_sc.symbol && symbol_sc.symbol->ValueIsAddress())
169 if (sc.function->GetAddressRange().GetBaseAddress() == symbol_sc.symbol->GetAddress())
213 if (sc.symbol && sc.symbol->ValueIsAddress()
    [all...]
  /external/oprofile/libpp/
sample_container.h 19 #include "symbol.h"
33 /// return iterator to the first samples for this symbol
35 /// return iterator to the last samples for this symbol
45 void insert(symbol_entry const * symbol, sample_entry const &);
54 sample_entry const * find_by_vma(symbol_entry const * symbol,
58 /// build the symbol by file-location cache
  /frameworks/compile/mclinker/include/mcld/LD/
BranchIsland.h 117 const LDSymbol* symbol() const { return m_pSymbol; } function in class:mcld::BranchIsland::Key
125 llvm::StringRef sym_name(KEY.symbol()->name());
141 if (KEY1.symbol() == KEY2.symbol()) {
145 if (KEY1.symbol()->hasFragRef() && KEY2.symbol()->hasFragRef()) {
146 const FragmentRef* ref1 = KEY1.symbol()->fragRef();
147 const FragmentRef* ref2 = KEY2.symbol()->fragRef();
  /frameworks/compile/mclinker/include/mcld/Script/
Assignment.h 56 const SymOperand& symbol() const { return m_Symbol; } function in class:mcld::Assignment
57 SymOperand& symbol() { return m_Symbol; } function in class:mcld::Assignment
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
pygram.py 25 Creates an attribute for each grammar symbol (nonterminal),
26 whose value is the symbol's type (an int >= 256).
28 for name, symbol in grammar.symbol2number.iteritems():
29 setattr(self, name, symbol)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
pygram.py 25 Creates an attribute for each grammar symbol (nonterminal),
26 whose value is the symbol's type (an int >= 256).
28 for name, symbol in grammar.symbol2number.iteritems():
29 setattr(self, name, symbol)
  /development/ndk/platforms/android-8/include/
dlfcn.h 40 const char *dli_sname; /* Name of nearest symbol with address
42 void *dli_saddr; /* Exact address of symbol named
49 extern void* dlsym(void* handle, const char* symbol);
  /external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
DependencyGraphOutput.h 16 virtual void visitSymbol(TGraphSymbol* symbol);
  /external/chromium_org/third_party/fips181/
randpass.cc 88 /* Get password symbol */
102 ** char * - symbol.
103 ** unsigned int - symbol type.
110 gen_rand_symbol (char *symbol, unsigned int mode)
119 str_pointer = symbol;
134 /* Get password symbol */
142 ** is_restricted_symbol - detcts if symbol is restricted rigt now
144 ** char - symbol.
152 is_restricted_symbol (char symbol)
156 if (symbol == smbl[j].ch
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
symbol_table.c 28 struct symbol { struct
30 * Link to the next symbol in the table with the same name
35 struct symbol *next_with_same_name;
39 * Link to the next symbol in the table with the same scope
44 struct symbol *next_with_same_scope;
54 * Name space of the symbol
61 /** Scope depth where this symbol was defined. */
74 /** Linkage in list of all headers in a given symbol table. */
77 /** Symbol name. */
81 struct symbol *symbols
    [all...]
  /external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/
money_base.pass.cpp 15 // enum part {none, space, symbol, sign, value};
27 assert(mb.symbol == 2);
  /external/lldb/examples/python/
disasm.py 83 # See if we have a symbol in the symbol table for where we stopped
84 symbol = frame.GetSymbol(); variable
85 if symbol:
86 # We do have a symbol, print some info for the symbol
87 print symbol
88 # Now get all instructions for this symbol and print them
89 insts = symbol.GetInstructions(target)
  /external/llvm/test/MC/MachO/ARM/
bad-darwin-ARM-reloc.s 9 @ CHECK-ERROR: unsupported relocation on symbol
  /external/mesa3d/src/mesa/program/
symbol_table.c 28 struct symbol { struct
30 * Link to the next symbol in the table with the same name
35 struct symbol *next_with_same_name;
39 * Link to the next symbol in the table with the same scope
44 struct symbol *next_with_same_scope;
54 * Name space of the symbol
61 /** Scope depth where this symbol was defined. */
74 /** Linkage in list of all headers in a given symbol table. */
77 /** Symbol name. */
81 struct symbol *symbols
    [all...]
  /external/openfst/src/include/fst/
symbol-table.h 20 // Classes to provide symbol-to-integer and integer-to-symbol mappings.
45 // WARNING: Reading via symbol table read options should
47 // reading symbol ranges of previously stored symbol sets.
90 // TODO(johans): Add flag to specify whether the symbol
92 int64 AddSymbol(const string& symbol, int64 key);
94 int64 AddSymbol(const string& symbol) {
95 int64 key = Find(symbol);
96 return (key == -1) ? AddSymbol(symbol, available_key_++) : key
    [all...]

Completed in 854 milliseconds

1 2 3 4 5 67 8 91011>>