Searched refs:sym (Results 1 - 25 of 616) sorted by relevance

1234567891011>>

/external/llvm/test/MC/AArch64/
H A Dadrp-relocation.s8 adrp x0, sym
9 adrp x0, :got:sym
10 adrp x0, :gottprel:sym
11 adrp x0, :tlsdesc:sym
13 .global sym
14 sym: label
15 // CHECK: R_AARCH64_ADR_PREL_PG_HI21 sym
16 // CHECK: R_AARCH64_ADR_GOT_PAGE sym
17 // CHECK: R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 sym
18 // CHECK: R_AARCH64_TLSDESC_ADR_PAGE21 sym
[all...]
H A Darm64-large-relocs.s4 movz x2, #:abs_g0:sym
5 movk w3, #:abs_g0_nc:sym
6 // CHECK: movz x2, #:abs_g0:sym // encoding: [0bAAA00010,A,0b100AAAAA,0xd2]
7 // CHECK-NEXT: // fixup A - offset: 0, value: :abs_g0:sym, kind: fixup_aarch64_movw
8 // CHECK: movk w3, #:abs_g0_nc:sym // encoding: [0bAAA00011,A,0b100AAAAA,0x72]
9 // CHECK-NEXT: // fixup A - offset: 0, value: :abs_g0_nc:sym, kind: fixup_aarch64_movw
11 // CHECK-OBJ: 0 R_AARCH64_MOVW_UABS_G0 sym
12 // CHECK-OBJ: 4 R_AARCH64_MOVW_UABS_G0_NC sym
14 movz x4, #:abs_g1:sym
15 movk w5, #:abs_g1_nc:sym
[all...]
H A Darm64-elf-relocs.s4 add x0, x2, #:lo12:sym
5 // CHECK: add x0, x2, :lo12:sym
6 // CHECK-OBJ: 0 R_AARCH64_ADD_ABS_LO12_NC sym
8 add x5, x7, #:dtprel_lo12:sym
9 // CHECK: add x5, x7, :dtprel_lo12:sym
10 // CHECK-OBJ: 4 R_AARCH64_TLSLD_ADD_DTPREL_LO12 sym
12 add x9, x12, #:dtprel_lo12_nc:sym
13 // CHECK: add x9, x12, :dtprel_lo12_nc:sym
14 // CHECK-OBJ: 8 R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC sym
16 add x20, x30, #:tprel_lo12:sym
[all...]
/external/iproute2/genl/
H A Dstatic-syms.c10 void *_dlsym(const char *sym) argument
/external/iproute2/ip/
H A Dstatic-syms.c10 void *_dlsym(const char *sym) argument
/external/iproute2/tc/
H A Dstatic-syms.c10 void *_dlsym(const char *sym) argument
/external/llvm/test/MC/ELF/
H A Difunc-reloc.s2 .global sym
3 .type sym, @gnu_indirect_function
7 .set sym, alias
10 callq sym
14 // CHECK-NEXT: 0x1 R_X86_64_PC32 sym 0xFFFFFFFFFFFFFFFC
/external/turbine/java/com/google/turbine/binder/bound/
H A DEnumConstantValue.java19 import com.google.turbine.binder.sym.FieldSymbol;
25 private final FieldSymbol sym; field in class:EnumConstantValue
27 public EnumConstantValue(FieldSymbol sym) { argument
28 this.sym = sym;
31 public FieldSymbol sym() { method in class:EnumConstantValue
32 return sym;
H A DAnnotationValue.java20 import com.google.turbine.binder.sym.ClassSymbol;
26 private final ClassSymbol sym; field in class:AnnotationValue
29 public AnnotationValue(ClassSymbol sym, ImmutableMap<String, Const> values) { argument
30 this.sym = sym;
36 return String.format("@%s", sym);
45 public ClassSymbol sym() { method in class:AnnotationValue
46 return sym;
/external/ltp/pan/
H A Dsymbol.h44 struct sym { struct
45 struct sym *next;
55 struct sym *sym; member in struct:symh
56 struct sym *cursor;
79 int sym_put (SYM sym, char *key, void *data, int flags );
80 void *sym_get (SYM sym, char *key );
81 int sym_seq (SYM sym, DBT *key, DBT *data, int flags );
82 int sym_rm (SYM sym, int flags );
H A Dsymbol.c90 sym_error = "sym header malloc failed!";
95 h->sym = NULL;
100 static struct sym *mknode(struct sym *next, char *key, void *data)
102 struct sym *n;
104 if ((n = malloc(sizeof(struct sym))) == NULL) {
105 sym_error = "sym node malloc failed!";
114 sym_error = "sym node strdup(key) failed!";
124 static struct sym *find_key1(struct sym *sy argument
137 add_key(SYM sym, char *key, void *data) argument
194 sym_put(SYM sym, char *key, void *data, int flags) argument
265 sym_get(SYM sym, char *key) argument
317 sym_seq(SYM sym, DBT * key, DBT * data, int flags) argument
380 sym_dump(SYM sym, int depth) argument
403 sym_dump_s(SYM sym, int depth) argument
441 sym_rm(SYM sym, int flags) argument
[all...]
/external/valgrind/coregrind/m_demangle/
H A Ddemangle.c191 Demangle 'sym' into its soname and fnname parts, putting them in
199 Bool VG_(maybe_Z_demangle) ( const HChar* sym, argument
214 SizeT len = VG_(strlen)(sym) + 1;
245 valid = sym[0] == '_'
246 && sym[1] == 'v'
247 && sym[2] == 'g'
248 && (sym[3] == 'r' || sym[3] == 'w')
249 && VG_(isdigit)(sym[4])
250 && VG_(isdigit)(sym[
[all...]
/external/webrtc/webrtc/modules/audio_device/linux/
H A Dalsasymboltable_linux.cc33 #define X(sym) \
34 LATE_BINDING_SYMBOL_TABLE_DEFINE_ENTRY(AlsaSymbolTable, sym)
H A Dpulseaudiosymboltable_linux.cc33 #define X(sym) \
34 LATE_BINDING_SYMBOL_TABLE_DEFINE_ENTRY(PulseAudioSymbolTable, sym)
/external/mesa3d/src/mesa/program/
H A Dsymbol_table.c88 struct symbol *sym = scope->symbols; local
95 while (sym != NULL) {
96 struct symbol *const next = sym->next_with_same_scope;
98 sym->name);
99 if (sym->next_with_same_name) {
103 hte->key = sym->next_with_same_name->name;
104 hte->data = sym->next_with_same_name;
107 free(sym->name);
110 free(sym);
111 sym
151 struct symbol *const sym = find_symbol(table, name); local
166 struct symbol *const sym = find_symbol(table, name); local
179 struct symbol *sym = find_symbol(table, name); local
219 struct symbol *sym = find_symbol(table, name); local
235 struct symbol *sym = find_symbol(table, name); local
[all...]
/external/libunwind_llvm/src/
H A DUnwind_AppleExtras.cpp45 #define NOT_HERE_BEFORE_5_0(sym) \
46 extern const char sym##_tmp30 __asm("$ld$hide$os3.0$_" #sym ); \
47 __attribute__((visibility("default"))) const char sym##_tmp30 = 0; \
48 extern const char sym##_tmp31 __asm("$ld$hide$os3.1$_" #sym ); \
49 __attribute__((visibility("default"))) const char sym##_tmp31 = 0; \
50 extern const char sym##_tmp32 __asm("$ld$hide$os3.2$_" #sym );\
51 __attribute__((visibility("default"))) const char sym##_tmp3
[all...]
/external/toybox/kconfig/
H A Dconfdata.c54 struct symbol *sym; local
68 sym = sym_lookup(name, 0);
69 sym_calc_value(sym);
70 strcat(res_value, sym_get_string_value(sym));
99 struct symbol *sym; local
119 name = conf_expand_value(prop->expr->left.sym->name);
139 for_all_symbols(i, sym) {
140 sym->flags |= SYMBOL_CHANGED;
141 sym->flags &= ~(def_flags|SYMBOL_VALID);
142 if (sym_is_choice(sym))
320 struct symbol *sym; local
400 struct symbol *sym; local
579 struct symbol *sym; local
690 struct symbol *sym; local
[all...]
H A Dsymbol.c38 void sym_add_default(struct symbol *sym, const char *def) argument
40 struct property *prop = prop_alloc(P_DEFAULT, sym);
47 struct symbol *sym; local
58 sym = sym_lookup("ARCH", 0);
59 sym->type = S_STRING;
60 sym->flags |= SYMBOL_AUTO;
63 sym_add_default(sym, p);
65 sym = sym_lookup("KERNELVERSION", 0);
66 sym->type = S_STRING;
67 sym
78 sym_get_type(struct symbol *sym) argument
112 sym_get_choice_prop(struct symbol *sym) argument
121 sym_get_default_prop(struct symbol *sym) argument
133 sym_get_range_prop(struct symbol *sym) argument
145 sym_get_range_val(struct symbol *sym, int base) argument
161 sym_validate_range(struct symbol *sym) argument
194 sym_calc_visibility(struct symbol *sym) argument
224 sym_calc_choice(struct symbol *sym) argument
263 sym_calc_value(struct symbol *sym) argument
377 struct symbol *sym; local
387 sym_set_changed(struct symbol *sym) argument
400 struct symbol *sym; local
407 sym_tristate_within_range(struct symbol *sym, tristate val) argument
426 sym_set_tristate_value(struct symbol *sym, tristate val) argument
462 sym_toggle_tristate_value(struct symbol *sym) argument
485 sym_string_valid(struct symbol *sym, const char *str) argument
528 sym_string_within_range(struct symbol *sym, const char *str) argument
570 sym_set_string_value(struct symbol *sym, const char *newval) argument
619 sym_get_string_value(struct symbol *sym) argument
642 sym_is_changable(struct symbol *sym) argument
723 struct symbol *sym, **sym_arr = NULL; local
762 struct symbol *sym; local
790 sym_check_deps(struct symbol *sym) argument
831 prop_alloc(enum prop_type type, struct symbol *sym) argument
[all...]
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/sched_h/
H A D10-1.c23 } sym[] = { variable in typeref:struct:unique
41 tst = sym;
44 for (i = 0; sym[i].name; i++) {
45 if (tst->value == sym[i].value
46 && strcmp(tst->name, sym[i].name)) {
48 tst->name, sym[i].name);
/external/toybox/tests/
H A Dpwd.test15 ln -s . sym
16 cd sym
22 rm sym
/external/elfutils/libdwfl/
H A Ddwfl_module_addrname.c35 GElf_Sym sym; local
36 return INTUSE(dwfl_module_addrinfo) (mod, addr, &off, &sym,
/external/turbine/java/com/google/turbine/binder/lookup/
H A DLookupResult.java21 import com.google.turbine.binder.sym.ClassSymbol;
22 import com.google.turbine.binder.sym.Symbol;
34 public Symbol sym() { method in class:LookupResult
35 return sym;
43 private final Symbol sym; field in class:LookupResult
46 public LookupResult(Symbol sym, LookupKey remaining) { argument
47 this.sym = sym;
/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...]
/external/iproute2/include/
H A Ddlfcn.h22 void *_dlsym(const char *sym);
23 static inline void *dlsym(void *handle, const char *sym) argument
27 return _dlsym(sym);
/external/turbine/java/com/google/turbine/binder/env/
H A DEnv.java19 import com.google.turbine.binder.sym.ClassSymbol;
20 import com.google.turbine.binder.sym.Symbol;
37 V get(S sym); argument

Completed in 667 milliseconds

1234567891011>>