Searched refs:symbol (Results 176 - 200 of 580) sorted by relevance

1234567891011>>

/external/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c20 * Minimum number of usable input buffer to safely decode one LZMA symbol.
522 uint32_t symbol = 1; local
525 if (rc_bit(rc, &probs[symbol]))
526 symbol = (symbol << 1) + 1;
528 symbol <<= 1;
529 } while (symbol < limit);
531 return symbol;
539 uint32_t symbol = 1; local
543 if (rc_bit(rc, &probs[symbol])) {
584 uint32_t symbol; local
[all...]
/external/llvm/lib/LTO/
H A DLTOModule.cpp159 // If we own a context, we know this is being used only for symbol extraction,
287 info.symbol = clgv;
301 info.symbol = clgv;
326 info.symbol = clgv;
345 info.symbol = clgv;
479 info.symbol = def;
485 /// addAsmGlobalSymbol - Add a global symbol from module-level ASM to the
497 if (info.symbol == nullptr) {
511 info.symbol = nullptr;
519 addDefinedFunctionSymbol(info.name, cast<Function>(info.symbol));
[all...]
/external/bison/src/
H A Dreader.c56 | Set the start symbol. |
60 grammar_start_symbol_set (symbol *sym, location loc)
98 /* After all symbol type declarations have been parsed, packgram invokes
169 | null pointer instead of a symbol to terminate the rule. The next |
170 | symbol is the lhs of the following rule. |
176 /* The (currently) last symbol of GRAMMAR. */
181 grammar_symbol_append (symbol *sym, location loc)
203 symbol *sym = p->content.sym;
208 _("duplicated symbol name for %s ignored"),
229 grammar_current_rule_begin (symbol *lh
[all...]
H A Dparse-gram.h54 /* Put the tokens into the symbol table, so that GDB and other debuggers
181 symbol *symbol; member in union:GRAM_STYPE
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc72 // to the symbol search path. All the failures below are not fatal.
107 PSYMBOL_INFO symbol = (PSYMBOL_INFO)buffer; local
108 symbol->SizeOfStruct = sizeof(SYMBOL_INFO);
109 symbol->MaxNameLen = MAX_SYM_NAME;
112 (DWORD64)addr, &offset, symbol);
121 frame->info.function = internal_strdup(symbol->Name);
/external/lzma/C/
H A DPpmd7Enc.c79 void Ppmd7_EncodeSymbol(CPpmd7 *p, CPpmd7z_RangeEnc *rc, int symbol) argument
87 if (s->Symbol == symbol)
99 if ((++s)->Symbol == symbol)
121 if (s->Symbol == symbol)
150 return; /* EndMarker (symbol = -1) */
162 if (cur == symbol)
H A DLzmaDec.c49 #define NORMAL_LITER_DEC GET_BIT(prob + symbol, symbol)
53 probLit = prob + offs + bit + symbol; \
54 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
127 /* First LZMA-symbol is always decoded.
172 unsigned symbol; local
183 symbol = 1;
185 do { NORMAL_LITER_DEC } while (symbol < 0x100);
202 symbol = 1;
210 while (symbol <
608 unsigned symbol = 1; local
616 unsigned symbol = 1; local
[all...]
/external/v8/src/base/debug/
H A Dstack_trace_win.cc54 // Defer symbol load until they're needed, use undecorated names, and get line
69 // add the directory of the executable to symbol search path.
117 // Initialize symbol information retrieval structures.
119 PSYMBOL_INFO symbol = reinterpret_cast<PSYMBOL_INFO>(&buffer[0]); local
120 symbol->SizeOfStruct = sizeof(SYMBOL_INFO);
121 symbol->MaxNameLen = kMaxNameLength - 1;
123 SymFromAddr(GetCurrentProcess(), frame, &sym_displacement, symbol);
135 (*os) << symbol->Name << " [0x" << trace[i] << "+" << sym_displacement
138 // If there is no symbol information, add a spacer.
139 (*os) << "(No symbol) [
[all...]
/external/zopfli/src/zopfli/
H A Ddeflate.c45 static void AddBits(unsigned symbol, unsigned length, argument
50 unsigned bit = (symbol >> i) & 1;
61 static void AddHuffmanBits(unsigned symbol, unsigned length, argument
67 unsigned bit = (symbol >> (length - i - 1)) & 1;
141 /* This is an encoding of a huffman tree, so now the length is a symbol */
142 unsigned char symbol = i < hlit2 ? ll_lengths[i] : d_lengths[i - hlit2]; local
144 if(use_16 || (symbol == 0 && (use_17 || use_18))) {
145 for (j = i + 1; j < lld_total && symbol ==
153 if (symbol == 0 && count >= 3) {
178 /* Repetitions of any symbol */
225 unsigned symbol = clsymbols[rle[i]]; local
383 size_t symbol, sum, limit; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DIntlTestDateFormatSymbols.java37 DateFormatSymbols symbol;
39 symbol=new DateFormatSymbols(Locale.getDefault());
41 month=symbol.getMonths();
55 DateFormatSymbols symbol;
56 symbol=new DateFormatSymbols(Locale.getDefault());
63 String[] month =symbol.getMonths(context[i],width[j]);
77 DateFormatSymbols symbol;
78 symbol=new DateFormatSymbols(Locale.getDefault());
85 String[] wd =symbol.getWeekdays(context[i],width[j]);
100 DateFormatSymbols symbol;
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DIntlTestDateFormatSymbols.java36 DateFormatSymbols symbol;
38 symbol=new DateFormatSymbols(Locale.getDefault());
40 month=symbol.getMonths();
54 DateFormatSymbols symbol;
55 symbol=new DateFormatSymbols(Locale.getDefault());
62 String[] month =symbol.getMonths(context[i],width[j]);
76 DateFormatSymbols symbol;
77 symbol=new DateFormatSymbols(Locale.getDefault());
84 String[] wd =symbol.getWeekdays(context[i],width[j]);
99 DateFormatSymbols symbol;
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp252 const char *symbol = LLVMGetValueName(func); local
254 perf_asm_file << symbol << ":\n"; local
257 fprintf(perf_map_file, "%lx %lx %s\n", addr, size, symbol);
/external/python/cpython2/Lib/hotshot/
H A Dlog.py4 import symbol namespace
179 funcdef = symbol.funcdef
180 lambdef = symbol.lambdef
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dsymshift.pl3 # "plane" and create combined symbol table
9 # This script creates a symbol table which must be used when
86 reads in a combination of symbol tables with ids in range [0..2^8-1]
87 and converts into one symbol table with ids in range [0..2^16-1] which
96 -pb_strengths <infile> read symbol tables from <file> and shift them into
132 #translation between symbol names used in decision trees
197 #we have the symbol (which potentially contains an exclamation mark)
207 print STDERR "symbol \"$sym\" was allready assigned to plane of \"$table{$otherplane}\" ($otherplane); overwriting\n";
/external/toybox/scripts/
H A Dconfig2help.c4 we read .config and set sym->try on each enabled symbol.
33 struct symbol { struct
34 struct symbol *next;
149 // Read Config.in (and includes) to populate global struct symbol *sym list.
153 struct symbol *new = 0;
170 new = xzalloc(sizeof(struct symbol));
229 // Stage 1: read data. Read Config.in to global 'struct symbol *sym' list,
230 // then read .config to set "enabled" member of each enabled symbol.
243 struct symbol *try;
264 struct symbol *thro
[all...]
/external/vixl/examples/aarch32/
H A Ddisasm-a32.cc281 const Symbol& symbol = sres->second; local
282 uint32_t func_addr = symbol.GetAddress();
283 uint32_t func_size = symbol.GetSize();
295 std::cout << "--- " << symbol.GetName() << ":" << std::endl;
300 base_addr + symbol.GetMemoryAddress()),
305 base_addr + symbol.GetMemoryAddress()),
/external/ImageMagick/coders/
H A Dxpm.c629 symbol[MagickPathExtent];
803 symbol[0]=Cixel[k];
807 symbol[j]=Cixel[k];
809 symbol[j]='\0';
811 symbol,name);
827 symbol[0]=Cixel[k];
831 symbol[j]=Cixel[k];
833 symbol[j]='\0';
834 (void) CopyMagickString(buffer,symbol,MagickPathExtent);
893 symbol[MagickPathExten
622 symbol[MagickPathExtent]; local
885 symbol[MagickPathExtent]; local
[all...]
/external/autotest/client/bin/net/
H A Dnet_utils_mock.py17 def __init__(self, symbol, **kwargs):
18 mock.mock_function.__init__(self, symbol, *kwargs)
/external/autotest/server/site_tests/security_kASLR/
H A Dsecurity_kASLR.py45 symbol addresses into a returned hash.
51 addr, symtype, symbol = line.strip().split(' ', 2)
55 symbols.setdefault(symbol, addr)
90 "The '%s' symbol is missing!?" % (self.target_symbol)
/external/skia/fuzz/
H A DFuzzParsePath.cpp83 char symbol = legal.fSymbol | (b ? 0x20 : 0); local
84 atom.append(&symbol, 1);
/external/swiftshader/third_party/LLVM/tools/lto/
H A Dlto.cpp162 // returns the name of the ith symbol in the object module
171 // returns the attributes of the ith symbol in the object module
265 void lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol) argument
267 cg->addMustPreserveSymbol(symbol);
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dtransport_feedback_adapter.cc98 for (auto symbol : feedback.GetStatusVector()) {
99 if (symbol != rtcp::TransportFeedback::StatusSymbol::kNotReceived) {
/external/kmod/libkmod/
H A Dlibkmod-module.c522 * modules.dep index; 3. symbol aliases in modules.symbols index; 4. aliases
807 * KMOD_INSERT_FORCE_MODVERSION: ignore symbol version hashes.
1201 * KMOD_PROBE_FORCE_MODVERSION: ignore symbol version hashes;
2376 char symbol[]; member in struct:kmod_module_version
2379 static struct kmod_module_version *kmod_module_versions_new(uint64_t crc, const char *symbol) argument
2382 size_t symbollen = strlen(symbol) + 1;
2389 memcpy(mv->symbol, symbol, symbollen);
2435 mv = kmod_module_versions_new(versions[i].crc, versions[i].symbol);
2465 * Get the symbol o
2517 char symbol[]; member in struct:kmod_module_symbol
2520 kmod_module_symbols_new(uint64_t crc, const char *symbol) argument
2534 kmod_module_symbol_free(struct kmod_module_symbol *symbol) argument
2613 struct kmod_module_symbol *symbol; local
2633 struct kmod_module_symbol *symbol; local
2659 char symbol[]; member in struct:kmod_module_dependency_symbol
2662 kmod_module_dependency_symbols_new(uint64_t crc, uint8_t bind, const char *symbol) argument
[all...]
/external/clang/tools/scan-build-py/libear/
H A D__init__.py191 def check_symbol_exists(self, symbol, include, name):
194 source = template.replace('INCLUDE', include).replace("SYMBOL", symbol)
196 logging.debug('Checking symbol %s', symbol)
198 logging.debug('Checking symbol %s -- %s', symbol,
/external/curl/packages/vms/
H A Dreport_openssl_version.c8 * It will optionally place that version string in a DCL symbol.
39 const struct dsc$descriptor_s * symbol,
76 /* Was a symbol argument given? */

Completed in 2338 milliseconds

1234567891011>>