Searched refs:symbol (Results 1 - 25 of 462) 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/elfutils/src/libebl/
H A Deblsymboltypename.c1 /* Return symbol type name.
39 ebl_symbol_type_name (ebl, symbol, buf, len)
41 int symbol;
47 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL;
62 if (symbol < STT_NUM)
63 res = stt_names[symbol];
68 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC)
69 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC);
70 else if (symbol
[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/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/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/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/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/v8/test/mjsunit/harmony/
H A Dproxies-symbols.js48 var symbol = Symbol("secret")
50 assertFalse(symbol in p)
51 assertFalse(symbol in o)
52 assertEquals(undefined, p[symbol])
53 assertEquals(undefined, o[symbol])
54 assertEquals(47, p[symbol] = 47)
55 assertEquals(47, o[symbol] = 47)
56 assertFalse(delete p[symbol])
57 assertTrue(delete o[symbol])
58 assertTrue(delete o[symbol])
[all...]
/external/libxml2/os400/dlfcn/
H A Ddlfcn.h28 extern void * dlsym(void * handle, const char * symbol);
/external/mesa3d/src/mesa/main/
H A Denums.h50 extern int _mesa_lookup_enum_by_name( const char *symbol );
/external/webp/src/utils/
H A Dhuffman.c113 int symbol; local
125 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
126 if (code_lengths[symbol] > max_code_length) {
127 max_code_length = code_lengths[symbol];
133 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
134 ++code_length_hist[code_lengths[symbol]];
188 TreeAddSymbol(HuffmanTree* const tree, int symbol, int code, int code_length) argument
235 int symbol; local
[all...]
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.cs22 public void Encode(Encoder rangeEncoder, UInt32 symbol) argument
28 UInt32 bit = (symbol >> bitIndex) & 1;
34 public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol) argument
39 UInt32 bit = symbol & 1;
42 symbol >>= 1;
46 public UInt32 GetPrice(UInt32 symbol) argument
53 UInt32 bit = (symbol >> bitIndex) & 1;
60 public UInt32 ReverseGetPrice(UInt32 symbol) argument
66 UInt32 bit = symbol & 1;
67 symbol >>
74 ReverseGetPrice(BitEncoder[] Models, UInt32 startIndex, int NumBitLevels, UInt32 symbol) argument
89 ReverseEncode(BitEncoder[] Models, UInt32 startIndex, Encoder rangeEncoder, int NumBitLevels, UInt32 symbol) argument
[all...]
/external/elfutils/src/tests/
H A Drun-readelf-gdb_index.sh75 symbol offset: 0x78
90 [ 123] symbol: global, CUs: 1
91 [ 489] symbol: main, CUs: 0
92 [ 518] symbol: char, CUs: 0
93 [ 661] symbol: foo, CUs: 0T
94 [ 741] symbol: hello, CUs: 0, 1
95 [ 746] symbol: say, CUs: 1
96 [ 754] symbol: int, CUs: 0
106 symbol offset: 0x78
121 [ 123] symbol
[all...]
/external/llvm/test/MC/Mips/
H A Dmips-expansions.s20 # CHECK: lui $8, %hi(symbol) # encoding: [A,A,0x08,0x3c]
21 # fixup A - offset: 0, value: symbol@ABS_HI, kind: fixup_Mips_HI16
22 # CHECK: ori $8, $8, %lo(symbol) # encoding: [A,A,0x08,0x35]
23 # fixup A - offset: 0, value: symbol@ABS_LO, kind: fixup_Mips_LO16
25 # CHECK: lui $8, %highest(symbol) # encoding: [A,A,0x08,0x3c]
26 # fixup A - offset: 0, value: symbol@HIGHEST, kind: fixup_Mips_HIGHEST
27 # CHECK: ori $8, $8, %higher(symbol) # encoding: [A,A,0x08,0x35]
28 # fixup A - offset: 0, value: symbol@HIGHER, kind: fixup_Mips_HIGHER
30 # CHECK: ori $8, $8, %hi(symbol) # encoding: [A,A,0x08,0x35]
31 # fixup A - offset: 0, value: symbol
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Ddcfmtsym.h15 * 08/26/97 aliu Added currency/intl currency symbol support.
87 * Constants for specifying a number format symbol.
107 /** The currency symbol */
109 /** The international currency symbol */
113 /** The exponential symbol */
115 /** Per mill symbol - replaces kPermillSymbol */
119 /** Infinity symbol */
121 /** Nan symbol */
123 /** Significant digit symbol
172 /** count symbol constant
447 setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value, const UBool propogateDigits = TRUE) argument
[all...]
/external/libpng/scripts/
H A Dchecksym.awk19 symbol[1] = "" # defined symbols from png.h
32 # symbol @ordinal
45 print master ": duplicated symbol:", official[o] ":", $0
62 # just be symbol definitions. Lines will be commented out for
67 # symbol @ordinal # two fields, exported symbol
68 # ; symbol @ordinal # three fields, removed symbol
80 NF==3 && $1 == ";" && $3 ~ /^@[1-9][0-9]*$/ { # removed symbol
86 print "png.h: duplicated removed symbol",
[all...]
/external/llvm/bindings/python/llvm/tests/
H A Dtest_object.py37 for symbol in o.get_symbols():
39 assert isinstance(symbol, Symbol)
40 assert isinstance(symbol.name, str)
41 assert isinstance(symbol.address, long)
42 assert isinstance(symbol.size, long)
46 for symbol in o.get_symbols():
47 symbol.cache()
52 for symbol in o.get_symbols():
53 section = symbol.section
/external/linux-tools-perf/src/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DEventClass.py24 def create_event(name, comm, dso, symbol, raw_buf):
26 event = PebsEvent(name, comm, dso, symbol, raw_buf)
28 event = PebsNHM(name, comm, dso, symbol, raw_buf)
30 event = PerfEvent(name, comm, dso, symbol, raw_buf)
36 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC):
40 self.symbol = symbol
46 print "PMU event: name=%12s, symbol=%24s, comm=%8s, dso=%12s" % (self.name, self.symbol, self.comm, self.dso)
55 def __init__(self, name, comm, dso, symbol, raw_bu
[all...]
/external/lldb/include/lldb/Host/
H A DDynamicLibrary.h33 void* symbol = Host::DynamicLibraryGetSymbol (m_handle, name, err); local
34 if (!symbol)
36 return (T)symbol;
/external/zlib/src/contrib/blast/
H A Dblast.c95 * symbol[] are the symbol values in canonical order, where the number of
101 short *symbol; /* canonically ordered symbols */ member in struct:huffman
105 * Decode a code from the stream s using huffman table h. Return the symbol or
131 int index; /* index of first code of length len in symbol table */
146 if (code < first + count) { /* if length len, return symbol */
149 return h->symbol[index + (code - first)];
183 * enough bits will resolve to a symbol. If the return value is positive, then
189 int symbol; /* current symbol whe local
282 int symbol; /* decoded symbol, extra bits for distance */ local
[all...]

Completed in 1559 milliseconds

1234567891011>>