Searched defs:sym (Results 1 - 25 of 272) 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...]
/external/llvm/test/MC/Mips/
H A Dmips64-expansions.s88 sym: label
89 bne $2, 0x100010001, sym
95 # CHECK: bne $2, $1, sym # encoding: [A,A,0x41,0x14]
/external/llvm/test/MC/PowerPC/
H A Dppc64-localentry-error1.s7 sym: label
8 .localentry sym, 123
H A Dppc64-localentry-error2.s8 sym: label
9 .localentry sym, remote_sym
/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/elfutils/libdwfl/
H A Ddwfl_module_addrname.c35 GElf_Sym sym; local
36 return INTUSE(dwfl_module_addrinfo) (mod, addr, &off, &sym,
/external/elfutils/libebl/
H A Debl_check_special_symbol.c38 ebl_check_special_symbol (Ebl *ebl, GElf_Ehdr *ehdr, const GElf_Sym *sym, argument
44 return ebl->check_special_symbol (ebl->elf, ehdr, sym, name, destshdr);
/external/llvm/tools/llvm-c-test/
H A Dobject.c56 LLVMSymbolIteratorRef sym; local
71 sym = LLVMGetSymbols(O);
72 while (!LLVMIsSymbolIteratorAtEnd(O, sym)) {
74 LLVMMoveToContainingSection(sect, sym);
75 printf("%s @0x%08" PRIx64 " +%" PRIu64 " (%s)\n", LLVMGetSymbolName(sym),
76 LLVMGetSymbolAddress(sym), LLVMGetSymbolSize(sym),
79 LLVMMoveToNextSymbol(sym);
82 LLVMDisposeSymbolIterator(sym);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/
H A D3-1.c22 } sym[] = { variable in typeref:struct:unique
48 tst = sym;
/external/elfutils/libelf/
H A Dgelf_update_sym.c63 Elf32_Sym *sym; local
81 sym = &((Elf32_Sym *) data_scn->d.d_buf)[ndx];
84 sym->name = src->name
/external/elfutils/tests/
H A Dasm-tst6.c63 AsmSym_t *sym; local
86 sym = asm_newsym (scn, buf, sizeof (uint32_t), STT_OBJECT,
88 if (sym == NULL)
105 if (asm_scngrp_newsignature (grp, sym) != 0)
/external/javassist/src/main/javassist/compiler/ast/
H A DSymbol.java26 public Symbol(String sym) { argument
27 identifier = sym;
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.create_directory_symlink/
H A Dcreate_directory_symlink.pass.cpp43 const path sym = env.create_symlink(file, "sym"); local
46 fs::create_directory_symlink(sym, file2, ec);
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.create_hard_link/
H A Dcreate_hard_link.pass.cpp42 const path sym = env.create_symlink(file, "sym"); local
45 fs::create_hard_link(sym, file2, ec);
/external/libese/tools/ese_replay/
H A Dhw.h27 const char *sym; member in struct:Hardware
/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/parameter-framework/upstream/utility/posix/
H A DDynamicLibrary.cpp58 void *sym = dlsym(_handle, symbol.c_str()); local
60 if (sym == nullptr) {
66 return sym;
/external/parameter-framework/upstream/utility/windows/
H A DDynamicLibrary.cpp65 void *sym = reinterpret_cast<void *>(GetProcAddress(module, symbol.c_str())); local
67 if (sym == nullptr) {
72 return sym;
/external/turbine/java/com/google/turbine/binder/bound/
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;
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;
/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
/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/elfutils/backends/
H A Daarch64_symbol.c65 aarch64_check_special_symbol (Elf *elf, GElf_Ehdr *ehdr, const GElf_Sym *sym, argument
84 return (sym->st_value >= shdr->sh_addr
85 && sym->st_value < shdr->sh_addr + shdr->sh_size);

Completed in 591 milliseconds

1234567891011