Searched defs:symbol (Results 226 - 246 of 246) sorted by relevance

12345678910

/external/lzma/C/
H A DLzmaEnc.c552 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol) argument
556 if (symbol == 0)
575 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) argument
577 symbol |= 0x100;
580 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
581 symbol <<= 1;
583 while (symbol < 0x10000);
586 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
589 symbol |
636 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) argument
649 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
666 RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
680 RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
693 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
705 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
733 LenEnc_Encode(CLenEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState) argument
792 LenEnc_Encode2(CLenPriceEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState, Bool updatePrice, UInt32 *ProbPrices) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc341 // Find symbols. This returns a null Symbol (symbol.IsNull() is true)
366 bool AddSymbol(const string& full_name, Symbol symbol);
439 // Find symbols. These return a null Symbol (symbol.IsNull() is true)
465 Symbol symbol);
638 const string& full_name, Symbol symbol) {
639 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) {
648 const void* parent, const string& name, Symbol symbol) {
650 return InsertIfNotPresent(&symbols_by_parent_, by_parent_key, symbol);
1252 // symbol we're looking for. Some DescriptorDatabases return false
1861 // If LookupSymbol() finds a symbol tha
637 AddSymbol( const string& full_name, Symbol symbol) argument
647 AddAliasUnderParent( const void* parent, const string& name, Symbol symbol) argument
2516 AddSymbol( const string& full_name, const void* parent, const string& name, const Message& proto, Symbol symbol) argument
3883 Symbol symbol = builder_->FindSymbolNotEnforcingDeps( local
3918 Symbol symbol = builder_->LookupSymbol(name_part, local
4266 Symbol symbol = local
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c163 struct symbol { struct
164 const char *name; /* Name of the symbol */
165 int index; /* Index number for this symbol */
168 struct symbol *fallback; /* fallback token in case this token doesn't parse */
171 char *firstset; /* First-set for all rules of this symbol */
174 char *destructor; /* Code which executes whenever this symbol is
184 struct symbol **subsym; /* Array of constituent symbols */
190 struct symbol *lhs; /* Left-hand side of the rule */
192 int lhsStart; /* True if left-hand side is the start symbol */
195 struct symbol **rh
[all...]
/external/chromium_org/v8/src/
H A Dgdb-jit.cc813 // Convert symbol names from strings to indexes in the string table.
850 // String table for this symbol table should follow it in the section table.
865 void Add(const ELFSymbol& symbol, Zone* zone) { argument
866 if (symbol.binding() == ELFSymbol::BIND_LOCAL) {
867 locals_.Add(symbol, zone);
869 globals_.Add(symbol, zone);
876 // We are assuming that string table will follow symbol table.
H A Dapi.cc2729 "Could not convert to symbol");
6175 i::Handle<i::Object> symbol = local
6177 if (!symbol->IsSymbol()) {
6178 DCHECK(symbol->IsUndefined());
6179 symbol = isolate->factory()->NewSymbol();
6180 i::Handle<i::Symbol>::cast(symbol)->set_name(*name);
6181 i::JSObject::SetProperty(symbols, name, symbol, i::STRICT).Assert();
6183 return i::Handle<i::Symbol>::cast(symbol);
6226 i::Handle<i::Symbol> symbol = i_isolate->factory()->NewPrivateSymbol(); local
6227 if (!name.IsEmpty()) symbol
6241 i::Handle<i::Object> symbol = local
[all...]
H A Dobjects.cc1321 os << "{symbol " << static_cast<void*>(name) << "}";
1365 PrintF(file, "{symbol %p}", static_cast<void*>(name));
1473 Symbol* symbol = Symbol::cast(this); local
1474 os << "<Symbol: " << symbol->Hash();
1475 if (!symbol->name()->IsUndefined()) {
1479 String::cast(symbol->name())->StringShortPrint(&accumulator);
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp738 /*ensure at least two present symbols. There should be at least one symbol
742 symbol, it'd give it the theoritical 0 bits but in practice zlib wants 1 bit*/
762 For every symbol, maxbitlen coins will be created*/
816 /*calculate the lenghts of each symbol, as the amount of times a coin of each symbol is used*/
833 /*Create the Huffman tree given the symbol frequencies*/
910 decode the symbol from the tree. The "readBitFromStream" code is inlined in
915 if(ct < codetree->numcodes) return ct; /*the symbol is decoded, return it*/
916 else treepos = ct - codetree->numcodes; /*symbol not yet decoded, instead move tree position*/
987 /*i is the current symbol w
1748 unsigned symbol = lz77_encoded.data[i]; local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc2824 v8::Symbol::New(isolate, v8_str("my-symbol"));
2830 // Check basic symbol functionality.
2844 CHECK(sym2->Name()->Equals(v8_str("my-symbol")));
2861 // Make sure delete of a non-existent symbol property works.
2952 // Make sure delete of a non-existent private symbol property works.
3002 v8::Local<String> name = v8_str("my-symbol");
3015 CompileRun("var sym2 = Symbol.for('my-symbol')");
3028 v8::Local<v8::Symbol> symbol = getter(isolate); local
3034 CHECK(!symbol.IsEmpty());
3035 CHECK(value->SameValue(symbol));
13992 InsertSymbolAt(i::Address addr, SymbolInfo* symbol) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.sat4j.core_2.2.0.v20100429.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/libxml/src/
H A Dtestapi.c29702 char * name; /* the name of the symbol */
29704 void ** symbol; /* the resulting symbol address */ local
29713 symbol = gen_void_ptr_ptr(n_symbol, 2);
29715 ret_val = xmlModuleSymbol(module, (const char *)name, symbol);
29720 des_void_ptr_ptr(n_symbol, symbol, 2);
[all...]
/external/valgrind/main/perf/
H A Dtinycc.c141 /* Type of symbol indices. */
334 #define SHN_ABS 0xfff1 /* Associated symbol is absolute */
335 #define SHN_COMMON 0xfff2 /* Associated symbol is common */
351 #define SHT_DYNSYM 11 /* Dynamic linker symbol table */
359 #define SHT_GNU_versym 0x6fffffff /* Version symbol table. */
397 every dynamic symbol. */
401 Elf32_Half si_boundto; /* Direct bindings, symbol bound to */
402 Elf32_Half si_flags; /* Per symbol flags */
407 Elf64_Half si_boundto; /* Direct bindings, symbol bound to */
408 Elf64_Half si_flags; /* Per symbol flag
6613 resolve_sym(TCCState *s1, const char *symbol, int type) argument
18349 put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol) argument
[all...]
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 3470 milliseconds

12345678910