/external/zlib/src/contrib/puff/ |
D | puff.c | 208 short *symbol; /* canonically ordered symbols */ member 248 return h->symbol[index + (code - first)]; in decode() 287 return h->symbol[index + (code - first)]; in decode() 342 int symbol; /* current symbol when stepping through length[] */ in construct() local 350 for (symbol = 0; symbol < n; symbol++) in construct() 351 (h->count[length[symbol]])++; /* assumes lengths are within bounds */ in construct() 373 for (symbol = 0; symbol < n; symbol++) in construct() 374 if (length[symbol] != 0) in construct() 375 h->symbol[offs[length[symbol]]++] = symbol; in construct() 440 int symbol; /* decoded symbol */ in codes() local [all …]
|
/external/bison/src/ |
D | symtab.h | 52 typedef struct symbol symbol; typedef 56 struct symbol struct 98 symbol *alias; argument 116 void symbol_print (symbol *s, FILE *f); 119 symbol *symbol_from_uniqstr (const uniqstr key, location loc); 122 symbol *symbol_get (const char *key, location loc); 127 symbol *dummy_symbol_get (location loc); 130 bool symbol_is_dummy (const symbol *sym); 136 void symbol_make_alias (symbol *sym, symbol *str, location loc); 141 void symbol_type_set (symbol *sym, uniqstr type_name, location loc); [all …]
|
D | symtab.c | 35 static symbol **symbols_sorted = NULL; 41 symbol *errtoken = NULL; 42 symbol *undeftoken = NULL; 43 symbol *endtoken = NULL; 44 symbol *accept = NULL; 45 symbol *startsymbol = NULL; 61 static symbol * 64 symbol *res = xmalloc (sizeof *res); in symbol_new() 128 symbol_print (symbol *s, FILE *f) in symbol_print() 150 symbol_redeclaration (symbol *s, const char *what, location first, in symbol_redeclaration() [all …]
|
/external/webp/src/utils/ |
D | huffman.c | 113 int symbol; in VP8LHuffmanCodeLengthsToCodes() local 125 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes() 126 if (code_lengths[symbol] > max_code_length) { in VP8LHuffmanCodeLengthsToCodes() 127 max_code_length = code_lengths[symbol]; in VP8LHuffmanCodeLengthsToCodes() 133 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes() 134 ++code_length_hist[code_lengths[symbol]]; in VP8LHuffmanCodeLengthsToCodes() 149 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes() 150 if (code_lengths[symbol] > 0) { in VP8LHuffmanCodeLengthsToCodes() 151 huff_codes[symbol] = next_codes[code_lengths[symbol]]++; in VP8LHuffmanCodeLengthsToCodes() 153 huff_codes[symbol] = NON_EXISTENT_SYMBOL; in VP8LHuffmanCodeLengthsToCodes() [all …]
|
/external/chromium_org/third_party/libwebp/utils/ |
D | huffman.c | 113 int symbol; in VP8LHuffmanCodeLengthsToCodes() local 125 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes() 126 if (code_lengths[symbol] > max_code_length) { in VP8LHuffmanCodeLengthsToCodes() 127 max_code_length = code_lengths[symbol]; in VP8LHuffmanCodeLengthsToCodes() 133 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes() 134 ++code_length_hist[code_lengths[symbol]]; in VP8LHuffmanCodeLengthsToCodes() 149 for (symbol = 0; symbol < code_lengths_size; ++symbol) { in VP8LHuffmanCodeLengthsToCodes() 150 if (code_lengths[symbol] > 0) { in VP8LHuffmanCodeLengthsToCodes() 151 huff_codes[symbol] = next_codes[code_lengths[symbol]]++; in VP8LHuffmanCodeLengthsToCodes() 153 huff_codes[symbol] = NON_EXISTENT_SYMBOL; in VP8LHuffmanCodeLengthsToCodes() [all …]
|
/external/lzma/CS/7zip/Compress/RangeCoder/ |
D | RangeCoderBitTree.cs | 22 public void Encode(Encoder rangeEncoder, UInt32 symbol) in Encode() 28 UInt32 bit = (symbol >> bitIndex) & 1; in Encode() 34 public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol) in ReverseEncode() 39 UInt32 bit = symbol & 1; in ReverseEncode() 42 symbol >>= 1; in ReverseEncode() 46 public UInt32 GetPrice(UInt32 symbol) in GetPrice() 53 UInt32 bit = (symbol >> bitIndex) & 1; in GetPrice() 60 public UInt32 ReverseGetPrice(UInt32 symbol) in ReverseGetPrice() 66 UInt32 bit = symbol & 1; in ReverseGetPrice() 67 symbol >>= 1; in ReverseGetPrice() [all …]
|
/external/elfutils/0.153/libebl/ |
D | eblsymboltypename.c | 60 ebl_symbol_type_name (ebl, symbol, buf, len) in ebl_symbol_type_name() argument 62 int symbol; 68 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL; 83 if (symbol < STT_NUM) 84 res = stt_names[symbol]; 89 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC) 90 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC); 91 else if (symbol == STT_GNU_IFUNC 95 else if (symbol >= STT_LOOS && symbol <= STT_HIOS) 96 snprintf (buf, len, "LOOS+%d", symbol - STT_LOOS); [all …]
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
D | ValidateLimitations.cpp | 34 virtual void visitSymbol(TIntermSymbol *symbol) in visitSymbol() argument 40 mValid = (symbol->getQualifier() == EvqConst) || in visitSymbol() 41 (mLoopStack.findLoop(symbol)); in visitSymbol() 218 bool ValidateLimitations::isLoopIndex(TIntermSymbol *symbol) in isLoopIndex() argument 220 return mLoopStack.findLoop(symbol) != NULL; in isLoopIndex() 287 TIntermSymbol *symbol = declInit->getLeft()->getAsSymbolNode(); in validateForLoopInit() local 288 if (symbol == NULL) in validateForLoopInit() 294 TBasicType type = symbol->getBasicType(); in validateForLoopInit() 296 error(symbol->getLine(), in validateForLoopInit() 305 symbol->getSymbol().c_str()); in validateForLoopInit() [all …]
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
D | BitTreeEncoder.java | 20 public void Encode(Encoder rangeEncoder, int symbol) throws IOException in Encode() argument 26 int bit = (symbol >>> bitIndex) & 1; in Encode() 32 public void ReverseEncode(Encoder rangeEncoder, int symbol) throws IOException in ReverseEncode() argument 37 int bit = symbol & 1; in ReverseEncode() 40 symbol >>= 1; in ReverseEncode() 44 public int GetPrice(int symbol) in GetPrice() argument 51 int bit = (symbol >>> bitIndex) & 1; in GetPrice() 58 public int ReverseGetPrice(int symbol) in ReverseGetPrice() argument 64 int bit = symbol & 1; in ReverseGetPrice() 65 symbol >>>= 1; in ReverseGetPrice() [all …]
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
D | proxies-symbols.js | 48 var symbol = Symbol("secret") 50 assertFalse(symbol in p) 51 assertFalse(symbol in o) 52 assertEquals(undefined, p[symbol]) 53 assertEquals(undefined, o[symbol]) 54 assertEquals(47, p[symbol] = 47) 55 assertEquals(47, o[symbol] = 47) 56 assertFalse(delete p[symbol]) 57 assertTrue(delete o[symbol]) 58 assertTrue(delete o[symbol]) [all …]
|
/external/llvm/test/MC/Mips/ |
D | mips-expansions.s | 20 # CHECK: lui $10, %hi(symbol) # encoding: [A,A,0x0a,0x3c] 21 # CHECK: # fixup A - offset: 0, value: symbol@ABS_HI, kind: fixup… 23 # CHECK: lw $10, %lo(symbol)($10) # encoding: [A,A,0x4a,0x8d] 24 # CHECK: # fixup A - offset: 0, value: symbol@ABS_LO, kind: fixup… 25 # CHECK: lui $1, %hi(symbol) # encoding: [A,A,0x01,0x3c] 26 # CHECK: # fixup A - offset: 0, value: symbol@ABS_HI, kind: fixup… 28 # CHECK: sw $10, %lo(symbol)($1) # encoding: [A,A,0x2a,0xac] 29 # CHECK: # fixup A - offset: 0, value: symbol@ABS_LO, kind: fixup… 37 # CHECK: lui $1, %hi(symbol) 38 # CHECK: ldc1 $f0, %lo(symbol)($1) [all …]
|
/external/zlib/src/contrib/blast/ |
D | blast.c | 101 short *symbol; /* canonically ordered symbols */ member 149 return h->symbol[index + (code - first)]; in decode() 189 int symbol; /* current symbol when stepping through length[] */ in construct() local 196 symbol = 0; in construct() 202 length[symbol++] = len; in construct() 205 n = symbol; in construct() 210 for (symbol = 0; symbol < n; symbol++) in construct() 211 (h->count[length[symbol]])++; /* assumes lengths are within bounds */ in construct() 232 for (symbol = 0; symbol < n; symbol++) in construct() 233 if (length[symbol] != 0) in construct() [all …]
|
/external/libpng/scripts/ |
D | checksym.awk | 19 symbol[1] = "" # defined symbols from png.h 93 if (symbol[o] == "" || symbol[o] == $1) { 94 symbol[o] = $1 97 print "png.h: duplicated symbol", o ": '" symbol[o] "' != '" $1 "'" 127 if (symbol[o] == "" && removed[o] == "") { 150 if (symbol[o] != "" && removed[o] != "") { 151 … print "png.h: symbol", o, "both exported as '" symbol[o] "' and removed as '" removed[o] "'" 153 } else if (symbol[o] != official[o]) { 156 if (symbol[o] == "") 159 print "png.h: exported symbol", o, "'" symbol[o] "' not present in", master [all …]
|
/external/oprofile/libpp/ |
D | symbol_container.cpp | 32 symbol_entry * symbol = const_cast<symbol_entry*>(&*p.first); in insert() local 33 symbol->sample.counts += symb.sample.counts; in insert() 45 symbol_entry symbol; in find() local 46 symbol.sample.file_loc.filename = filename; in find() 47 symbol.sample.file_loc.linenr = linenr; in find() 52 pair<it, it> p_it = symbols_by_loc.equal_range(&symbol); in find() 65 symbol_entry symbol; in find() local 66 symbol.sample.file_loc.filename = filename; in find() 67 symbol.sample.file_loc.linenr = 0; in find() 70 it first = symbols_by_loc.lower_bound(&symbol); in find() [all …]
|
/external/chromium_org/native_client_sdk/src/libraries/xray/ |
D | symtable.c | 57 const char* XRaySymbolGetName(struct XRaySymbol* symbol) { in XRaySymbolGetName() argument 58 return (NULL == symbol) ? "(null)" : symbol->name; in XRaySymbolGetName() 65 struct XRaySymbol* symbol; in XRaySymbolCreate() local 66 symbol = XRaySymbolPoolAlloc(sympool); in XRaySymbolCreate() 67 symbol->name = name; in XRaySymbolCreate() 68 return symbol; in XRaySymbolCreate() 73 struct XRaySymbol* symbol; in XRaySymbolPoolAlloc() local 81 symbol = &sympool->current->symbols[sympool->index]; in XRaySymbolPoolAlloc() 83 return symbol; in XRaySymbolPoolAlloc() 121 struct XRaySymbol* symbol, in XRaySymbolTableAdd() argument [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/nasm64/ |
D | machotest64.asm | 7 ; [1] Define and export a global text-section symbol 8 ; [2] Define and export a global data-section symbol 9 ; [3] Define and export a global BSS-section symbol 10 ; [4] Define a non-global text-section symbol 11 ; [5] Define a non-global data-section symbol 12 ; [6] Define a non-global BSS-section symbol 13 ; [7] Define a COMMON symbol 16 ; [10] Import an external symbol (note: printf replaced by another call) 17 ; [11] Make a PC-relative call to an external symbol 18 ; [12] Reference a text-section symbol in the text section [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/amd64/ |
D | elfso64.asm | 6 ; [1] Define and export a global text-section symbol 7 ; [2] Define and export a global data-section symbol 8 ; [3] Define and export a global BSS-section symbol 9 ; [4] Define a non-global text-section symbol 10 ; [5] Define a non-global data-section symbol 11 ; [6] Define a non-global BSS-section symbol 12 ; [7] Define a COMMON symbol 15 ; [10] Import an external symbol 16 ; [11] Make a PC-relative call to an external symbol 17 ; [12] Reference a text-section symbol in the text section [all …]
|
/external/valgrind/main/gdbserver_tests/ |
D | mcvabits.stderrB.exp | 4 Address 0x........ is 0 bytes inside data symbol "undefined" 6 Address 0x........ is 0 bytes inside data symbol "undefined" 9 Address 0x........ is 0 bytes inside data symbol "undefined" 12 Address 0x........ is 0 bytes inside data symbol "undefined" 15 Address 0x........ is 0 bytes inside data symbol "undefined" 18 Address 0x........ is 0 bytes inside data symbol "undefined" 21 Address 0x........ is 0 bytes inside data symbol "undefined" 24 Address 0x........ is 0 bytes inside data symbol "undefined" 27 Address 0x........ is 0 bytes inside data symbol "undefined" 30 Address 0x........ is 0 bytes inside data symbol "undefined" [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/gas32/ |
D | gas-macho32.asm | 7 # [1] Define and export a global text-section symbol 8 # [2] Define and export a global data-section symbol 9 # [3] Define and export a global BSS-section symbol 10 # [4] Define a non-global text-section symbol 11 # [5] Define a non-global data-section symbol 12 # [6] Define a non-global BSS-section symbol 13 # [7] Define a COMMON symbol 16 # [10] Import an external symbol (note: printf replaced by another call) 17 # [11] Make a PC-relative call to an external symbol 18 # [12] Reference a text-section symbol in the text section [all …]
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
D | annotate.h | 120 struct symbol symbol; member 129 static inline struct annotation *symbol__annotation(struct symbol *sym) in symbol__annotation() 131 struct sannotation *a = container_of(sym, struct sannotation, symbol); in symbol__annotation() 135 int symbol__inc_addr_samples(struct symbol *sym, struct map *map, 137 int symbol__alloc_hist(struct symbol *sym); 138 void symbol__annotate_zero_histograms(struct symbol *sym); 140 int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize); 141 int symbol__annotate_init(struct map *map __maybe_unused, struct symbol *sym); 142 int symbol__annotate_printf(struct symbol *sym, struct map *map, 145 void symbol__annotate_zero_histogram(struct symbol *sym, int evidx); [all …]
|
/external/chromium_org/third_party/brotli/src/brotli/dec/ |
D | huffman.c | 74 int symbol; /* symbol index in original or sorted table */ in BrotliBuildHuffmanTable() local 92 for (symbol = 0; symbol < code_lengths_size; symbol++) { in BrotliBuildHuffmanTable() 93 count[code_lengths[symbol]]++; in BrotliBuildHuffmanTable() 103 for (symbol = 0; symbol < code_lengths_size; symbol++) { in BrotliBuildHuffmanTable() 104 if (code_lengths[symbol] != 0) { in BrotliBuildHuffmanTable() 105 sorted[offset[code_lengths[symbol]]++] = symbol; in BrotliBuildHuffmanTable() 127 symbol = 0; in BrotliBuildHuffmanTable() 131 code.value = (uint16_t)sorted[symbol++]; in BrotliBuildHuffmanTable() 152 code.value = (uint16_t)sorted[symbol++]; in BrotliBuildHuffmanTable()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/nasm32/ |
D | machotest.asm | 7 ; [1] Define and export a global text-section symbol 8 ; [2] Define and export a global data-section symbol 9 ; [3] Define and export a global BSS-section symbol 10 ; [4] Define a non-global text-section symbol 11 ; [5] Define a non-global data-section symbol 12 ; [6] Define a non-global BSS-section symbol 13 ; [7] Define a COMMON symbol 16 ; [10] Import an external symbol (note: printf replaced by another call) 17 ; [11] Make a PC-relative call to an external symbol 18 ; [12] Reference a text-section symbol in the text section [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/tests/ |
D | cofftest.asm | 7 ; [1] Define and export a global text-section symbol 8 ; [2] Define and export a global data-section symbol 9 ; [3] Define and export a global BSS-section symbol 10 ; [4] Define a non-global text-section symbol 11 ; [5] Define a non-global data-section symbol 12 ; [6] Define a non-global BSS-section symbol 13 ; [7] Define a COMMON symbol 16 ; [10] Import an external symbol 17 ; [11] Make a PC-relative call to an external symbol 18 ; [12] Reference a text-section symbol in the text section [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/tests/ |
D | stabs-elf.asm | 8 ; [1] Define and export a global text-section symbol 9 ; [2] Define and export a global data-section symbol 10 ; [3] Define and export a global BSS-section symbol 11 ; [4] Define a non-global text-section symbol 12 ; [5] Define a non-global data-section symbol 13 ; [6] Define a non-global BSS-section symbol 14 ; [7] Define a COMMON symbol 17 ; [10] Import an external symbol 18 ; [11] Make a PC-relative call to an external symbol 19 ; [12] Reference a text-section symbol in the text section [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/ |
D | elftest.asm | 8 ; [1] Define and export a global text-section symbol 9 ; [2] Define and export a global data-section symbol 10 ; [3] Define and export a global BSS-section symbol 11 ; [4] Define a non-global text-section symbol 12 ; [5] Define a non-global data-section symbol 13 ; [6] Define a non-global BSS-section symbol 14 ; [7] Define a COMMON symbol 17 ; [10] Import an external symbol 18 ; [11] Make a PC-relative call to an external symbol 19 ; [12] Reference a text-section symbol in the text section [all …]
|