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

1234567891011>>

/external/elfutils/libebl/
H A Deblsymboltypename.c1 /* Return symbol type name.
60 ebl_symbol_type_name (ebl, symbol, buf, len)
62 int symbol;
68 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL;
83 if (symbol < STT_NUM)
84 res = stt_names[symbol];
87 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC)
88 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC);
89 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/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/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/chromium_org/native_client_sdk/src/libraries/xray/
H A Ddemangle.c17 const char* XRayDemangle(char* demangle, size_t size, const char* symbol) { argument
20 __cxa_demangle(symbol, demangle, &size, &stat);
24 return symbol;
/external/chromium_org/third_party/codesighs/
H A Dnm_wrap_osx.pl44 # A wrapper for nm that produces output listing symbol size.
62 my($symbol) = $4;
66 if ('trampoline_size' ne $symbol) {
67 warn "Encountered unknown absolutely addressed symbol '$symbol' in $module";
75 if ($symbol =~ /^(_[_Z].+)/)
78 $symbol = `c++filt '$1'`;
79 chomp($symbol);
80 # warn "Unmangling again to $symbol\n";
94 $prev_symbol = $symbol;
[all...]
/external/chromium_org/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/chromium_org/third_party/mesa/src/src/mesa/main/
H A Denums.h50 extern int _mesa_lookup_enum_by_name( const char *symbol );
/external/linux-tools-perf/util/
H A Dannotate.h6 #include "symbol.h"
68 struct symbol symbol; member in struct:sannotation
77 static inline struct annotation *symbol__annotation(struct symbol *sym)
79 struct sannotation *a = container_of(sym, struct sannotation, symbol);
83 int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
85 int symbol__alloc_hist(struct symbol *sym, int nevents);
86 void symbol__annotate_zero_histograms(struct symbol *sym);
90 int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
92 int symbol__annotate(struct symbol *sy
[all...]
/external/mesa3d/src/mesa/main/
H A Denums.h50 extern int _mesa_lookup_enum_by_name( const char *symbol );
/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/chromium_org/third_party/angle/src/compiler/
H A DSearchSymbol.cpp6 // SearchSymbol is an AST traverser to detect the use of a given symbol name
16 SearchSymbol::SearchSymbol(const TString &symbol) : mSymbol(symbol) argument
/external/chromium_org/third_party/libwebp/utils/
H A Dhuffman.c74 int symbol; local
86 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
87 if (code_lengths[symbol] > max_code_length) {
88 max_code_length = code_lengths[symbol];
94 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
95 ++code_length_hist[code_lengths[symbol]];
120 TreeAddSymbol(HuffmanTree* const tree, int symbol, int code, int code_length) argument
148 int symbol; local
[all...]
/external/webp/src/utils/
H A Dhuffman.c74 int symbol; local
86 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
87 if (code_lengths[symbol] > max_code_length) {
88 max_code_length = code_lengths[symbol];
94 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
95 ++code_length_hist[code_lengths[symbol]];
120 TreeAddSymbol(HuffmanTree* const tree, int symbol, int code, int code_length) argument
148 int symbol; local
[all...]
/external/oprofile/libpp/
H A Dsymbol_container.cpp32 symbol_entry * symbol = const_cast<symbol_entry*>(&*p.first); local
33 symbol->sample.counts += symb.sample.counts;
45 symbol_entry symbol; local
46 symbol.sample.file_loc.filename = filename;
47 symbol.sample.file_loc.linenr = linenr;
52 pair<it, it> p_it = symbols_by_loc.equal_range(&symbol);
65 symbol_entry symbol; local
66 symbol.sample.file_loc.filename = filename;
67 symbol.sample.file_loc.linenr = 0;
70 it first = symbols_by_loc.lower_bound(&symbol);
[all...]
/external/chromium_org/third_party/angle/src/compiler/depgraph/
H A DDependencyGraphOutput.cpp28 void TDependencyGraphOutput::visitSymbol(TGraphSymbol* symbol) argument
31 mSink << symbol->getIntermSymbol()->getSymbol() << " (symbol id: "
32 << symbol->getIntermSymbol()->getId() << ")\n";
59 TGraphNode* symbol = *iter; local
62 symbol->traverse(this);
/external/qemu/distrib/sdl-1.2.15/src/loadso/dlopen/
H A DSDL_sysloadso.c46 void *symbol = dlsym(handle, name); local
47 if ( symbol == NULL ) {
53 symbol = dlsym(handle, _name);
55 if ( symbol == NULL ) {
59 return(symbol);
/external/llvm/bindings/python/llvm/tests/
H A Dtest_object.py36 for symbol in o.get_symbols():
38 assert isinstance(symbol, Symbol)
39 assert isinstance(symbol.name, str)
40 assert isinstance(symbol.address, long)
41 assert isinstance(symbol.size, long)
42 assert isinstance(symbol.file_offset, long)
46 for symbol in o.get_symbols():
47 symbol.cache()
52 for symbol in o.get_symbols():
53 section = symbol
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/tests/
H A Dcofftest.asm7 ; [1] Define and export a global text-section symbol
8 ; [2] Define and export a global data-section symbol
9 ; [3] Define and export a global BSS-section symbol
10 ; [4] Define a non-global text-section symbol
11 ; [5] Define a non-global data-section symbol
12 ; [6] Define a non-global BSS-section symbol
13 ; [7] Define a COMMON symbol
16 ; [10] Import an external symbol
17 ; [11] Make a PC-relative call to an external symbol
18 ; [12] Reference a text-section symbol i
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/gas32/
H A Dgas-macho32.asm7 # [1] Define and export a global text-section symbol
8 # [2] Define and export a global data-section symbol
9 # [3] Define and export a global BSS-section symbol
10 # [4] Define a non-global text-section symbol
11 # [5] Define a non-global data-section symbol
12 # [6] Define a non-global BSS-section symbol
13 # [7] Define a COMMON symbol
16 # [10] Import an external symbol (note: printf replaced by another call)
17 # [11] Make a PC-relative call to an external symbol
18 # [12] Reference a text-section symbol i
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
H A Dwin32test.asm7 ; [1] Define and export a global text-section symbol
8 ; [2] Define and export a global data-section symbol
9 ; [3] Define and export a global BSS-section symbol
10 ; [4] Define a non-global text-section symbol
11 ; [5] Define a non-global data-section symbol
12 ; [6] Define a non-global BSS-section symbol
13 ; [7] Define a COMMON symbol
16 ; [10] Import an external symbol
17 ; [11] Make a PC-relative call to an external symbol
18 ; [12] Reference a text-section symbol i
[all...]
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Ddcfmtsym.h15 * 08/26/97 aliu Added currency/intl currency symbol support.
86 * Constants for specifying a number format symbol.
106 /** The currency symbol */
108 /** The international currency symbol */
112 /** The exponential symbol */
114 /** Per mill symbol - replaces kPermillSymbol */
118 /** Infinity symbol */
120 /** Nan symbol */
122 /** Significant digit symbol
165 /** count symbol constant
426 setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value, const UBool propogateDigits = TRUE) argument
[all...]
/external/icu4c/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
166 /** count symbol constant
426 setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value, const UBool propogateDigits = TRUE) argument
[all...]

Completed in 632 milliseconds

1234567891011>>