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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mach-o/
subsect-via-symbols.s 1 # just set subsections by symbols
subsect-via-symbols-1.d 2 #source: subsect-via-symbols.s
dysymtab-1-64.d 3 #source: symbols-base-64.s
7 local symbols: idx: 0 num: 6.*\(nxtidx: 6\)
8 external symbols: idx: 6 num: 18.*\(nxtidx: 24\)
9 undefined symbols: idx: 24 num: 21.*\(nxtidx: 45\)
dysymtab-1.d 3 #source: symbols-base.s
7 local symbols: idx: 0 num: 6.*\(nxtidx: 6\)
8 external symbols: idx: 6 num: 18.*\(nxtidx: 24\)
9 undefined symbols: idx: 24 num: 21.*\(nxtidx: 45\)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips16-vis-1.d 1 # readelf: --symbols
  /toolchain/binutils/binutils-2.25/gas/testsuite/lib/
dounssym 6 objdump +symbols +omit-symbol-numbers $1 \
  /external/icu/icu4c/source/tools/memcheck/
ICUMemCheck.pl 44 $symbols = `nm -u -C $f`;
45 if ($symbols =~ /U +operator delete\(void\*\)/) {
48 if ($symbols =~ /U +operator delete\[\]\(void\*\)/) {
51 if ($symbols =~ /U +operator new\(unsigned int\)/) {
54 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) {
57 if ($symbols =~ /U +malloc.*/) {
60 if ($symbols =~ /(?m:U +free$)/) {
  /external/llvm/utils/emacs/
llvm-mode.el 29 `(,(regexp-opt '("void" "i1" "i8" "i16" "i32" "i64" "i128" "float" "double" "type" "label" "opaque") 'symbols) . font-lock-type-face)
41 "pointersize" "volatile" "fastcc" "coldcc" "cc" "personality") 'symbols) . font-lock-keyword-face)
44 "setne" "seteq" "setlt" "setgt" "setle" "setge") 'symbols) . font-lock-keyword-face)
46 `(,(regexp-opt '("fadd" "fsub" "fmul" "fdiv" "frem") 'symbols) . font-lock-keyword-face)
48 `(,(regexp-opt '("phi" "tail" "call" "select" "to" "shl" "lshr" "ashr" "fcmp" "icmp" "va_arg" "landingpad") 'symbols) . font-lock-keyword-face)
50 `(,(regexp-opt '("ret" "br" "switch" "invoke" "resume" "unwind" "unreachable" "indirectbr") 'symbols) . font-lock-keyword-face)
52 `(,(regexp-opt '("malloc" "alloca" "free" "load" "store" "getelementptr" "fence" "cmpxchg" "atomicrmw") 'symbols) . font-lock-keyword-face)
54 `(,(regexp-opt '("bitcast" "inttoptr" "ptrtoint" "trunc" "zext" "sext" "fptrunc" "fpext" "fptoui" "fptosi" "uitofp" "sitofp" "addrspacecast") 'symbols) . font-lock-keyword-face)
56 `(,(regexp-opt '("extractelement" "insertelement" "shufflevector") 'symbols) . font-lock-keyword-face)
58 `(,(regexp-opt '("extractvalue" "insertvalue") 'symbols) . font-lock-keyword-face
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
nm2def.py 4 Helpers to extract symbols from Unix libs and auto-generate
43 def symbols(lib=PYTHONLIB,types=('T','C','D')): function
47 symbols = {}
57 symbols[name] = address,type
58 return symbols
60 def export_list(symbols):
64 for name,(addr,type) in symbols.items():
80 # Special symbols that have to be included even though they don't
85 def filter_Python(symbols,specials=SPECIALS):
87 for name in symbols.keys():
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
reloc16.s 1 # Simple relocations against 16-bit extern symbols.
err-bpo6.s 3 # Test that we handle COMM-type symbols with base-plus-offset relocs, but
5 # symbols at link-time. Likewise for weak symbols.
  /external/mesa3d/src/glsl/
ir_import_prototypes.cpp 45 import_prototype_visitor(exec_list *list, glsl_symbol_table *symbols,
50 this->symbols = symbols;
58 this->function = this->symbols->get_function(ir->name);
66 this->symbols->add_function(this->function);
98 glsl_symbol_table *symbols; member in class:import_prototype_visitor
110 * \param symbols Symbol table where new functions will be stored
115 glsl_symbol_table *symbols, void *mem_ctx)
117 import_prototype_visitor v(dest, symbols, mem_ctx);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-ia64/
error1.d 2 #ld: -unresolved-symbols=ignore-all
  /bionic/libc/tools/
ndk_missing_symbols.py 21 import symbols
35 current = symbols.GetFromAndroidSo(['libc.so', 'libm.so'])
36 device = (symbols.GetFromElf(os.path.join(tmp_dir, 'libc.so')) |
37 symbols.GetFromElf(os.path.join(tmp_dir, 'libm.so')))
38 compat_lib = symbols.GetFromAndroidStaticLib(['libc_ndk.a'])
  /system/extras/simpleperf/
read_elf_test.cpp 76 void ParseSymbol(const ElfFileSymbol& symbol, std::map<std::string, ElfFileSymbol>* symbols) {
77 (*symbols)[symbol.name] = symbol;
80 static void CheckGlobalVariableSymbols(const std::map<std::string, ElfFileSymbol>& symbols) {
81 auto pos = symbols.find("GlobalVar");
82 ASSERT_NE(pos, symbols.end());
86 static void CheckFunctionSymbols(const std::map<std::string, ElfFileSymbol>& symbols) {
87 auto pos = symbols.find("GlobalFunc");
88 ASSERT_NE(pos, symbols.end());
93 void CheckElfFileSymbols(const std::map<std::string, ElfFileSymbol>& symbols) {
94 CheckGlobalVariableSymbols(symbols);
99 std::map<std::string, ElfFileSymbol> symbols; local
106 std::map<std::string, ElfFileSymbol> symbols; local
114 std::map<std::string, ElfFileSymbol> symbols; local
120 std::map<std::string, ElfFileSymbol> symbols; local
128 std::map<std::string, ElfFileSymbol> symbols; local
151 std::map<std::string, ElfFileSymbol> symbols; local
    [all...]
test_util.h 29 void ParseSymbol(const ElfFileSymbol& symbol, std::map<std::string, ElfFileSymbol>* symbols);
30 void CheckElfFileSymbols(const std::map<std::string, ElfFileSymbol>& symbols);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
mips16-pic-3a.s 6 # For symbols called by a .call stub in this file.
9 # For symbols called by a .call.fp stub in this file.
12 # For symbols called by a .call stub in another file.
15 # For symbols called by a .call.fp stub in another file.
19 # For symbols called by a .call stub in this file.
22 # For symbols called by a .call.fp stub in this file.
25 # For symbols called by a .call stub in this file.
28 # For symbols called by a .call.fp stub in this file.
31 # For symbols called by a .call stub in another file.
34 # For symbols called by a .call.fp stub in another file
    [all...]
jaloverflow-2.s 1 # jal relocs against undefined weak symbols should not be treated as
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
diff1.s 1 # Difference of two undefined symbols.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
defined3.d 7 # Check that DEFINED matches only symbols defined before its location.
8 # The ellipsis account for target-specific symbols. Matching both A and T
  /external/valgrind/drd/tests/
run_openmp_test 32 if [ "${line%: no symbols}" != "${line}" ]; then
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-arch-1.d 6 private flags = 3: \[symbols have a _ prefix\] \[v32\]
rd-arch-3.d 6 private flags = 1: \[symbols have a _ prefix\]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68k/
t2.d 2 #name: presence of section symbols
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-frv/
fdpic-shared-2-fail.d 1 #name: FRV uClinux PIC relocs to global symbols, failing shared linking

Completed in 1385 milliseconds

1 2 3 4 5 6 7 8 91011>>