/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 | macro-la-pic.s | 9 la $5, symbol # CHECK: lw $5, %got(symbol)($gp) # encoding: [0x8f,0x85,A,A] 10 … CHECK: # fixup A - offset: 0, value: %got(symbol), kind: fixup_Mips… 11 la $5, symbol($6) # CHECK: lw $5, %got(symbol)($gp) # encoding: [0x8f,0x85,A,A] 12 … CHECK: # fixup A - offset: 0, value: %got(symbol), kind: fixup_Mips… 14 la $6, symbol($6) # CHECK: lw $1, %got(symbol)($gp) # encoding: [0x8f,0x81,A,A] 15 … CHECK: # fixup A - offset: 0, value: %got(symbol), kind: fixup_Mips… 17 la $5, symbol+8 # CHECK: lw $5, %got(symbol+8)($gp) # encoding: [0x8f,0x85,A,A] 18 … CHECK: # fixup A - offset: 0, value: %got(symbol+8), kind: fixup_Mi… 19 la $5, symbol+8($6) # CHECK: lw $5, %got(symbol+8)($gp) # encoding: [0x8f,0x85,A,A] 20 … CHECK: # fixup A - offset: 0, value: %got(symbol+8), kind: fixup_Mi… [all …]
|
/external/autotest/client/common_lib/test_utils/ |
D | mock.py | 135 def __init__(self, symbol, return_obj, *args, **dargs): argument 137 self.symbol = symbol 168 return _dump_function_call(self.symbol, self.args, self.dargs) 172 def __init__(self, symbol, return_val, *args, **dargs): argument 173 super(function_mapping, self).__init__(symbol, return_val, *args, 192 def __init__(self, symbol, default_return_val=None, argument 198 self.symbol = symbol 201 self.__name__ = symbol 209 return self.playback(self.symbol, *args, **dargs) 215 mapping = function_mapping(self.symbol, None, *args, **dargs) [all …]
|
/external/swiftshader/src/OpenGL/compiler/ |
D | ValidateLimitations.cpp | 21 bool IsLoopIndex(const TIntermSymbol* symbol, const TLoopStack& stack) { in IsLoopIndex() argument 23 if (i->index.id == symbol->getId()) in IsLoopIndex() 29 void MarkLoopForUnroll(const TIntermSymbol* symbol, TLoopStack& stack) { in MarkLoopForUnroll() argument 31 if (i->index.id == symbol->getId()) { in MarkLoopForUnroll() 57 virtual void visitSymbol(TIntermSymbol* symbol) { in visitSymbol() argument 61 mValid = (symbol->getQualifier() == EvqConstExpr) || in visitSymbol() 62 IsLoopIndex(symbol, mLoopStack); in visitSymbol() 84 virtual void visitSymbol(TIntermSymbol* symbol) { in visitSymbol() argument 85 if (IsLoopIndex(symbol, mLoopStack)) { in visitSymbol() 86 switch (symbol->getBasicType()) { in visitSymbol() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_asm.h | 47 # define ASM_HIDDEN(symbol) .hidden symbol argument 48 # define ASM_TYPE_FUNCTION(symbol) .type symbol, @function argument 49 # define ASM_SIZE(symbol) .size symbol, .-symbol argument 50 # define ASM_TSAN_SYMBOL(symbol) symbol argument 51 # define ASM_TSAN_SYMBOL_INTERCEPTOR(symbol) symbol argument 53 # define ASM_HIDDEN(symbol) argument 54 # define ASM_TYPE_FUNCTION(symbol) argument 55 # define ASM_SIZE(symbol) argument 56 # define ASM_TSAN_SYMBOL(symbol) _##symbol argument 57 # define ASM_TSAN_SYMBOL_INTERCEPTOR(symbol) _wrap_##symbol argument
|
/external/toybox/kconfig/ |
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_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 | 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/python/cpython2/Demo/parser/ |
D | example.py | 10 import symbol 52 if cstmt[0] == symbol.funcdef: 55 elif cstmt[0] == symbol.classdef: 159 symbol.stmt, 160 (symbol.compound_stmt, ['compound']) 169 symbol.stmt, 170 (symbol.simple_stmt, 171 (symbol.small_stmt, 172 (symbol.expr_stmt, 173 (symbol.testlist, [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/python/cpython2/Lib/compiler/ |
D | transformer.py | 30 import symbol 106 for value, name in symbol.sym_name.items(): 149 if n == symbol.encoding_decl: 154 if n == symbol.single_input: 156 if n == symbol.file_input: 158 if n == symbol.eval_input: 160 if n == symbol.lambdef: 162 if n == symbol.funcdef: 164 if n == symbol.classdef: 180 doc = self.get_docstring(nodelist, symbol.file_input) [all …]
|
/external/brotli/c/enc/ |
D | utf8_util.c | 18 int* symbol, const uint8_t* input, size_t size) { in BrotliParseAsUTF8() argument 21 *symbol = input[0]; in BrotliParseAsUTF8() 22 if (*symbol > 0) { in BrotliParseAsUTF8() 30 *symbol = (((input[0] & 0x1f) << 6) | in BrotliParseAsUTF8() 32 if (*symbol > 0x7f) { in BrotliParseAsUTF8() 41 *symbol = (((input[0] & 0x0f) << 12) | in BrotliParseAsUTF8() 44 if (*symbol > 0x7ff) { in BrotliParseAsUTF8() 54 *symbol = (((input[0] & 0x07) << 18) | in BrotliParseAsUTF8() 58 if (*symbol > 0xffff && *symbol <= 0x10ffff) { in BrotliParseAsUTF8() 63 *symbol = 0x110000 | input[0]; in BrotliParseAsUTF8() [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/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/ |
D | RangeEncoder.java | 132 public void encodeBitTree(short[] probs, int symbol) { in encodeBitTree() argument 138 int bit = symbol & mask; in encodeBitTree() 148 public static int getBitTreePrice(short[] probs, int symbol) { in getBitTreePrice() argument 150 symbol |= probs.length; in getBitTreePrice() 153 int bit = symbol & 1; in getBitTreePrice() 154 symbol >>>= 1; in getBitTreePrice() 155 price += getBitPrice(probs[symbol], bit); in getBitTreePrice() 156 } while (symbol != 1); in getBitTreePrice() 161 public void encodeReverseBitTree(short[] probs, int symbol) { in encodeReverseBitTree() argument 163 symbol |= probs.length; in encodeReverseBitTree() [all …]
|
/external/boringssl/src/util/fipstools/ |
D | delocate.go | 309 symbol := d.contents(label) 313 d.output.WriteString(symbol + ":\n") 317 d.output.WriteString(d.mapLocalSymbol(symbol) + ":\n") 319 d.output.WriteString(localTargetName(symbol) + ":\n") 481 func loadTOCFuncName(symbol, offset string) string { argument 482 symbol = strings.Replace(symbol, ".", "_dot_", -1) 483 ret := ".Lbcm_loadtoc_" + symbol 492 func (d *delocation) loadFromTOC(w stringWriter, symbol, offset, dest string) wrapperFunc { 493 d.tocLoaders[symbol+"\x00"+offset] = struct{}{} 506 w.WriteString("\tbl " + loadTOCFuncName(symbol, offset) + "\n") [all …]
|
/external/libxml2/doc/ |
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 …]
|
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 …]
|
/external/elfutils/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/elfutils/libebl/ |
D | eblsymboltypename.c | 39 ebl_symbol_type_name (Ebl *ebl, int symbol, char *buf, size_t len) in ebl_symbol_type_name() argument 43 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL; in ebl_symbol_type_name() 58 if (symbol < STT_NUM) in ebl_symbol_type_name() 59 res = stt_names[symbol]; in ebl_symbol_type_name() 64 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC) in ebl_symbol_type_name() 65 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC); in ebl_symbol_type_name() 66 else if (symbol == STT_GNU_IFUNC in ebl_symbol_type_name() 70 else if (symbol >= STT_LOOS && symbol <= STT_HIOS) in ebl_symbol_type_name() 71 snprintf (buf, len, "LOOS+%d", symbol - STT_LOOS); in ebl_symbol_type_name() 73 snprintf (buf, len, gettext ("<unknown>: %d"), symbol); in ebl_symbol_type_name()
|
/external/zlib/src/contrib/blast/ |
D | blast.c | 105 short *symbol; /* canonically ordered symbols */ member 153 return h->symbol[index + (code - first)]; in decode() 193 int symbol; /* current symbol when stepping through length[] */ in construct() local 200 symbol = 0; in construct() 206 length[symbol++] = len; in construct() 209 n = symbol; in construct() 214 for (symbol = 0; symbol < n; symbol++) in construct() 215 (h->count[length[symbol]])++; /* assumes lengths are within bounds */ in construct() 236 for (symbol = 0; symbol < n; symbol++) in construct() 237 if (length[symbol] != 0) in construct() [all …]
|
/external/v8/src/runtime/ |
D | runtime-symbol.cc | 20 Handle<Symbol> symbol = isolate->factory()->NewSymbol(); in RUNTIME_FUNCTION() local 21 if (name->IsString()) symbol->set_name(*name); in RUNTIME_FUNCTION() 22 return *symbol; in RUNTIME_FUNCTION() 31 Handle<Symbol> symbol = isolate->factory()->NewPrivateSymbol(); in RUNTIME_FUNCTION() local 32 if (name->IsString()) symbol->set_name(*name); in RUNTIME_FUNCTION() 33 return *symbol; in RUNTIME_FUNCTION() 40 CONVERT_ARG_CHECKED(Symbol, symbol, 0); in RUNTIME_FUNCTION() 41 return symbol->name(); in RUNTIME_FUNCTION() 48 CONVERT_ARG_HANDLE_CHECKED(Symbol, symbol, 0); in RUNTIME_FUNCTION() 51 if (symbol->name()->IsString()) { in RUNTIME_FUNCTION() [all …]
|
/external/autotest/client/tools/ |
D | oprofile_diff | 8 (samples, percent, symbol) = line.split() 9 data[symbol] = float(percent) 17 for symbol in data1.keys() + data2.keys(): 18 delta[symbol] = data1.get(symbol, 0) - data2.get(symbol, 0) 20 def lookup_delta(symbol): argument 21 return delta[symbol] 28 for symbol in sorted_deltas: 29 print '%2.3f %s' % (delta[symbol], symbol)
|
/external/python/cpython3/Lib/ |
D | codeop.py | 68 def _maybe_compile(compiler, source, filename, symbol): argument 75 if symbol != "eval": 82 code = compiler(source, filename, symbol) 87 code1 = compiler(source + "\n", filename, symbol) 92 code2 = compiler(source + "\n\n", filename, symbol) 101 def _compile(source, filename, symbol): argument 102 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT) 104 def compile_command(source, filename="<input>", symbol="single"): argument 122 return _maybe_compile(_compile, source, filename, symbol) 132 def __call__(self, source, filename, symbol): argument [all …]
|
/external/python/cpython2/Lib/ |
D | codeop.py | 68 def _maybe_compile(compiler, source, filename, symbol): argument 75 if symbol != "eval": 82 code = compiler(source, filename, symbol) 87 code1 = compiler(source + "\n", filename, symbol) 92 code2 = compiler(source + "\n\n", filename, symbol) 101 def _compile(source, filename, symbol): argument 102 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT) 104 def compile_command(source, filename="<input>", symbol="single"): argument 122 return _maybe_compile(_compile, source, filename, symbol) 132 def __call__(self, source, filename, symbol): argument [all …]
|
/external/syslinux/gpxe/src/util/ |
D | symcheck.pl | 28 my $symbol = $5; 29 $symtab->{$object}->{$symbol} = { 90 while ( ( my $symbol, my $info ) = each %$symbols ) { 100 $globals->{$symbol}->{$category}->{$object} = 1; 108 while ( ( my $symbol, my $info ) = each %$globals ) { 122 $problems->{$_}->{nonexistent}->{$symbol} = 1 foreach @requires; 130 } elsif ( $symtab->{$provide}->{$symbol}->{section} =~ /^\.tbl\./ ) { 133 $problems->{$provide}->{unused}->{$symbol} = 1; 140 $problems->{$_}->{shared}->{$symbol} = 1 foreach @provides; 145 $problems->{$_}->{multiples}->{$symbol} = 1 foreach @provides; [all …]
|