Searched refs:symbol (Results 1 - 25 of 580) sorted by relevance

1234567891011>>

/external/jemalloc/include/jemalloc/internal/
H A Dprivate_namespace.sh3 for symbol in `cat $1` ; do
4 echo "#define ${symbol} JEMALLOC_N(${symbol})"
H A Dprivate_unnamespace.sh3 for symbol in `cat $1` ; do
4 echo "#undef ${symbol}"
/external/llvm/test/MC/ARM/
H A Ddirective-type-diagnostics.s6 .type symbol 32
8 // CHECK: .type symbol 32
/external/llvm/test/MC/ELF/ARM/
H A Ddirective-type-diagnostics.s6 .type symbol 32
8 // CHECK: .type symbol 32
/external/llvm/test/MC/MachO/ARM/
H A Ddirective-type-diagnostics.s6 .type symbol 32
8 // CHECK: .type symbol 32
/external/elfutils/libebl/
H A Deblsymboltypename.c1 /* Return symbol type name.
39 ebl_symbol_type_name (Ebl *ebl, int symbol, char *buf, size_t len) argument
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 >
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_asm.h47 # 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...]
/external/autotest/client/tools/
H A Doprofile_diff8 (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], symbo
[all...]
/external/easymock/src/org/easymock/
H A DLogicalOperator.java48 private String symbol; field in class:LogicalOperator
50 private LogicalOperator(String symbol) { argument
51 this.symbol = symbol;
55 return symbol;
/external/brotli/enc/
H A Dutf8_util.c18 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 <
17 BrotliParseAsUTF8( int* symbol, const uint8_t* input, size_t size) argument
74 int symbol; local
[all...]
/external/bison/src/
H A Dsymtab.h23 * \brief Manipulating ::symbol.
52 typedef struct symbol symbol; typedef in typeref:struct:symbol
56 struct symbol struct
58 /** The key, name of the symbol. */
74 /** Any \c \%destructor declared specifically for this symbol.
76 Access this field only through <tt>symbol</tt>'s interface
77 functions. For example, if <tt>symbol::destructor = NULL</tt>, a
83 /** Any \c \%printer declared specifically for this symbol.
85 Access this field only through <tt>symbol</t
[all...]
/external/iptables/extensions/
H A Dtos_values.c29 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/
H A Dlkc_proto.h17 /* 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 *sy
[all...]
H A Dlkc.h80 void menu_add_entry(struct symbol *sym);
86 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
106 /* symbol.c */
110 void sym_set_changed(struct symbol *sym);
111 struct symbol *sym_check_deps(struct symbol *sym);
112 struct property *prop_alloc(enum prop_type type, struct symbol *sym);
113 struct symbol *prop_get_symbol(struct property *prop);
115 static inline tristate sym_get_tristate_value(struct symbol *sym)
121 static inline struct symbol *sym_get_choice_valu
[all...]
/external/v8/src/runtime/
H A Druntime-symbol.cc20 Handle<Symbol> symbol = isolate->factory()->NewSymbol(); local
21 if (name->IsString()) symbol->set_name(*name);
22 return *symbol;
31 Handle<Symbol> symbol = isolate->factory()->NewPrivateSymbol(); local
32 if (name->IsString()) symbol->set_name(*name);
33 return *symbol;
40 CONVERT_ARG_CHECKED(Symbol, symbol, 0);
41 return symbol->name();
48 CONVERT_ARG_HANDLE_CHECKED(Symbol, symbol, 0);
51 if (symbol
[all...]
/external/zlib/src/contrib/puff/
H A Dpuff.c65 * - Catch missing end-of-block symbol error
202 * symbol[] are the symbol values in canonical order, where the number of
208 short *symbol; /* canonically ordered symbols */ member in struct:huffman
212 * Decode a code from the stream s using huffman table h. Return the symbol or
241 int index; /* index of first code of length len in symbol table */
247 if (code - count < first) /* if length len, return symbol */
248 return h->symbol[index + (code - first)];
269 int index; /* index of first code of length len in symbol table */
284 if (code - count < first) { /* if length len, return symbol */
342 int symbol; /* current symbol when stepping through length[] */ local
440 int symbol; /* decoded symbol */ local
545 int symbol; local
704 int symbol; /* decoded value */ local
[all...]
/external/llvm/test/MC/COFF/
H A Dinvalid-type.s3 # CHECK: symbol type specified outside of a symbol definition
4 # CHECK: symbol type specified outside of a symbol definition
/external/llvm/test/MC/ELF/
H A Dgnu-type-diagnostics.s13 .type symbol 32
15 // CHECK: .type symbol 32
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DBitTreeEncoder.java20 public void Encode(Encoder rangeEncoder, int symbol) throws IOException argument
26 int bit = (symbol >>> bitIndex) & 1;
32 public void ReverseEncode(Encoder rangeEncoder, int symbol) throws IOException argument
37 int bit = symbol & 1;
40 symbol >>= 1;
44 public int GetPrice(int symbol) argument
51 int bit = (symbol >>> bitIndex) & 1;
58 public int ReverseGetPrice(int symbol) argument
64 int bit = symbol & 1;
65 symbol >>>
72 ReverseGetPrice(short[] Models, int startIndex, int NumBitLevels, int symbol) argument
87 ReverseEncode(short[] Models, int startIndex, Encoder rangeEncoder, int NumBitLevels, int symbol) argument
[all...]
/external/autotest/client/cros/
H A Dasan.py21 # -s, --symbol <arg> * Find a specified symbol
24 symbol = utils.system_output(scanelf_command)
25 logging.debug("running_on_asan(): symbol: '%s', _ASAN_SYMBOL: '%s'",
26 symbol, _ASAN_SYMBOL)
27 return symbol != ""
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
H A DRangeDecoder.java46 int symbol = 1;
49 symbol = (symbol << 1) | decodeBit(probs, symbol);
50 } while (symbol < probs.length);
52 return symbol - probs.length;
56 int symbol = 1;
61 int bit = decodeBit(probs, symbol);
62 symbol = (symbol <<
[all...]
/external/libxml2/doc/
H A Dlibxml-doc.el28 ;; (autoload 'libxmldoc-lookup-symbol "~/elisp/libxml-doc"
31 ;; (autoload 'libxmldoc-lookup-symbol "libxml-doc"
44 ;; call M-x libxmldoc-lookup-symbol: this will prompt with completion and
46 ;; point matches a symbol, that is used instead. You can also call
47 ;; libxmldoc-lookup-symbol noninteractively and pass the symbol.
61 ;; Wed Jun 21 01:45:29 2000: added libxmldoc-lookup-symbol-at-point
62 ;; Wed Jun 21 23:37:58 2000: libxmldoc-lookup-symbol now uses
63 ;; (thing-at-point 'word) if it matches a symbol
68 ;; - Changed the 'word match from thing-at-point into 'symbol
[all...]
/external/python/cpython2/Lib/
H A Dcodeop.py39 compile_command(source, filename, symbol):
68 def _maybe_compile(compiler, source, filename, symbol):
75 if symbol != "eval":
82 code = compiler(source, filename, symbol)
87 code1 = compiler(source + "\n", filename, symbol)
92 code2 = compiler(source + "\n\n", filename, symbol)
101 def _compile(source, filename, symbol):
102 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)
104 def compile_command(source, filename="<input>", symbol="single"):
112 symbol
[all...]
/external/parameter-framework/upstream/utility/
H A DDynamicLibrary.hpp49 * Get a symbol from library
51 * @param[in] symbol the symbol name
52 * @return a symbol's address in the library if it exists, NULL otherwise
55 SymbolType getSymbol(const std::string &symbol) const
57 return reinterpret_cast<SymbolType>(osGetSymbol(symbol));
62 * OS secific helper to get a symbol from library
64 * @param[in] symbol the symbol name
65 * @return symbol'
[all...]
/external/libxml2/os400/dlfcn/
H A Ddlfcn.h28 extern void * dlsym(void * handle, const char * symbol);

Completed in 803 milliseconds

1234567891011>>