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

1 2 3 4 5 6 7 8 91011>>

  /external/jemalloc/include/jemalloc/internal/
private_namespace.sh 3 for symbol in `cat $1` ; do
4 echo "#define ${symbol} JEMALLOC_N(${symbol})"
private_unnamespace.sh 3 for symbol in `cat $1` ; do
4 echo "#undef ${symbol}"
  /external/llvm/test/MC/ARM/
directive-type-diagnostics.s 6 .type symbol 32
8 // CHECK: .type symbol 32
  /external/llvm/test/MC/ELF/ARM/
directive-type-diagnostics.s 6 .type symbol 32
8 // CHECK: .type symbol 32
  /external/llvm/test/MC/MachO/ARM/
directive-type-diagnostics.s 6 .type symbol 32
8 // CHECK: .type symbol 32
  /system/extras/simpleperf/runtest/
runtest.conf 6 <symbol name="Function1()" min="90" max="100"/>
10 <symbol name="main" min="90" max="100"/>
14 <symbol name="Function1()">
15 <symbol name="main"/>
16 </symbol>
24 <symbol name="Function1()" min="30" max="70"/>
25 <symbol name="Function2()" min="30" max="70"/>
29 <symbol name="main" min="90" max="100"/>
33 <symbol name="Function1()">
34 <symbol name="main"/
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
common1.l 2 [^:]*: Error: symbol `foobar' can not be both weak and common
common2.l 2 [^:]*: Error: symbol `foobar' can not be both weak and common
pseudo.l 2 [^:]*:2: Error: Missing symbol name in directive
3 [^:]*:4: Error: Missing symbol name in directive
4 [^:]*:6: Error: Missing symbol name in directive
5 [^:]*:8: Error: Missing symbol name in directive
6 [^:]*:10: Error: Missing symbol name in directive
7 [^:]*:12: Error: Missing symbol name in directive
8 [^:]*:14: Error: Missing symbol name in directive
10 [^:]*:16: Error: Missing symbol name in directive
11 [^:]*:18: Error: Missing symbol name in directive
12 [^:]*:18: Error: unrecognized symbol type "
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
noat-4.s 2 lw $27, symbol($27)
noat-7.s 2 sw $27, symbol($27)
  /cts/tools/dasm/src/java_cup/runtime/
symbol.java 4 /** This class represents a (terminal or non-terminal) symbol that, among
6 * keep track of state on the parse stack. The symbol currently on top
9 * of the symbol number that they represent in the sym field. Finally,
21 public class symbol { class
24 public symbol(int sym_num, int state) method in class:symbol
33 public symbol(int sym_num) method in class:symbol
40 /** The symbol number of the terminal or non terminal being represented */
45 /** The parse state to be recorded on the parse stack with this symbol.
token.java 4 /** This subclass of symbol represents (at least) terminal symbols returned
13 public class token extends symbol {
  /external/elfutils/libebl/
eblsymboltypename.c 1 /* Return symbol type name.
39 ebl_symbol_type_name (Ebl *ebl, int symbol, char *buf, size_t len)
43 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL;
58 if (symbol < STT_NUM)
59 res = stt_names[symbol];
64 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC)
65 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC);
66 else if (symbol == STT_GNU_IFUNC
70 else if (symbol >= STT_LOOS && symbol <= STT_HIOS
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_asm.h 47 # define ASM_HIDDEN(symbol) .hidden symbol
48 # define ASM_TYPE_FUNCTION(symbol) .type symbol, @function
49 # define ASM_SIZE(symbol) .size symbol, .-symbol
50 # define ASM_TSAN_SYMBOL(symbol) symbol
51 # define ASM_TSAN_SYMBOL_INTERCEPTOR(symbol) symbo
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/lib/
dounssym 2 # objdump the symbol table, but strip off the headings and symbol
3 # numbers and sort the result. Intended for use in comparing symbol
6 objdump +symbols +omit-symbol-numbers $1 \
  /toolchain/binutils/binutils-2.27/include/gdb/
signals.h 52 #define SET(symbol, constant, name, string) \
53 symbol = constant,
  /external/autotest/client/tools/
oprofile_diff 8 (samples, percent, symbol) = line.split()
9 data[symbol] = float(percent)
17 for symbol in data1.keys() + data2.keys():
18 delta[symbol] = data1.get(symbol, 0) - data2.get(symbol, 0)
20 def lookup_delta(symbol):
21 return delta[symbol]
28 for symbol in sorted_deltas:
29 print '%2.3f %s' % (delta[symbol], symbol
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
pcr-relocs-undef.d 1 #name: C6X PCR relocs against undefined symbol
4 #error: undefined symbol
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
plugin-12.d 2 .*: symbol `func' definition: 0, visibility: 0, resolution: 2
3 .*: symbol `func1' definition: 0, visibility: 1, resolution: 3
4 .*: symbol `func2' definition: 0, visibility: 2, resolution: 3
5 .*: symbol `func3' definition: 0, visibility: 3, resolution: 3
  /external/easymock/src/org/easymock/
LogicalOperator.java 48 private String symbol; field in class:LogicalOperator
50 private LogicalOperator(String symbol) {
51 this.symbol = symbol;
55 return symbol;
  /external/brotli/c/enc/
utf8_util.c 18 int* symbol, const uint8_t* input, size_t size) {
21 *symbol = input[0];
22 if (*symbol > 0) {
30 *symbol = (((input[0] & 0x1f) << 6) |
32 if (*symbol > 0x7f) {
41 *symbol = (((input[0] & 0x0f) << 12) |
44 if (*symbol > 0x7ff) {
54 *symbol = (((input[0] & 0x07) << 18) |
58 if (*symbol > 0xffff && *symbol <= 0x10ffff)
74 int symbol; local
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
pcrel_pic_undefined.d 4 #warning: .*: relocation R_AARCH64_ADR_PREL_PG_HI21 against external symbol.*fPIC.*
5 #warning: .*: relocation R_AARCH64_ADR_PREL_PG_HI21_NC against external symbol.*fPIC.*
6 #warning: .*: relocation R_AARCH64_ADR_PREL_LO21 against external symbol.*fPIC.*
7 #warning: .*: relocation R_AARCH64_LD_PREL_LO19 against external symbol.*fPIC.*
8 #warning: .*: relocation R_AARCH64_PREL16 against external symbol.*fPIC.*
9 #warning: .*: relocation R_AARCH64_PREL32 against external symbol.*fPIC.*
10 #warning: .*: relocation R_AARCH64_PREL64 against external symbol.*fPIC.*
  /external/iptables/extensions/
tos_values.c 29 const struct tos_symbol_info *symbol; local
34 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
35 if (value == symbol->value) {
36 printf(" %s%s", prefix, symbol->name);
  /external/toybox/kconfig/
lkc_proto.h 17 /* symbol.c */
18 P(symbol_hash,struct symbol *,[SYMBOL_HASHSIZE]);
21 P(sym_lookup,struct symbol *,(const char *name, int isconst));
22 P(sym_find,struct symbol *,(const char *name));
23 P(sym_re_search,struct symbol **,(const char *pattern));
25 P(sym_calc_value,void,(struct symbol *sym));
26 P(sym_get_type,enum symbol_type,(struct symbol *sym));
27 P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri));
28 P(sym_set_tristate_value,bool,(struct symbol *sym,tristate tri));
29 P(sym_toggle_tristate_value,tristate,(struct symbol *sym))
    [all...]

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011>>