/external/lzma/Java/SevenZip/Compression/LZMA/ |
Decoder.java | 42 int symbol = Base.kNumLowLenSymbols;
local 44 symbol += m_MidCoder[posState].Decode(rangeDecoder);
46 symbol += Base.kNumMidLenSymbols + m_HighCoder.Decode(rangeDecoder);
47 return symbol;
64 int symbol = 1;
local 66 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol);
67 while (symbol < 0x100);
68 return (byte)symbol;
73 int symbol = 1; local [all...] |
/external/mksh/src/ |
syn.c | 72 static bool reject; /* token(cf) gets symbol again */ 73 static int symbol; /* yylex value */ variable 78 #define token(cf) ((reject) ? (ACCEPT, symbol) : (symbol = yylex(cf))) 79 #define tpeek(cf) ((reject) ? (symbol) : (REJECT, symbol = yylex(cf))) 340 if (symbol != /*(*/ ')') 622 if (symbol != endtok) { 624 symbol == '}' ? Tcbrace : Tesac, ATEMP); 644 switch (symbol) { [all...] |
/external/v8/src/ |
dateparser.h | 188 char symbol() { function in struct:v8::internal::DateParser::DateToken 192 bool IsSymbol(char symbol) { 193 return IsSymbol() && this->symbol() == symbol; 221 static DateToken Symbol(char symbol) { 222 return DateToken(kSymbolTag, 1, symbol); 271 bool SkipSymbol(char symbol) { 272 if (next_.IsSymbol(symbol)) {
|
/frameworks/compile/mclinker/lib/LD/ |
ELFReader.cpp | 84 // skip the first NULL symbol 139 // Section symbol's st_name is the section index. 175 // 2. easy to know if a symbol is from .so 178 // sort symbols by symbol value and then weak before strong 181 // for each weak symbol, find out all its aliases, and 238 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); local 239 if (NULL == symbol) { 243 IRBuilder::AddRelocation(pSection, r_type, *symbol, r_offset, r_addend); 273 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); local 274 if (NULL == symbol) { 794 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); local 829 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); local [all...] |
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonLDBackend.cpp | 344 // define symbol _GLOBAL_OFFSET_TABLE_ 500 // Define the symbol _GLOBAL_OFFSET_TABLE_ if there is a symbol with the 590 LDSymbol* symbol = relocation->symInfo()->outSymbol(); local 591 if (symbol->hasFragRef()) { 592 uint64_t value = symbol->fragRef()->getOutputOffset(); 594 symbol->fragRef()->frag()->getParent()->getSection().addr(); 598 sym_value, //symbol value 653 /// finalizeSymbol - finalize the symbol value 781 // We have to reset the description of the symbol here. When doin [all...] |
/frameworks/native/libs/input/ |
KeyCharacterMap.cpp | 1032 char16_t symbol = 0; local [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-flow.h | 66 /* Hashtable holding definition for symbol. If this field is not NULL, it 839 tree symbol, base, index, step, offset; member in struct:mem_address
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-flow.h | 66 /* Hashtable holding definition for symbol. If this field is not NULL, it 839 tree symbol, base, index, step, offset; member in struct:mem_address
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-flow.h | 66 /* Hashtable holding definition for symbol. If this field is not NULL, it 839 tree symbol, base, index, step, offset; member in struct:mem_address
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-flow.h | 66 /* Hashtable holding definition for symbol. If this field is not NULL, it 839 tree symbol, base, index, step, offset; member in struct:mem_address
|
/system/core/debuggerd/ |
tombstone.c | 259 const symbol_t* symbol; local 260 find_symbol_ptrace(context, stack_content, &mi, &symbol); 262 if (symbol) { 263 char* demangled_name = demangle_symbol_name(symbol->name); 264 const char* symbol_name = demangled_name ? demangled_name : symbol->name; 265 uint32_t offset = stack_content - (mi->start + symbol->start);
|
/art/runtime/ |
utils.cc | 1000 static const char* CleanMapName(const backtrace_symbol_t* symbol) { 1001 const char* map_name = symbol->map_name; 1014 static void FindSymbolInElf(const backtrace_frame_t* frame, const backtrace_symbol_t* symbol, 1017 if (symbol->map_name != NULL) { 1018 symbol_table = load_symbol_table(symbol->map_name); 1023 elf_symbol = find_symbol(symbol_table, symbol->relative_pc); 1038 pc_offset = (was_relative ? symbol->relative_pc : frame->absolute_pc) - elf_symbol->start; 1066 const backtrace_symbol_t* symbol = &backtrace_symbols[i]; local 1073 if (symbol->demangled_name != NULL) { 1074 symbol_name = symbol->demangled_name [all...] |
/external/chromium_org/third_party/angle/src/compiler/ |
ParseContext.cpp | 311 const char* symbol = 0; local 313 symbol = symNode->getSymbol().c_str(); 361 extraInfoStream << "\"" << symbol << "\" (" << message << ")"; 425 // of scope. Except, if the symbol table is at the built-in push-level, 730 // without a size, and make the right changes to the symbol table. 739 // Don't check for reserved word use until after we know it's not in the symbol table, 745 TSymbol* symbol = symbolTable.find(identifier, &builtIn, &sameScope); local 746 if (symbol == 0 || !sameScope) { 757 error(line, "INTERNAL ERROR inserting new symbol", identifier.c_str()); 761 if (! symbol->isVariable()) 924 const TSymbol* symbol = symbolTable.find(call->getName(), builtIn); local 1000 const TSymbol* symbol = symbolTable.find(initializer->getAsSymbolNode()->getSymbol()); local [all...] |
glslang_tab.h | 55 /* Put the tokens into the symbol table, so that GDB and other debuggers 166 TSymbol* symbol; member in struct:YYSTYPE::__anon13787
|
/external/chromium_org/third_party/codesighs/ |
maptsvdifftool.c | 65 ** mNegation Perform negation heuristics on the symbol drifts. 99 static Switch gZeroDriftSwitch = {"--zerodrift", "-z", 0, NULL, "Output zero drift data." DESC_NEWLINE "Reports symbol changes even when there is no net drift."}; 100 static Switch gNegationSwitch = {"--negation", "-n", 0, NULL, "Use negation heuristics." DESC_NEWLINE "When symbol sizes are inferred by offset, order changes cause noise." DESC_NEWLINE "This helps see through the noise by eliminating equal and opposite drifts."}; 152 ** Symbol level stats. 394 char* symbol = NULL; local 421 symbol = strrchr(theLine, '\t') + 1; 446 ** the symbol 567 if(0 == strcmp(symbol, theObject->mSymbols[symbolIndex].mSymbol)) 585 theObject->mSymbols[symbolIndex].mSymbol = strdup(symbol); 589 ERROR_REPORT(retval, symbol, "Unable to duplicate string.") [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cnumtst.c | 150 UChar symbol[20]; local 610 symbol[0] = (UChar)(0x41 + i); 611 symbol[1] = (UChar)(0x61 + i); 612 unum_setSymbol(cur_frpattern, (UNumberFormatSymbol)i, symbol, 2, &status); 619 resultlength = unum_getSymbol(cur_frpattern, (UNumberFormatSymbol)i, symbol, sizeof(symbol)/U_SIZEOF_UCHAR, &status); 624 if(resultlength != 2 || symbol[0] != 0x41 + i || symbol[1] != 0x61 + i) { 625 log_err("Failure in unum_getSymbol(%d): got unexpected symbol\n", i); 628 /*try getting from a bogus symbol*/ [all...] |
/external/chromium_org/third_party/libwebp/enc/ |
vp8l.c | 248 // This sequence is tuned from that, but more weighted for lower symbol count, 400 VP8LWriteBits(bw, 1, 0); // Code bit for small (1 bit) symbol value. 419 const int symbol = code->codes[code_index]; local 420 VP8LWriteBits(bw, depth, symbol); 479 const uint16_t histogram_symbols[1] = { 0 }; // only one tree, one symbol [all...] |
/external/chromium_org/third_party/lzma_sdk/ |
LzmaDec.c | 118 /* First LZMA-symbol is always decoded. 163 unsigned symbol; local 173 symbol = 1; 174 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100); 181 symbol = 1; 188 probLit = prob + offs + bit + symbol; 189 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit) 191 while (symbol < 0x100) 517 unsigned symbol = 1; local 525 unsigned symbol = 1; local [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_reader.cpp | 323 s_symbol *symbol = SX_AS_SYMBOL(expr); local 324 if (symbol != NULL) { 325 if (strcmp(symbol->value(), "break") == 0 && loop_ctx != NULL) 327 if (strcmp(symbol->value(), "continue") == 0 && loop_ctx != NULL) 424 // Add the variable to the symbol table
|
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
LzmaDec.c | 119 /* First LZMA-symbol is always decoded. 164 unsigned symbol; local 174 symbol = 1; 175 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100); 182 symbol = 1; 189 probLit = prob + offs + bit + symbol; 190 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit) 192 while (symbol < 0x100) 518 unsigned symbol = 1; local 526 unsigned symbol = 1; local [all...] |
/external/javassist/src/main/javassist/compiler/ |
Parser.java | 62 d.setVariable(new Symbol(name)); 212 d.setVariable(new Symbol(name)); 251 return Stmnt.make(LABEL, new Symbol(label), parseStatement(tbl)); 542 s.setLeft(new Symbol(lex.getString())); 638 Symbol symbol = new Symbol(name); local 646 Declarator decl = d.make(symbol, dim, init); 985 list = ASTList.append(list, new Symbol(lex.getString())); [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
TemplateTranslator.java | 33 import static com.google.clearsilver.jsilver.compiler.JavaExpression.symbol; 91 public static final JavaExpression DATA = symbol(Type.DATA, "data"); 93 public static final JavaExpression CONTEXT = symbol("context"); 95 public static final JavaExpression DATA_CONTEXT = symbol(Type.DATA_CONTEXT, "dataContext"); 96 public static final JavaExpression NULL = symbol("null"); 99 public static final JavaExpression TEMPLATE_LOADER = symbol("getTemplateLoader()"); 100 public static final JavaExpression THIS_TEMPLATE = symbol("this"); 130 JavaExpression symbol; field in class:TemplateTranslator.MacroInfo 155 * @param symbol static variable name of the macro definition. 158 private void addMacro(String name, JavaExpression symbol, ADefCommand defNode) [all...] |
/external/linux-tools-perf/util/ |
parse-events.c | 16 #include "symbol.h" 24 const char *symbol; member in struct:event_symbol 660 n = strlen(event_symbols[i].symbol); 661 if (!strncasecmp(str, event_symbols[i].symbol, n)) 1002 syms->symbol, syms->alias); 1004 snprintf(name, sizeof(name), "%s", syms->symbol); 1061 !(strglobmatch(syms->symbol, event_glob) || 1066 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias); 1068 strncpy(name, syms->symbol, MAX_NAME_LEN);
|
/external/lzma/C/ |
LzmaDec.c | 118 /* First LZMA-symbol is always decoded.
163 unsigned symbol;
local 173 symbol = 1;
174 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100);
181 symbol = 1;
188 probLit = prob + offs + bit + symbol;
189 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
191 while (symbol < 0x100); 517 unsigned symbol = 1; local 525 unsigned symbol = 1; local [all...] |
/external/mesa3d/src/glsl/ |
ir_reader.cpp | 323 s_symbol *symbol = SX_AS_SYMBOL(expr); local 324 if (symbol != NULL) { 325 if (strcmp(symbol->value(), "break") == 0 && loop_ctx != NULL) 327 if (strcmp(symbol->value(), "continue") == 0 && loop_ctx != NULL) 424 // Add the variable to the symbol table
|