HomeSort by relevance Sort by last modified time
    Searched refs:sym (Results 276 - 300 of 1167) sorted by null

<<11121314151617181920>>

  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
vmlinux-kallsyms.c 12 struct symbol *sym)
14 bool *visited = symbol__priv(sym);
25 struct symbol *sym; local
73 sym = map__find_symbol_by_name(kallsyms_map, ref_reloc_sym.name, NULL);
74 if (sym == NULL) {
79 ref_reloc_sym.addr = UM(sym->start);
124 sym = rb_entry(nd, struct symbol, rb_node);
126 if (sym->start == sym->end)
129 mem_start = vmlinux_map->unmap_ip(vmlinux_map, sym->start)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testwm.c 204 static void PrintKey(const SDL_keysym *sym, int pressed)
207 if ( sym->sym ) {
209 sym->sym, SDL_GetKeyName(sym->sym));
211 printf("Unknown Key (scancode = %d) %s ", sym->scancode,
216 if ( sym->unicode ) {
218 if ( sym->unicode < ' ' )
    [all...]
  /external/elfutils/0.153/libelf/
nlist.c 67 GElf_Sym sym; member in struct:hashentry
164 GElf_Sym *sym; local
167 sym = INTUSE(gelf_getsym) (data, cnt, &mem.sym);
168 if (sym == NULL)
172 mem.str = INTUSE(elf_strptr) (elf, shdr->sh_link, sym->st_name);
206 nl->n_value = found->sym.st_value;
207 nl->n_scnum = found->sym.st_shndx;
208 nl->n_type = GELF_ST_TYPE (found->sym.st_info);
  /external/bison/src/
reader.c 60 grammar_start_symbol_set (symbol *sym, location loc)
67 startsymbol = sym;
179 /* Append SYM to the grammar. */
181 grammar_symbol_append (symbol *sym, location loc)
183 symbol_list *p = symbol_list_sym_new (sym, loc);
192 /* A null SYM stands for an end of rule; it is not an actual
194 if (sym)
203 symbol *sym = p->content.sym;
205 if (name->id == sym->tag
200 symbol *sym = p->content.sym; local
739 symbol_list *sym; local
    [all...]
reader.h 45 void grammar_start_symbol_set (symbol *sym, location loc);
53 void grammar_current_rule_symbol_append (symbol *sym, location loc,
lalr.h 100 goto_number map_goto (state_number s0, symbol_number sym);
  /frameworks/compile/mclinker/lib/LD/
GarbageCollection.cpp 163 ResolveInfo* sym = reloc->symInfo(); local
166 if (NULL == sym)
168 if (!sym->isDefine() || !sym->outSymbol()->hasFragRef())
174 &sym->outSymbol()->fragRef()->frag()->getParent()->getSection();
236 LDSymbol* sym = info->outSymbol(); local
237 if (NULL == sym || !sym->hasFragRef())
243 &sym->fragRef()->frag()->getParent()->getSection();
262 LDSymbol* sym = info->outSymbol() local
281 LDSymbol* sym = m_Module.getNamePool().findSymbol(*usym); local
    [all...]
  /external/elfutils/0.153/backends/
ppc_symbol.c 117 ppc_check_special_symbol (Elf *elf, GElf_Ehdr *ehdr, const GElf_Sym *sym,
128 return sym->st_value == gotaddr;
140 && sym->st_value == destshdr->sh_addr + 0x8000
141 && sym->st_size == 0);
145 && sym->st_value == destshdr->sh_addr + 0x8000
146 && sym->st_size == 0);
  /external/javassist/src/main/javassist/compiler/ast/
Declarator.java 49 int var, Symbol sym) {
55 setLeft(sym);
59 public Declarator make(Symbol sym, int dim, ASTree init) {
62 d.setLeft(sym);
82 public void setVariable(Symbol sym) { setLeft(sym); }
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
symbol-elf.c 36 * @sym: GElf_Sym iterator
38 #define elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) \
39 for (idx = 0, gelf_getsym(syms, idx, &sym);\
41 idx++, gelf_getsym(syms, idx, &sym))
43 static inline uint8_t elf_sym__type(const GElf_Sym *sym)
45 return GELF_ST_TYPE(sym->st_info);
48 static inline int elf_sym__is_function(const GElf_Sym *sym)
50 return elf_sym__type(sym) == STT_FUNC &&
51 sym->st_name != 0 &&
52 sym->st_shndx != SHN_UNDEF
186 GElf_Sym sym; local
690 GElf_Sym sym; local
    [all...]
symbol.h 84 void symbol__delete(struct symbol *sym);
87 static inline size_t symbol__size(const struct symbol *sym)
89 return sym->end - sym->start + 1;
138 static inline void *symbol__priv(struct symbol *sym)
140 return ((void *)sym) - symbol_conf.priv_size;
151 struct symbol *sym; member in struct:map_symbol
158 struct symbol *sym; member in struct:addr_map_symbol
178 struct symbol *sym; member in struct:addr_location
242 size_t symbol__fprintf_symname_offs(const struct symbol *sym,
    [all...]
annotate.c 423 int symbol__annotate_init(struct map *map __maybe_unused, struct symbol *sym)
425 struct annotation *notes = symbol__annotation(sym);
430 int symbol__alloc_hist(struct symbol *sym)
432 struct annotation *notes = symbol__annotation(sym);
433 const size_t size = symbol__size(sym);
456 void symbol__annotate_zero_histograms(struct symbol *sym)
458 struct annotation *notes = symbol__annotation(sym);
467 int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
474 notes = symbol__annotation(sym);
480 if (addr < sym->start || addr > sym->end
    [all...]
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFObject.hxx 141 ELFSymbolTy *sym = (*symtab)[rel->getSymTabIndex()]; local
148 Inst_t S = (Inst_t)(int64_t)sym->getAddress(EM_ARM);
151 if (sym->isConcreteFunc() && (sym->getValue() & 0x1)) {
162 if (S == 0 && sym->getType() == STT_NOTYPE) {
163 void *ext_sym = find_sym(context, sym->getName());
168 sym->setAddress(ext_sym);
202 void *callee_addr = sym->getAddress(EM_ARM);
204 switch (sym->getType()) {
216 "sym->getAddress(EM_ARM) function call.")
375 ELFSymbolTy *sym = (*symtab)[rel->getSymTabIndex()]; local
672 ELFSymbolTy *sym = (*symtab)[rel->getSymTabIndex()]; local
801 ELFSymbolTy *sym = (*symtab)[rel->getSymTabIndex()]; local
851 ELFSymbolTy *sym = (*symtab)[rel->getSymTabIndex()]; local
1039 ELFSymbolTy *sym = (*symtab)[i]; local
    [all...]
  /bionic/linker/
dlfcn.cpp 102 ElfW(Sym)* sym = NULL;
104 sym = dlsym_linear_lookup(symbol, &found, NULL);
109 sym = NULL;
111 sym = dlsym_linear_lookup(symbol, &found, si->next);
114 sym = dlsym_handle_lookup(reinterpret_cast<soinfo*>(handle), &found, symbol);
117 if (sym != NULL) {
118 unsigned bind = ELF_ST_BIND(sym->st_info);
120 if ((bind == STB_GLOBAL || bind == STB_WEAK) && sym->st_shndx != 0) {
121 return reinterpret_cast<void*>(sym->st_value + found->load_bias)
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
annotate.c 22 static int perf_gtk__get_percent(char *buf, size_t size, struct symbol *sym,
35 symhist = annotation__histogram(symbol__annotation(sym), evidx);
51 static int perf_gtk__get_offset(char *buf, size_t size, struct symbol *sym,
54 u64 start = map__rip_2objdump(map, sym->start);
88 static int perf_gtk__annotate_symbol(GtkWidget *window, struct symbol *sym,
101 notes = symbol__annotation(sym);
130 sym, pos,
135 ret = perf_gtk__get_percent(s, sizeof(s), sym, pos,
141 if (perf_gtk__get_offset(s, sizeof(s), sym, map, pos))
157 int symbol__gtk_annotate(struct symbol *sym, struct map *map
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ruleiter.h 51 const SymbolTable* sym; member in class:RuleCharacterIterator
95 * @param sym the symbol table, or null if there is none. If sym is null,
102 RuleCharacterIterator(const UnicodeString& text, const SymbolTable* sym,
  /external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/lightsymbols/
lightsymbols.h 17 const char* sym; member in class:LightSymbol
31 LightSymbol(const char* sym, int fileId, int lineNumber);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.cc 52 Symbolizer::SymbolizerScope::SymbolizerScope(const Symbolizer *sym)
53 : sym_(sym) {
  /external/icu/icu4c/source/common/
ruleiter.h 51 const SymbolTable* sym; member in class:RuleCharacterIterator
94 * @param sym the symbol table, or null if there is none. If sym is null,
101 RuleCharacterIterator(const UnicodeString& text, const SymbolTable* sym,
  /external/ltrace/sysdeps/linux-gnu/ia64/
plt.c 71 sym2addr(struct process *proc, struct library_symbol *sym)
73 return sym->enter_addr;
  /external/skia/experimental/LightSymbolsUtil/lightsymbols/
lightsymbols.h 17 const char* sym; member in class:LightSymbol
31 LightSymbol(const char* sym, int fileId, int lineNumber);
  /external/qemu/android/skin/
keyset.c 222 skin_key_symmod_to_str( int sym, int mod )
248 if (keysym_names[nn]._sym == sym) {
254 if (sym >= 32 && sym <= 127) {
255 p = bufprint(p, end, "%c", sym);
318 D("%s: can't find sym value for '%s' (mod=%d, str=%s)", __FUNCTION__, s0, mod, str);
324 int sym; member in struct:__anon32900
338 skin_keyset_add( SkinKeyset* kset, int sym, int mod, SkinKeyCommand command )
345 D( "adding binding %s to %s", skin_key_command_to_str(command), skin_key_symmod_to_str(sym,mod));
352 first->sym = sym
394 int sym, mod; local
    [all...]
  /external/valgrind/main/coregrind/
pub_core_demangle.h 52 Demangle 'sym' into its soname and fnname parts, putting them in
61 Bool VG_(maybe_Z_demangle) ( const HChar* sym,
  /packages/apps/Browser/src/com/android/browser/view/
PieItem.java 51 public PieItem(View view, int level, PieView sym) {
54 mPieView = sym;
148 public void setPieView(PieView sym) {
149 mPieView = sym;
  /bionic/tests/
atexit_test.cpp 33 void* sym = dlsym(handle, "register_atexit"); local
34 ASSERT_TRUE(sym != NULL);
35 reinterpret_cast<void (*)(std::string*, bool*)>(sym)(&atexit_call_sequence, &valid_this_in_static_dtor);

Completed in 1211 milliseconds

<<11121314151617181920>>