/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/llvm/test/MC/Mips/ |
D | mips-expansions.s | 20 # CHECK: lui $8, %hi(symbol) # encoding: [A,A,0x08,0x3c] 21 … # fixup A - offset: 0, value: symbol@ABS_HI, kind: fixup_Mips_HI16 22 # CHECK: ori $8, $8, %lo(symbol) # encoding: [A,A,0x08,0x35] 23 … # fixup A - offset: 0, value: symbol@ABS_LO, kind: fixup_Mips_LO16 25 # CHECK: lui $8, %highest(symbol) # encoding: [A,A,0x08,0x3c] 26 … # fixup A - offset: 0, value: symbol@HIGHEST, kind: fixup_Mips_HIGHEST 27 # CHECK: ori $8, $8, %higher(symbol) # encoding: [A,A,0x08,0x35] 28 … # fixup A - offset: 0, value: symbol@HIGHER, kind: fixup_Mips_HIGHER 30 # CHECK: ori $8, $8, %hi(symbol) # encoding: [A,A,0x08,0x35] 31 … # fixup A - offset: 0, value: symbol@ABS_HI, kind: fixup_Mips_HI16 [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/toybox/kconfig/ |
D | lkc_proto.h | 18 P(symbol_hash,struct symbol *,[SYMBOL_HASHSIZE]); 21 P(sym_lookup,struct symbol *,(const char *name, int isconst)); 22 P(sym_find,struct symbol *,(const char *name)); 23 P(sym_re_search,struct symbol **,(const char *pattern)); 25 P(sym_calc_value,void,(struct symbol *sym)); 26 P(sym_get_type,enum symbol_type,(struct symbol *sym)); 27 P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri)); 28 P(sym_set_tristate_value,bool,(struct symbol *sym,tristate tri)); 29 P(sym_toggle_tristate_value,tristate,(struct symbol *sym)); 30 P(sym_string_valid,bool,(struct symbol *sym, const char *newval)); [all …]
|
D | symbol.c | 15 struct symbol symbol_yes = { 34 struct symbol *sym_defconfig_list; 35 struct symbol *modules_sym; 38 void sym_add_default(struct symbol *sym, const char *def) in sym_add_default() 47 struct symbol *sym; in sym_init() 78 enum symbol_type sym_get_type(struct symbol *sym) in sym_get_type() 112 struct property *sym_get_choice_prop(struct symbol *sym) in sym_get_choice_prop() 121 struct property *sym_get_default_prop(struct symbol *sym) in sym_get_default_prop() 133 struct property *sym_get_range_prop(struct symbol *sym) in sym_get_range_prop() 145 static int sym_get_range_val(struct symbol *sym, int base) in sym_get_range_val() [all …]
|
D | lkc.h | 80 void menu_add_entry(struct symbol *sym); 86 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep); 110 void sym_set_changed(struct symbol *sym); 111 struct symbol *sym_check_deps(struct symbol *sym); 112 struct property *prop_alloc(enum prop_type type, struct symbol *sym); 113 struct symbol *prop_get_symbol(struct property *prop); 115 static inline tristate sym_get_tristate_value(struct symbol *sym) in sym_get_tristate_value() 121 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value() 123 return (struct symbol *)sym->curr.val; in sym_get_choice_value() 126 static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval) in sym_set_choice_value() [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/src/libebl/ |
D | eblsymboltypename.c | 39 ebl_symbol_type_name (ebl, symbol, buf, len) in ebl_symbol_type_name() argument 41 int symbol; 47 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL; 62 if (symbol < STT_NUM) 63 res = stt_names[symbol]; 68 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC) 69 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC); 70 else if (symbol == STT_GNU_IFUNC 74 else if (symbol >= STT_LOOS && symbol <= STT_HIOS) 75 snprintf (buf, len, "LOOS+%d", symbol - STT_LOOS); [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/libxml2/doc/ |
D | libxml-doc.el | 124 (defun libxmldoc-lookup-symbol(&optional symbol) 133 (symbol ;; symbol is specified as argument 134 (if (not (assoc symbol libxmldoc-symbols)) 135 (setq symbol nil))) 136 ((assoc (thing-at-point 'symbol) libxmldoc-symbols) 137 (setq symbol (thing-at-point 'symbol))) 140 ((assoc (concat "*" (thing-at-point 'symbol)) libxmldoc-symbols) 141 (setq symbol (concat "*" (thing-at-point 'symbol)))) 145 (setq symbol (completing-read 147 (if (or symbol (null libxmldoc-filter-regexp)) [all …]
|
D | index.py | 201 def updateWord(name, symbol, relevance): argument 210 if symbol == None: 217 (name, symbol, relevance)) 222 (relevance, name, symbol)) 224 print "Update word (%s, %s, %s) failed command" % (name, symbol, relevance) 225 …t "UPDATE words SET relevance = %d where name = '%s' and symbol = '%s'" % (relevance, name, symbol) 527 def addWord(word, module, symbol, relevance): argument 532 if module == None or symbol == None: 547 relevance = relevance + d[(module, symbol)] 552 wordsDict[word][(module, symbol)] = relevance [all …]
|
/external/elfutils/src/tests/ |
D | run-readelf-gdb_index.sh | 75 symbol offset: 0x78 90 [ 123] symbol: global, CUs: 1 91 [ 489] symbol: main, CUs: 0 92 [ 518] symbol: char, CUs: 0 93 [ 661] symbol: foo, CUs: 0T 94 [ 741] symbol: hello, CUs: 0, 1 95 [ 746] symbol: say, CUs: 1 96 [ 754] symbol: int, CUs: 0 106 symbol offset: 0x78 121 [ 123] symbol: global, CUs: 1 (var:G) [all …]
|
/external/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/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/valgrind/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/linux-tools-perf/src/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 …]
|
D | symbol.h | 64 struct symbol { struct 74 void symbol__delete(struct symbol *sym); argument 77 static inline size_t symbol__size(const struct symbol *sym) in symbol__size() 128 static inline void *symbol__priv(struct symbol *sym) in symbol__priv() 141 struct symbol *sym; 148 struct symbol *sym; 168 struct symbol *sym; 214 struct symbol *dso__find_symbol(struct dso *dso, enum map_type type, 216 struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type, 218 struct symbol *dso__first_symbol(struct dso *dso, enum map_type type); [all …]
|
/external/icu/icu4c/source/i18n/unicode/ |
D | dcfmtsym.h | 260 inline UnicodeString getSymbol(ENumberFormatSymbol symbol) const; 274 …void setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value, const UBool propogateDigits… 371 inline const UnicodeString &getConstSymbol(ENumberFormatSymbol symbol) const; 418 DecimalFormatSymbols::getSymbol(ENumberFormatSymbol symbol) const { in getSymbol() argument 420 if(symbol < kFormatSymbolCount) { in getSymbol() 421 strPtr = &fSymbols[symbol]; in getSymbol() 431 DecimalFormatSymbols::getConstSymbol(ENumberFormatSymbol symbol) const { in getConstSymbol() argument 433 if(symbol < kFormatSymbolCount) { in getConstSymbol() 434 strPtr = &fSymbols[symbol]; in getConstSymbol() 447 DecimalFormatSymbols::setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value, const UBool… [all …]
|
/external/linux-tools-perf/src/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
D | EventClass.py | 24 def create_event(name, comm, dso, symbol, raw_buf): argument 26 event = PebsEvent(name, comm, dso, symbol, raw_buf) 28 event = PebsNHM(name, comm, dso, symbol, raw_buf) 30 event = PerfEvent(name, comm, dso, symbol, raw_buf) 36 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC): argument 40 self.symbol = symbol 46 …MU event: name=%12s, symbol=%24s, comm=%8s, dso=%12s" % (self.name, self.symbol, self.comm, self.d… 55 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS): argument 69 PerfEvent.__init__(self, name, comm, dso, symbol, raw_buf, ev_type) 84 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS_LL): argument [all …]
|
/external/libxml2/ |
D | xmlmodule.c | 114 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol) in xmlModuleSymbol() argument 118 if ((NULL == module) || (symbol == NULL) || (name == NULL)) { in xmlModuleSymbol() 125 rc = xmlModulePlatformSymbol(module->handle, name, symbol); in xmlModuleSymbol() 243 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) in xmlModulePlatformSymbol() argument 245 *symbol = dlsym(handle, name); in xmlModulePlatformSymbol() 287 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) in xmlModulePlatformSymbol() argument 292 rc = shl_findsym(&handle, name, TYPE_UNDEFINED, symbol); in xmlModulePlatformSymbol() 335 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) in xmlModulePlatformSymbol() argument 341 *symbol = GetProcAddressA(handle, name); in xmlModulePlatformSymbol() 343 *symbol = GetProcAddress(handle, name); in xmlModulePlatformSymbol() [all …]
|
/external/lldb/source/Symbol/ |
D | SymbolContext.cpp | 36 symbol (NULL) in SymbolContext() 47 symbol (s) in SymbolContext() 60 symbol (s) in SymbolContext() 73 symbol (rhs.symbol) in SymbolContext() 85 symbol (NULL) in SymbolContext() 105 symbol = rhs.symbol; in operator =() 120 symbol = NULL; in Clear() 205 else if (symbol != NULL) in DumpStopContext() 207 if (symbol->GetMangled().GetName()) in DumpStopContext() 210 if (symbol->GetType() == eSymbolTypeTrampoline) in DumpStopContext() [all …]
|
/external/iptables/extensions/ |
D | libxt_TOS.c | 54 const struct tos_symbol_info *symbol; in tos_tg_help_v0() local 62 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol) in tos_tg_help_v0() 64 symbol->value, symbol->value, symbol->name); in tos_tg_help_v0() 71 const struct tos_symbol_info *symbol; in tos_tg_help() local 82 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol) in tos_tg_help() 84 symbol->value, symbol->value, symbol->name); in tos_tg_help()
|