HomeSort by relevance Sort by last modified time
    Searched refs:symtab (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /external/elfutils/0.153/src/
arlib.c 44 struct arlib_symtab symtab; variable in typeref:struct:arlib_symtab
53 obstack_init (&symtab.symsoffob);
54 obstack_init (&symtab.symsnameob);
55 obstack_init (&symtab.longnamesob);
86 obstack_grow (&symtab.symsoffob, &ar_hdr, sizeof (ar_hdr));
92 obstack_int_grow (&symtab.symsoffob, 0);
103 obstack_grow (&symtab.longnamesob, &ar_hdr, sizeof (ar_hdr));
106 symtab.symsofflen = 0;
107 symtab.symsoff = NULL;
108 symtab.symsnamelen = 0
    [all...]
arlib2.c 40 SYMTAB. Return the offset into the long file name table. */
44 size_t size = obstack_object_size (&symtab.longnamesob);
46 obstack_grow (&symtab.longnamesob, filename, filenamelen);
47 obstack_grow (&symtab.longnamesob, "/\n", 2);
  /external/chromium_org/native_client_sdk/src/libraries/xray/
symtable.c 110 int XRaySymbolTableGetCount(struct XRaySymbolTable* symtab) {
111 return XRayHashTableGetCount(symtab->hash_table);
115 struct XRaySymbol* XRaySymbolTableAtIndex(struct XRaySymbolTable* symtab,
117 return (struct XRaySymbol*)XRayHashTableAtIndex(symtab->hash_table, i);
120 struct XRaySymbol* XRaySymbolTableAdd(struct XRaySymbolTable* symtab,
124 XRayHashTableInsert(symtab->hash_table, symbol, addr);
125 symtab->num_symbols = XRayHashTableGetCount(symtab->hash_table);
129 struct XRaySymbol* XRaySymbolTableAddByName(struct XRaySymbolTable* symtab,
136 recorded_name = XRayStringPoolAppend(symtab->string_pool, demangled_name)
181 struct XRaySymbolTable* symtab; local
    [all...]
parsesymbols.c 17 struct XRaySymbol* XRaySymbolTableCreateEntry(struct XRaySymbolTable* symtab,
40 return XRaySymbolTableAddByName(symtab, parsed_symbol, addr);
44 void XRaySymbolTableParseMapfile(struct XRaySymbolTable* symtab,
77 XRaySymbolTableCreateEntry(symtab, line);
81 if (NULL != XRaySymbolTableCreateEntry(symtab, line))
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/
test_symrec.py 6 self.symtab = SymbolTable()
9 self.assertEquals(len(self.symtab.keys()), 0)
10 self.symtab.declare("foo", None, 0)
11 keys = self.symtab.keys()
16 self.assert_("foo" not in self.symtab)
17 self.symtab.declare("foo", None, 0)
18 self.assert_("foo" in self.symtab)
22 self.symtab.define_equ("foo", expr, 0)
23 self.assertRaises(YasmError, self.symtab.define_equ, "foo", expr, 0)
24 self.symtab.define_equ("bar", expr, 0) # cleare
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
symbol_table.h 33 extern int _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *symtab,
37 struct _mesa_symbol_table *symtab, int name_space, const char *name,
44 struct _mesa_symbol_table *symtab, int name_space, const char *name);
  /external/mesa3d/src/mesa/program/
symbol_table.h 33 extern int _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *symtab,
37 struct _mesa_symbol_table *symtab, int name_space, const char *name,
44 struct _mesa_symbol_table *symtab, int name_space, const char *name);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
symrec.h 65 * \param symtab symbol table
70 void yasm_symtab_destroy(/*@only@*/ yasm_symtab *symtab);
74 * \param symtab symbol table
78 void yasm_symtab_set_case_sensitive(yasm_symtab *symtab, int sensitive);
84 * \param symtab symbol table
88 /*@dependent@*/ yasm_symrec *yasm_symtab_abs_sym(yasm_symtab *symtab);
92 * \param symtab symbol table
99 (yasm_symtab *symtab, const char *name, unsigned long line);
104 * \param symtab symbol table
111 (yasm_symtab *symtab, const char *name)
    [all...]
symrec.c 136 yasm_symtab *symtab = yasm_xmalloc(sizeof(yasm_symtab)); local
137 symtab->sym_table = HAMT_create(0, yasm_internal_error_);
138 SLIST_INIT(&symtab->non_table_syms);
139 symtab->case_sensitive = 1;
140 return symtab;
144 yasm_symtab_set_case_sensitive(yasm_symtab *symtab, int sensitive)
146 symtab->case_sensitive = sensitive;
184 symtab_get_or_new_in_table(yasm_symtab *symtab, /*@only@*/ char *name)
186 yasm_symrec *rec = symrec_new_common(name, symtab->case_sensitive);
191 if (!symtab->case_sensitive)
    [all...]
  /frameworks/rs/cpu_ref/linkloader/android/
librsloader.cpp 149 ELFSectionSymTab<64> *symtab = local
150 static_cast<ELFSectionSymTab<64> *>(object->getSectionByName(".symtab"));
154 ELFSectionSymTab<32> *symtab =
155 static_cast<ELFSectionSymTab<32> *>(object->getSectionByName(".symtab"));
158 if (!symtab) {
163 ELFSymbol<64> *symbol = symtab->getByName(name);
165 ELFSymbol<32> *symbol = symtab->getByName(name);
182 ELFSectionSymTab<64> *symtab = local
183 static_cast<ELFSectionSymTab<64> *>(object->getSectionByName(".symtab"));
187 ELFSectionSymTab<32> *symtab
210 ELFSectionSymTab<64> *symtab = static_cast<ELFSectionSymTab<64> *>( local
227 ELFSectionSymTab<64> *symtab = static_cast<ELFSectionSymTab<64> *>( local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
builtin_variables.cpp 387 add_variable(exec_list *instructions, glsl_symbol_table *symtab,
391 ir_variable *var = new(symtab) ir_variable(type, name, mode);
418 symtab->add_variable(var);
423 add_uniform(exec_list *instructions, glsl_symbol_table *symtab,
427 add_variable(instructions, symtab, name, type, ir_var_uniform, -1);
471 add_builtin_variable(exec_list *instructions, glsl_symbol_table *symtab,
477 const glsl_type *const type = symtab->get_type(proto->type);
482 add_uniform(instructions, symtab, proto->name, type);
484 add_variable(instructions, symtab, proto->name, type, proto->mode,
490 add_builtin_constant(exec_list *instructions, glsl_symbol_table *symtab,
509 glsl_symbol_table *const symtab = state->symbols; local
535 glsl_symbol_table *const symtab = state->symbols; local
716 glsl_symbol_table *const symtab = state->symbols; local
    [all...]
glsl_types.cpp 103 add_types_to_symbol_table(glsl_symbol_table *symtab,
110 symtab->add_type(types[i].name, & types[i]);
159 glsl_type::generate_100ES_types(glsl_symbol_table *symtab)
161 add_types_to_symbol_table(symtab, builtin_core_types,
164 add_types_to_symbol_table(symtab, builtin_structure_types,
167 add_types_to_symbol_table(symtab, void_type, 1, false);
171 glsl_type::generate_110_types(glsl_symbol_table *symtab, bool add_deprecated)
173 generate_100ES_types(symtab);
175 add_types_to_symbol_table(symtab, builtin_110_types,
178 add_types_to_symbol_table(symtab, &_sampler3D_type, 1, false)
    [all...]
  /external/mesa3d/src/glsl/
builtin_variables.cpp 387 add_variable(exec_list *instructions, glsl_symbol_table *symtab,
391 ir_variable *var = new(symtab) ir_variable(type, name, mode);
418 symtab->add_variable(var);
423 add_uniform(exec_list *instructions, glsl_symbol_table *symtab,
427 add_variable(instructions, symtab, name, type, ir_var_uniform, -1);
471 add_builtin_variable(exec_list *instructions, glsl_symbol_table *symtab,
477 const glsl_type *const type = symtab->get_type(proto->type);
482 add_uniform(instructions, symtab, proto->name, type);
484 add_variable(instructions, symtab, proto->name, type, proto->mode,
490 add_builtin_constant(exec_list *instructions, glsl_symbol_table *symtab,
509 glsl_symbol_table *const symtab = state->symbols; local
535 glsl_symbol_table *const symtab = state->symbols; local
716 glsl_symbol_table *const symtab = state->symbols; local
    [all...]
glsl_types.cpp 103 add_types_to_symbol_table(glsl_symbol_table *symtab,
110 symtab->add_type(types[i].name, & types[i]);
159 glsl_type::generate_100ES_types(glsl_symbol_table *symtab)
161 add_types_to_symbol_table(symtab, builtin_core_types,
164 add_types_to_symbol_table(symtab, builtin_structure_types,
167 add_types_to_symbol_table(symtab, void_type, 1, false);
171 glsl_type::generate_110_types(glsl_symbol_table *symtab, bool add_deprecated)
173 generate_100ES_types(symtab);
175 add_types_to_symbol_table(symtab, builtin_110_types,
178 add_types_to_symbol_table(symtab, &_sampler3D_type, 1, false)
    [all...]
  /external/libsepol/tests/
helpers.h 57 extern avrule_decl_t *test_find_decl_by_sym(policydb_t * p, int symtab, char *sym);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
symrec.pxi 127 def __cinit__(self, symtab):
128 if not isinstance(symtab, SymbolTable):
130 self.iter = yasm_symtab_first((<SymbolTable>symtab).symtab)
145 def __cinit__(self, symtab):
146 if not isinstance(symtab, SymbolTable):
148 self.iter = yasm_symtab_first((<SymbolTable>symtab).symtab)
163 def __cinit__(self, symtab):
164 if not isinstance(symtab, SymbolTable)
    [all...]
  /external/lldb/source/Plugins/SymbolFile/Symtab/
SymbolFileSymtab.cpp 22 #include "lldb/Symbol/Symtab.h"
46 static ConstString g_name("symtab");
96 const Symtab *symtab = m_obj_file->GetSymtab(); local
97 if (symtab)
104 if (symtab->AppendSymbolIndexesWithType(eSymbolTypeSourceFile, m_source_indexes))
109 if (symtab->AppendSymbolIndexesWithType(eSymbolTypeCode, Symtab::eDebugYes, Symtab::eVisibilityAny, m_func_indexes))
111 symtab->SortSymbolIndexesByValue(m_func_indexes, true)
182 const Symtab *symtab = m_obj_file->GetSymtab(); local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
storage.c 301 if (di->symtab != NULL) {
303 new_tab[i] = di->symtab[i];
304 ML_(dinfo_free)(di->symtab);
306 di->symtab = new_tab;
310 di->symtab[di->symtab_used++] = *sym;
    [all...]
  /bionic/libc/bionic/
vdso.cpp 102 ElfW(Sym)* symtab = NULL;
107 symtab = reinterpret_cast<ElfW(Sym)*>(vdso_addr + d->d_un.d_ptr);
110 if (strtab == NULL || symtab == NULL) {
117 if (strcmp(vdso_entries[j].name, strtab + symtab[i].st_name) == 0) {
118 vdso_entries[j].fn = reinterpret_cast<void*>(vdso_addr + symtab[i].st_value);
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/include/gdb/
jit-reader.h 106 another block, the parent block can be passed in PARENT. SYMTAB is
115 struct gdb_symtab *symtab,
121 /* Adds a PC to line number mapping for the symbol table SYMTAB.
126 struct gdb_symtab *symtab,
130 /* Close the symtab SYMTAB. This signals to GDB that no more blocks
131 will be opened on this symtab. */
134 struct gdb_symtab *symtab);
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/include/gdb/
jit-reader.h 106 another block, the parent block can be passed in PARENT. SYMTAB is
115 struct gdb_symtab *symtab,
121 /* Adds a PC to line number mapping for the symbol table SYMTAB.
126 struct gdb_symtab *symtab,
130 /* Close the symtab SYMTAB. This signals to GDB that no more blocks
131 will be opened on this symtab. */
134 struct gdb_symtab *symtab);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/include/gdb/
jit-reader.h 106 another block, the parent block can be passed in PARENT. SYMTAB is
115 struct gdb_symtab *symtab,
121 /* Adds a PC to line number mapping for the symbol table SYMTAB.
126 struct gdb_symtab *symtab,
130 /* Close the symtab SYMTAB. This signals to GDB that no more blocks
131 will be opened on this symtab. */
134 struct gdb_symtab *symtab);
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.8/include/gdb/
jit-reader.h 106 another block, the parent block can be passed in PARENT. SYMTAB is
115 struct gdb_symtab *symtab,
121 /* Adds a PC to line number mapping for the symbol table SYMTAB.
126 struct gdb_symtab *symtab,
130 /* Close the symtab SYMTAB. This signals to GDB that no more blocks
131 will be opened on this symtab. */
134 struct gdb_symtab *symtab);
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/include/gdb/
jit-reader.h 106 another block, the parent block can be passed in PARENT. SYMTAB is
115 struct gdb_symtab *symtab,
121 /* Adds a PC to line number mapping for the symbol table SYMTAB.
126 struct gdb_symtab *symtab,
130 /* Close the symtab SYMTAB. This signals to GDB that no more blocks
131 will be opened on this symtab. */
134 struct gdb_symtab *symtab);
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.8/include/gdb/
jit-reader.h 106 another block, the parent block can be passed in PARENT. SYMTAB is
115 struct gdb_symtab *symtab,
121 /* Adds a PC to line number mapping for the symbol table SYMTAB.
126 struct gdb_symtab *symtab,
130 /* Close the symtab SYMTAB. This signals to GDB that no more blocks
131 will be opened on this symtab. */
134 struct gdb_symtab *symtab);

Completed in 636 milliseconds

1 2 3 4 5 6