Searched defs:sym (Results 1 - 25 of 248) sorted by relevance

12345678910

/external/iproute2/genl/
H A Dstatic-syms.c2 void *_dlsym(const char *sym) argument
/external/iproute2/ip/
H A Dstatic-syms.c2 void *_dlsym(const char *sym) argument
/external/iproute2/tc/
H A Dstatic-syms.c2 void *_dlsym(const char *sym) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dmem64rip.asm4 mov eax, [rip+sym]
5 mov eax, [sym wrt rip]
6 sym: label
7 mov eax, [sym wrt rip]
8 call sym
/external/elfutils/libdwfl/
H A Ddwfl_module_addrname.c55 GElf_Sym sym; local
56 return INTUSE(dwfl_module_addrsym) (mod, addr, &sym, NULL);
H A Ddwfl_module_getsym.c54 GElf_Sym *sym, GElf_Word *shndxp)
67 sym = gelf_getsymshndx (mod->symdata, mod->symxndxdata, ndx, sym, &shndx);
68 if (unlikely (sym == NULL))
74 if (sym->st_shndx != SHN_XINDEX)
75 shndx = sym->st_shndx;
95 shndx, &sym->st_value);
103 sym->st_value += mod->symfile->bias;
107 if (unlikely (sym->st_name >= mod->symstrdata->d_size))
112 return (const char *) mod->symstrdata->d_buf + sym
53 dwfl_module_getsym(Dwfl_Module *mod, int ndx, GElf_Sym *sym, GElf_Word *shndxp) argument
[all...]
/external/elfutils/libelf/
H A Dgelf_update_sym.c93 Elf32_Sym *sym; local
111 sym = &((Elf32_Sym *) data_scn->d.d_buf)[ndx];
114 sym->name = src->name
H A Dgelf_update_symshndx.c119 Elf32_Sym *sym; local
137 sym = &((Elf32_Sym *) symdata_scn->d.d_buf)[ndx];
140 sym->name = src->name
/external/elfutils/tests/
H A Dasm-tst6.c71 AsmSym_t *sym; local
94 sym = asm_newsym (scn, buf, sizeof (uint32_t), STT_OBJECT,
96 if (sym == NULL)
113 if (asm_scngrp_newsignature (grp, sym) != 0)
H A Dasm-tst7.c135 GElf_Sym *sym; local
144 sym = gelf_getsym (elf_getdata (scn, NULL), cnt, &sym_mem);
145 if (sym == NULL)
152 if (sym->st_shndx != SHN_COMMON)
155 (unsigned int) sym->st_shndx);
159 if (sym->st_value != 16)
162 (uintmax_t) sym->st_value);
166 if (sym->st_size != 4)
169 (uintmax_t) sym->st_value);
H A Dasm-tst8.c136 GElf_Sym *sym; local
145 sym = gelf_getsym (elf_getdata (scn, NULL), cnt, &sym_mem);
146 if (sym == NULL)
153 if (sym->st_shndx != SHN_ABS)
156 (unsigned int) sym->st_shndx);
160 if (sym->st_value != 0xfeedbeef)
163 (uintmax_t) sym->st_value);
167 if (sym->st_size != 4)
170 (uintmax_t) sym->st_value);
174 if (GELF_ST_TYPE (sym
[all...]
/external/iproute2/include/
H A Ddlfcn.h21 extern void *_dlsym(const char *sym);
22 static inline void *dlsym(void *handle, const char *sym) argument
26 return _dlsym(sym);
/external/javassist/src/main/javassist/compiler/ast/
H A DSymbol.java26 public Symbol(String sym) { argument
27 identifier = sym;
H A DVariable.java26 public Variable(String sym, Declarator d) { argument
27 super(sym);
/external/openfst/src/include/fst/
H A Dsymbol-table-ops.h46 typename Arc::Label sym = (input) ? aiter.Value().ilabel : local
48 seen.insert(sym);
/external/qemu/android/skin/
H A Dkeyset.h94 /* convert a (sym,mod) pair into a descriptive string. e.g. "Ctrl-K" or "Alt-A", etc..
97 extern const char* skin_key_symmod_to_str ( int sym, int mod );
99 /* convert a key binding description into a (sym,mod) pair. returns 0 on success, -1
118 int sym; // really a SDL key symbol member in struct:__anon25087
129 extern SkinKeyCommand skin_keyset_get_command( SkinKeyset* kset, int sym, int mod );
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_keyboard.h61 SDLKey sym; /**< SDL virtual keysym */ member in struct:SDL_keysym
/external/qemu/distrib/sdl-1.2.15/src/loadso/beos/
H A DSDL_sysloadso.c50 void *sym = NULL; local
52 status_t rc = get_image_symbol(library_id, name, B_SYMBOL_TYPE_TEXT, &sym);
56 return (sym);
/external/chromium_org/third_party/icu/source/common/
H A Druleiter.h51 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/mesa/src/src/gallium/state_trackers/clover/core/
H A Dmodule.cpp150 module::sym(compat::string name) const { function in class:clover::module
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_cgl.c49 sym(void *h, const char *name) function
88 apple_cgl.get_version = sym(h, "CGLGetVersion");
99 apple_cgl.choose_pixel_format = sym(h, "CGLChoosePixelFormat");
100 apple_cgl.destroy_pixel_format = sym(h, "CGLDestroyPixelFormat");
102 apple_cgl.clear_drawable = sym(h, "CGLClearDrawable");
103 apple_cgl.flush_drawable = sym(h, "CGLFlushDrawable");
105 apple_cgl.create_context = sym(h, "CGLCreateContext");
106 apple_cgl.destroy_context = sym(h, "CGLDestroyContext");
108 apple_cgl.set_current_context = sym(h, "CGLSetCurrentContext");
109 apple_cgl.get_current_context = sym(
[all...]
/external/icu4c/common/
H A Druleiter.h51 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/libsepol/tests/
H A Dhelpers.c66 avrule_decl_t *test_find_decl_by_sym(policydb_t * p, int symtab, char *sym) argument
68 scope_datum_t *scope = (scope_datum_t *) hashtab_search(p->scope[symtab].table, sym);
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dmodule.cpp150 module::sym(compat::string name) const { function in class:clover::module
/external/mesa3d/src/glx/apple/
H A Dapple_cgl.c49 sym(void *h, const char *name) function
88 apple_cgl.get_version = sym(h, "CGLGetVersion");
99 apple_cgl.choose_pixel_format = sym(h, "CGLChoosePixelFormat");
100 apple_cgl.destroy_pixel_format = sym(h, "CGLDestroyPixelFormat");
102 apple_cgl.clear_drawable = sym(h, "CGLClearDrawable");
103 apple_cgl.flush_drawable = sym(h, "CGLFlushDrawable");
105 apple_cgl.create_context = sym(h, "CGLCreateContext");
106 apple_cgl.destroy_context = sym(h, "CGLDestroyContext");
108 apple_cgl.set_current_context = sym(h, "CGLSetCurrentContext");
109 apple_cgl.get_current_context = sym(
[all...]

Completed in 536 milliseconds

12345678910