Searched defs:symbol (Results 1 - 25 of 246) sorted by last modified time

12345678910

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zlib/src/contrib/blast/
H A Dblast.c95 * symbol[] are the symbol values in canonical order, where the number of
101 short *symbol; /* canonically ordered symbols */ member in struct:huffman
105 * Decode a code from the stream s using huffman table h. Return the symbol or
131 int index; /* index of first code of length len in symbol table */
146 if (code < first + count) { /* if length len, return symbol */
149 return h->symbol[index + (code - first)];
183 * enough bits will resolve to a symbol. If the return value is positive, then
189 int symbol; /* current symbol whe local
282 int symbol; /* decoded symbol, extra bits for distance */ local
[all...]
/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/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/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/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/webp/src/dec/
H A Dvp8l.c186 int symbol; local
209 symbol = 0;
210 while (symbol < num_symbols) {
216 code_lengths[symbol++] = code_len;
224 if (symbol + repeat > num_symbols) {
229 while (repeat-- > 0) code_lengths[symbol++] = length;
715 // When the Huffman tree contains only one symbol, we can skip the
/external/webp/src/enc/
H A Dvp8l.c261 // This sequence is tuned from that, but more weighted for lower symbol count,
408 VP8LWriteBits(bw, 1, 0); // Code bit for small (1 bit) symbol value.
426 const int symbol = code->codes[code_index]; local
427 VP8LWriteBits(bw, depth, symbol);
493 const uint16_t histogram_symbols[1] = { 0 }; // only one tree, one symbol
/external/webp/src/utils/
H A Dhuffman.c113 int symbol; local
125 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
126 if (code_lengths[symbol] > max_code_length) {
127 max_code_length = code_lengths[symbol];
133 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
134 ++code_length_hist[code_lengths[symbol]];
188 TreeAddSymbol(HuffmanTree* const tree, int symbol, int code, int code_length) argument
235 int symbol; local
[all...]
H A Dhuffman_encode.c22 // Util function to optimize the symbol map for RLE coding
50 uint32_t symbol = counts[0]; local
53 if (i == length || counts[i] != symbol) {
54 if ((symbol == 0 && stride >= 5) ||
55 (symbol != 0 && stride >= 7)) {
63 symbol = counts[i];
150 // bit_depths[]: how many bits are used for the symbol.
375 // 0 bit-depth means that the symbol does not exist.
388 depth_count[0] = 0; // ignore unused symbol
/external/valgrind/main/VEX/unused/
H A Dlinker.c77 /* An array containing ptrs to all the symbol names copied from
78 this object into the global symbol hash table. This is so that
303 * lookup a symbol in the global symbol table
424 char *symbol = NULL; local
453 /* First see if it is a local symbol. */
455 /* Yes, so we can get the address directly from the ELF symbol
457 symbol = sym.st_name==0 ? "(noname)" : strtab+sym.st_name;
464 symbol = strtab + sym.st_name;
465 S = (Elf_Addr)lookupSymbol( symbol );
550 char *symbol; local
[all...]
/external/valgrind/main/coregrind/
H A Dm_redir.c74 (shared object symbol table, basically) appears. Appearance of new
86 pattern, function name pattern) pair which is encoded in the symbol
118 from reading symbol tables of the currently loaded objects.
120 Active is a pure function of Specs and the current symbol table
224 If ld.so does not have a visible 'strlen' symbol, Memcheck
285 TopSpec* parent_sym; /* the TopSpec which supplied the symbol */
314 HChar* symbol, Addr addr );
333 /* Copy all the names from a given symbol into an AR_DINFO allocated,
495 /* scan this DebugInfo's symbol table, pulling out and demangling
505 /* Set up to conveniently iterate over all names for this symbol
1465 handle_maybe_load_notifier( const HChar* soname, HChar* symbol, Addr addr ) argument
[all...]
/external/stlport/stlport/stl/
H A D_monetary.h42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
/external/strace/
H A Ddefs.h399 const char *symbol; member in struct:ioctlent
/external/srec/srec/Semproc/src/
H A DSymbolTable.c71 /* delete the symbol table */
81 Symbol* symbol; local
95 CHKLOG(rc, ST_getSymbolSlot(self, &symbol));
99 LSTRCPY(symbol->key, key);
102 CHKLOG(rc, HashMapPut(self->hashmap, symbol->key, symbol->value));
105 buf = symbol->value;
/external/srec/tools/grxmlcompile/
H A Dfst-io.h81 string symbol = syms->Find(id); local
82 if (symbol == "") {
84 << " is not mapped to any textual symbol"
85 << ", symbol table = " << syms->Name()
89 *ostrm_ << symbol; local
138 const SymbolTable *isyms_; // ilabel symbol table
139 const SymbolTable *osyms_; // olabel symbol table
140 const SymbolTable *ssyms_; // slabel symbol table
298 << ", symbol table = " << syms->Name()
354 const SymbolTable *isyms_; // ilabel symbol tabl
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dsymbol-table.cpp0 // symbol-table.cc
17 // Classes to provide symbol-to-integer and integer-to-symbol mappings.
19 #include "fst/lib/symbol-table.h"
25 "Require symbol tables to match when appropriate");
32 // Identifies stream data as a symbol table (and its endianity)
38 LOG(ERROR) << "SymbolTable::ReadText: Can't open symbol file: "
58 const char *symbol = col[0]; local
68 impl->AddSymbol(symbol, key);
82 int64 SymbolTableImpl::AddSymbol(const string& symbol, int6 argument
116 string symbol; local
135 const string symbol = symbols_[i]; local
[all...]
H A Dsymbol-table.h0 // symbol-table.h
17 // Classes to provide symbol-to-integer and integer-to-symbol mappings.
47 int64 AddSymbol(const string& symbol, int64 key);
49 int64 AddSymbol(const string& symbol) { argument
50 int64 key = Find(symbol);
51 return (key == -1) ? AddSymbol(symbol, available_key_++) : key;
81 // Return the key associated with the symbol. If the symbol
83 int64 Find(const string& symbol) cons
187 AddSymbol(const string& symbol, int64 key) argument
196 AddSymbol(const string& symbol) argument
[all...]
/external/skia/tools/
H A DCrashHandler.cpp140 // Buffer to store symbol name in.
146 IMAGEHLP_SYMBOL64* symbol = reinterpret_cast<IMAGEHLP_SYMBOL64*>(&buffer); local
147 symbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL64);
148 symbol->MaxNameLength = kMaxNameLength - 1;
150 // Translate the current PC into a symbol and byte offset from the symbol.
152 SymGetSymFromAddr64(hProcess, frame.AddrPC.Offset, &offset, symbol);
154 SkDebugf("%s +%x\n", symbol->Name, offset);
/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/qemu/android/
H A Dopengles.c92 void* symbol; local
96 symbol = adynamicLibrary_findSymbol(rendererLib, #name, &error); \
97 if (symbol != NULL) { \
98 name = symbol; \
100 derror("GLES emulation: Could not find required symbol (%s): %s", #name, error); \
/external/qemu/
H A Ddisas.c391 /* Look up symbol for debugging purpose. Returns "" if unknown. */
394 const char *symbol = ""; local
398 symbol = s->lookup_symbol(s, orig_addr);
399 if (symbol[0] != '\0') {
404 return symbol;
/external/qemu/distrib/jpeg-6b/
H A Djcphuff.c276 * Emit (or just count) a Huffman symbol.
281 emit_symbol (phuff_entropy_ptr entropy, int tbl_no, int symbol) argument
284 entropy->count_ptrs[tbl_no][symbol]++;
287 emit_bits(entropy, tbl->ehufco[symbol], tbl->ehufsi[symbol]);
312 * Emit any pending EOBRUN symbol.
432 /* Count/emit the Huffman-coded symbol for the number of bits */
531 /* Count/emit Huffman symbol for run length / number of bits */
699 /* Count/emit Huffman symbol for run length / number of bits */
776 /* Flush out buffered data (all we care about is counting the EOB symbol) */
[all...]
/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/qemu/distrib/sdl-1.2.15/src/loadso/macos/
H A DSDL_sysloadso.c79 void *symbol = NULL; local
87 (char **)&symbol, &class) != noErr ) {
91 if ( symbol == NULL ) {
94 return(symbol);

Completed in 2016 milliseconds

12345678910