Searched refs:symbol (Results 101 - 125 of 580) sorted by relevance

1234567891011>>

/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/
H A Dneg_format.pass.cpp66 assert(p.field[0] == std::money_base::symbol);
74 assert(p.field[0] == std::money_base::symbol);
82 assert(p.field[0] == std::money_base::symbol);
90 assert(p.field[0] == std::money_base::symbol);
100 assert(p.field[1] == std::money_base::symbol);
108 assert(p.field[1] == std::money_base::symbol);
116 assert(p.field[1] == std::money_base::symbol);
124 assert(p.field[1] == std::money_base::symbol);
135 assert(p.field[3] == std::money_base::symbol);
143 assert(p.field[3] == std::money_base::symbol);
[all...]
H A Dpos_format.pass.cpp66 assert(p.field[0] == std::money_base::symbol);
74 assert(p.field[0] == std::money_base::symbol);
82 assert(p.field[0] == std::money_base::symbol);
90 assert(p.field[0] == std::money_base::symbol);
100 assert(p.field[1] == std::money_base::symbol);
108 assert(p.field[1] == std::money_base::symbol);
116 assert(p.field[1] == std::money_base::symbol);
124 assert(p.field[1] == std::money_base::symbol);
135 assert(p.field[3] == std::money_base::symbol);
143 assert(p.field[3] == std::money_base::symbol);
[all...]
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DEncoder.java102 public void Encode(short []probs, int index, int symbol) throws IOException argument
106 if (symbol == 0)
139 static public int GetPrice(int Prob, int symbol) argument
141 return ProbPrices[(((Prob - symbol) ^ ((-symbol))) & (kBitModelTotal - 1)) >>> kNumMoveReducingBits];
/external/python/cpython2/PC/os2emx/
H A Ddlfcn.c156 /* return a pointer to the `symbol' in DLL */
157 void *dlsym(void *handle, char *symbol) argument
168 if (*symbol == '#')
169 symord = atoi(symbol + 1);
171 switch (rc = DosQueryProcAddr(tmp->handle, symord, symbol, &addr))
181 errtxt = "no symbol `%s' in module";
184 errtxt = "symbol `%s', error code = %d";
187 snprintf(dlerr, sizeof(dlerr), errtxt, symbol, rc);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Derror.rb77 # that you can compute the complete trace of rules from the start symbol.
89 # knows its state (such as current input symbol and line info) that
100 to the recognizer by the rules of a grammar and an input symbol which failed to
107 attr_accessor :input, :index, :line, :column, :symbol, :token, :source_name
117 @token = @symbol = input.look
118 @line = @symbol.line
119 @column = @symbol.column
121 @token = @symbol = input.peek || EOF
125 @symbol = @input.look
126 if @symbol
[all...]
/external/iptables/extensions/
H A Dlibxt_tos.c41 const struct tos_symbol_info *symbol; local
46 "[!] --tos symbol Match TOS field (IPv4 only) by symbol\n"
49 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
51 symbol->value, symbol->value, symbol->name);
/external/clang/utils/perf-training/
H A Dperf-helper.py165 def fix_mangling(symbol):
167 if symbol[0] != '_' and symbol != 'start':
168 symbol = '_' + symbol
169 return symbol
171 def get_symbols_with_prefix(symbol):
172 start_index = bisect.bisect_left(all_symbols, symbol)
174 if not s.startswith(symbol):
217 symbol
[all...]
/external/ImageMagick/
H A DMake.com119 $write sys$output "..symbol DISPLAY defined."
131 $write sys$output "..symbol IMPORT defined."
143 $write sys$output "..symbol ANIMATE defined."
155 $write sys$output "..symbol MONTAGE defined."
167 $write sys$output "..symbol MOGRIFY defined."
179 $write sys$output "..symbol CONVERT defined."
190 $write sys$output "..symbol COMPARE defined."
201 $write sys$output "..symbol IDENTIFY defined."
212 $write sys$output "..symbol COMPOSITE defined."
/external/mesa3d/bin/
H A Dperf-annotate-jit95 start, length, symbol = line.split()
100 if symbol == matchSymbol:
134 def __init__(self, infile, symbol):
136 self.symbol = symbol
152 asm = lookupAsm(mapFile, self.symbol)
158 sys.stdout.write('%s:\n' % self.symbol)
195 call_re = re.compile(r'^\s+(?P<address>[0-9a-fA-F]+)\s+(?P<symbol>.*)\s+\((?P<module>[^)]*)\)$')
207 function_name = mo.group('symbol')
218 if function_name != self.symbol
[all...]
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs97 public void EncodeBit(uint size0, int numTotalBits, uint symbol) argument
100 if (symbol == 0)
216 uint symbol;
219 symbol = 0;
224 symbol = 1;
229 return symbol;
/external/llvm/test/MC/ARM/
H A Derror-location.s7 @ CHECK: :[[@LINE+1]]:{{[0-9]+}}: error: symbol 'undef' can not be undefined in a subtraction expression
23 @ CHECK: <unknown>:0: error: Common symbol 'common' cannot be used in assignment expr
26 @ CHECK: <unknown>:0: error: symbol 'undef' could not be evaluated in a subtraction expression
/external/mesa3d/src/glx/windows/
H A Dwgl.c35 #define PRERESOLVE(type, symbol) \
36 type##proc = (type)wglGetProcAddress(symbol); \
38 printf("Can't resolve \"%s\"\n", symbol);
/external/webrtc/webrtc/base/
H A Dlatebindingsymboltable.cc42 void **symbol) {
44 *symbol = dlsym(handle, symbol_name);
47 LOG(LS_ERROR) << "Error loading symbol " << symbol_name << ": " << err;
49 } else if (!*symbol) {
96 // RTLD_NOW front-loads symbol resolution so that errors are
99 // seeing symbol definitions in the newly-loaded tree. This
104 // RTLD_DEEPBIND makes symbol dependencies in the
40 LoadSymbol(DllHandle handle, const char *symbol_name, void **symbol) argument
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Dtransport_feedback.h76 bool AddSymbol(StatusSymbol symbol, int64_t seq);
77 bool Encode(StatusSymbol symbol);
78 bool HandleRleCandidate(StatusSymbol symbol,
/external/clang/test/CXX/temp/temp.spec/
H A Dcxx1y-variable-template-no-body.cpp23 expected-error{{redefinition of 'pi0' as different kind of symbol}}
/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/
H A Dneg_format.pass.cpp59 assert(p.field[0] == std::money_base::symbol);
67 assert(p.field[0] == std::money_base::symbol);
75 assert(p.field[0] == std::money_base::symbol);
83 assert(p.field[0] == std::money_base::symbol);
H A Dpos_format.pass.cpp59 assert(p.field[0] == std::money_base::symbol);
67 assert(p.field[0] == std::money_base::symbol);
75 assert(p.field[0] == std::money_base::symbol);
83 assert(p.field[0] == std::money_base::symbol);
/external/libcxx/utils/libcxx/sym_check/
H A Dutil.py20 Each string is one symbol.
63 def demangle_symbol(symbol):
65 return symbol
67 [_cppfilt_exe], input=symbol)
69 return symbol
264 assert not s['is_defined'] and "found defined non-std symbol"
/external/llvm/test/MC/MachO/AArch64/
H A Dclassrefs.s4 ; an internal relocation. We just have to be careful to not use another symbol.
/external/llvm/test/MC/Mips/
H A Dsym-expr.s1 # Check parsing symbol expressions
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dmodule.hpp107 struct symbol { struct in struct:clover::module
108 symbol(const std::string &name, resource_id section, function in struct:clover::module::symbol
111 symbol() : name(), section(0), offset(0), args() { } function in struct:clover::module::symbol
123 std::vector<symbol> syms;
/external/pdfium/xfa/fxbarcode/datamatrix/
H A DBC_SymbolInfo.cpp145 CBC_SymbolInfo* symbol = g_symbols[i]; local
146 if (shape == FORCE_SQUARE && symbol->m_rectangular) {
149 if (shape == FORCE_RECTANGLE && !symbol->m_rectangular) {
152 if (minSize && (symbol->getSymbolWidth(e) < minSize->getWidth() ||
153 symbol->getSymbolHeight(e) < minSize->getHeight())) {
158 if (maxSize && (symbol->getSymbolWidth(e) > maxSize->getWidth() ||
159 symbol->getSymbolHeight(e) > maxSize->getHeight())) {
164 if (dataCodewords <= symbol->m_dataCapacity) {
165 return symbol;
/external/v8/src/builtins/
H A Dbuiltins-symbol.cc56 Handle<Symbol> symbol = Handle<Symbol>::cast(obj); local
59 if (symbol->is_public()) {
60 result = symbol->name();
65 DCHECK_EQ(isolate->heap()->public_symbol_table()->SlowReverseLookup(*symbol),
/external/valgrind/gdbserver_tests/
H A Dhginfo.stderrB.exp4 Address 0x........ is 0 bytes inside data symbol "mx"
15 Address 0x........ is 0 bytes inside data symbol "mx"
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
H A DLZMAEncoder.java26 * A single LZMA symbol may indicate up to MATCH_LEN_MAX bytes
38 * A single LZMA symbol might use 20 bytes of space even though
148 * Gets the next LZMA symbol.
151 * repeated match, and normal match. The symbol is indicated
229 // The first symbol must be a literal unless using
542 int symbol = lz.getByte(readAhead) | 0x100;
549 subencoderIndex = symbol >>> 8;
550 bit = (symbol >>> 7) & 1;
552 symbol <<= 1;
553 } while (symbol <
576 getNormalPrice(int symbol) argument
594 getMatchedPrice(int symbol, int matchByte) argument
[all...]

Completed in 882 milliseconds

1234567891011>>