HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 401 - 425 of 832) sorted by null

<<11121314151617181920>>

  /external/valgrind/main/coregrind/
m_redir.c 74 (shared object symbol table, basically) appears. Appearance of new
86 pattern, function name pattern) pair which is encoded in the symbol
118 from reading symbol tables of the currently loaded objects.
120 Active is a pure function of Specs and the current symbol table
224 If ld.so does not have a visible 'strlen' symbol, Memcheck
285 TopSpec* parent_sym; /* the TopSpec which supplied the symbol */
314 HChar* symbol, Addr addr );
333 /* Copy all the names from a given symbol into an AR_DINFO allocated,
495 /* scan this DebugInfo's symbol table, pulling out and demangling
505 /* Set up to conveniently iterate over all names for this symbol. *
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/chromevox/background/mathmaps/
math_map.js 36 * The compund store for symbol and function mappings.
105 * Array of JSON filenames containing symbol definitions for math speak.
134 * Array of JSON filenames containing symbol definitions for math speak.
  /external/linux-tools-perf/
builtin-test.c 13 #include "util/symbol.h"
18 static int vmlinux_matches_kallsyms_filter(struct map *map __used, struct symbol *sym)
29 struct symbol *sym;
70 * find the reference relocation * symbol, i.e. the symbol we will use
103 * While doing that look if we find the ref reloc symbol, if we find it
123 struct symbol *pair, *first_pair;
126 sym = rb_entry(nd, struct symbol, rb_node);
138 * kallsyms don't have the symbol end, so we
139 * set that by using the next symbol start - 1
    [all...]
  /system/core/debuggerd/
tombstone.c 259 const symbol_t* symbol; local
260 find_symbol_ptrace(context, stack_content, &mi, &symbol);
262 if (symbol) {
263 char* demangled_name = demangle_symbol_name(symbol->name);
264 const char* symbol_name = demangled_name ? demangled_name : symbol->name;
265 uint32_t offset = stack_content - (mi->start + symbol->start);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8PerContextData.cpp 66 v8::Handle<v8::String> symbol = v8::String::NewFromUtf8(m_isolate, #Name, v8::String::kInternalizedString); \
67 if (symbol.IsEmpty()) \
69 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(v8::Local<v8::Context>::New(m_isolate, m_context)->Global()->Get(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);
i386_ld.c 65 only means adjusting offset and symbol indices. */
86 struct symbol **symref;
99 /* Get the data for the input section symbol table for this
110 /* Array directing local symbol table offsets to output symbol
114 /* References to the symbol records. */
131 /* Compute the symbol index in the output file. */
135 /* This happens if the symbol is locally undefined or
140 /* Take reordering performed to sort the symbol table into
144 /* Get the symbol table entry. *
458 struct symbol *symbol = ndxtosym[idx]; local
    [all...]
ld.c 159 N_("Causes symbol not assigned to a version be reduced to local."), 0 },
278 static void create_special_section_symbol (struct symbol **symp,
453 GOT section. Add the symbol if necessary. */
457 /* Similarly for the _DYNAMIC symbol which points to the dynamic
    [all...]
  /external/kernel-headers/original/linux/
module.h 166 /* Get/put a kernel symbol (calls must be symmetric) */
167 void *__symbol_get(const char *symbol);
168 void *__symbol_get_gpl(const char *symbol);
185 /* For every exported symbol, place a struct in the __ksymtab section */
333 /* We keep the symbol and string tables for kallsyms. */
379 void __symbol_put(const char *symbol);
503 /* Get/put a kernel symbol (calls should be symmetric) */
582 #define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)
  /cts/tools/dasm/src/java_cup/
non_terminal.java 6 /** This class represents a non-terminal symbol in the grammar. Each
15 public class non_terminal extends symbol {
91 /** special non-terminal for start symbol */
250 /** Indicate that this symbol is a non-terminal. */
  /external/chromium_org/third_party/angle/src/compiler/
glslang_tab.h 55 /* Put the tokens into the symbol table, so that GDB and other debuggers
166 TSymbol* symbol; member in struct:YYSTYPE::__anon11071
intermediate.h 353 // if symbol is initialized as symbol(sym), the memory comes from the poolallocator of sym. If sym comes from
355 // it is essential to use "symbol = sym" to assign to symbol
357 TIntermTyped(t), id(i) { symbol = sym; originalSymbol = sym; }
362 const TString& getSymbol() const { return symbol; }
365 void setSymbol(const TString& sym) { symbol = sym; }
375 TString symbol; member in class:TIntermSymbol
  /external/chromium_org/third_party/mesa/src/src/glsl/
s_expression.h 37 #define SX_AS_SYMBOL(x) SX_AS_(symbol, x)
48 * - symbol
158 s_pattern(s_symbol *&s) : p_symbol(&s), type(SYMBOL) { }
174 enum { EXPR, LIST, SYMBOL, NUMBER, INT, STRING } type;
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
upload.py 12 from lib.symbol import SymbolDataSources
  /external/chromium_org/v8/test/mjsunit/
keyed-call-generic.js 56 // Use a non-symbol key to force inline cache to generic case.
90 // Use a non-symbol key to force inline cache to generic case.
  /external/eigen/Eigen/src/Core/util/
Constants.h 362 #error The preprocessor symbol 'Success' is defined, possibly by the X11 header file X.h
  /external/llvm/bindings/python/llvm/
object.py 19 Section, Symbol, and Relocation, respectively.
40 To aid working around this limitation, each Section, Symbol, and Relocation
60 for symbol in symbols:
61 print symbol.name # This raises because the object has expired.
65 for symbol in obj.get_symbols():
66 symbols.append(symbol)
67 print symbol.name
69 for symbol in symbols:
70 print symbol.name # OK
71 print symbol.address # NOT OK. We didn't look up this property before
392 def symbol(self): member in class:Relocation
    [all...]
  /external/llvm/include/llvm/Object/
COFFYAML.h 53 struct Symbol {
54 COFF::symbol Header;
59 Symbol();
65 std::vector<Symbol> Symbols;
72 LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Symbol)
124 struct MappingTraits<COFFYAML::Symbol> {
125 static void mapping(IO &IO, COFFYAML::Symbol &S);
  /external/llvm/include/llvm-c/
lto.h 177 * Returns the name of the ith symbol in the object module.
184 * Returns the attributes of the ith symbol in the object module.
259 lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol);
  /external/llvm/tools/lto/
LTOModule.h 47 const llvm::GlobalValue *symbol; member in struct:LTOModule::NameAndAttributes
106 /// getSymbolAttributes - Get the attributes for a symbol at the specified
114 /// getSymbolName - Get the name of the symbol at the specified index.
138 /// addPotentialUndefinedSymbol - Add a symbol which isn't defined just yet
142 /// addDefinedSymbol - Add a defined symbol to the list.
145 /// addDefinedFunctionSymbol - Add a function symbol as defined to the list.
148 /// addDefinedDataSymbol - Add a data symbol as defined to the list.
155 /// addAsmGlobalSymbol - Add a global symbol from module-level ASM to the
159 /// addAsmGlobalSymbolUndef - Add a global symbol from module-level ASM to
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 78 public void Encode(RangeCoder.Encoder rangeEncoder, byte symbol)
83 uint bit = (uint)((symbol >> i) & 1);
89 public void EncodeMatched(RangeCoder.Encoder rangeEncoder, byte matchByte, byte symbol)
95 uint bit = (uint)((symbol >> i) & 1);
108 public uint GetPrice(bool matchMode, byte matchByte, byte symbol)
118 uint bit = (uint)(symbol >> i) & 1;
130 uint bit = (uint)(symbol >> i) & 1;
196 public void Encode(RangeCoder.Encoder rangeEncoder, UInt32 symbol, UInt32 posState)
198 if (symbol < Base.kNumLowLenSymbols)
201 _lowCoder[posState].Encode(rangeEncoder, symbol);
    [all...]
  /external/mesa3d/src/glsl/
s_expression.h 37 #define SX_AS_SYMBOL(x) SX_AS_(symbol, x)
48 * - symbol
158 s_pattern(s_symbol *&s) : p_symbol(&s), type(SYMBOL) { }
174 enum { EXPR, LIST, SYMBOL, NUMBER, INT, STRING } type;
  /external/openfst/src/lib/
symbol-table-ops.cc 17 #include <fst/symbol-table-ops.h>
24 // copied version of SymbolTable of left or right if either symbol table is
28 // copy everything from the left symbol table
32 merged->AddSymbol(liter.Symbol(), liter.Value());
34 int64 key = right.Find(liter.Symbol());
49 // add all symbols we can from right symbol table
53 int64 key = merged->Find(riter.Symbol());
55 // Symbol already exists, maybe with different value
61 // Symbol doesn't exist from left
65 conflicts.push_back(riter.Symbol());
    [all...]
  /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/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);

Completed in 1421 milliseconds

<<11121314151617181920>>