/external/python/cpython2/Modules/ |
D | dlmodule.c | 82 long alist[10]; in dl_call() local 111 alist[i-1] = PyInt_AsLong(v); in dl_call() 112 if (alist[i-1] == -1 && PyErr_Occurred()) in dl_call() 116 alist[i-1] = (long)PyString_AsString(v); in dl_call() 118 alist[i-1] = (long) ((char *)NULL); in dl_call() 126 alist[i-1] = 0; in dl_call() 127 res = (*func)(alist[0], alist[1], alist[2], alist[3], alist[4], in dl_call() 128 alist[5], alist[6], alist[7], alist[8], alist[9]); in dl_call()
|
/external/tensorflow/tensorflow/core/framework/ |
D | attr_value_util_test.cc | 154 std::vector<int> alist(10); in TEST() local 155 std::iota(alist.begin(), alist.end(), 0); in TEST() 158 SetAttrValue(alist, &attr_value); in TEST() 163 std::vector<int> alist(60); in TEST() local 164 std::iota(alist.begin(), alist.end(), 0); in TEST() 167 SetAttrValue(alist, &attr_value); in TEST()
|
/external/openssh/ |
D | scp.c | 890 arglist alist; in toremote() local 894 memset(&alist, '\0', sizeof(alist)); in toremote() 895 alist.list = NULL; in toremote() 956 freeargs(&alist); in toremote() 957 addargs(&alist, "%s", ssh_program); in toremote() 958 addargs(&alist, "-x"); in toremote() 959 addargs(&alist, "-oClearAllForwardings=yes"); in toremote() 960 addargs(&alist, "-n"); in toremote() 962 addargs(&alist, "%s", in toremote() 967 addargs(&alist, "-p"); in toremote() [all …]
|
/external/fonttools/Lib/fontTools/misc/ |
D | textTools.py | 68 def caselessSort(alist): argument 74 return sorted(alist, key=lambda a: (a.lower(), a)) 76 return sorted(alist)
|
/external/clang/test/SemaObjC/ |
D | uninit-variables.m | 42 va_list alist; 43 va_start(alist, z); 44 [NSException raise:@"Blah" format:@"Blah %@" arguments:alist];
|
/external/llvm-project/clang/test/SemaObjC/ |
D | uninit-variables.m | 42 va_list alist; 43 va_start(alist, z); 44 [NSException raise:@"Blah" format:@"Blah %@" arguments:alist];
|
/external/toybox/toys/pending/ |
D | ip.c | 129 struct arglist *alist; in substring_to_idx() local 135 for (alist = list; alist->name; alist++) in substring_to_idx() 136 if (!memcmp(str, alist->name, len)) return alist->idx; in substring_to_idx() 142 struct arglist *alist; in string_to_idx() local 145 for (alist = list; alist->name; alist++) in string_to_idx() 146 if (!strcmp(str, alist->name)) return alist->idx; in string_to_idx() 152 struct arglist *alist; in idx_to_string() local 155 for (alist = list; alist->name; alist++) in idx_to_string() 156 if (idx == alist->idx) return alist->name; in idx_to_string() 235 struct arglist **alist; in getlist() local [all …]
|
D | route.c | 240 struct _arglist *alist; in get_action() local 243 for (alist = list; alist->arg; alist++) { //find the given parameter in list in get_action() 244 if (!strcmp(**argv, alist->arg)) { in get_action() 246 return alist->action; in get_action()
|
/external/llvm-project/llvm/test/CodeGen/Mips/compactbranches/ |
D | beqc-bnec-register-constraint.ll | 16 define internal void @_ZL14TestRemoveLastv(i32* %alist.sroa.0.4) { 19 %ascevgep = getelementptr i32, i32* %alist.sroa.0.4, i64 99 53 define internal void @_ZL14TestRemoveLastv64(i64* %alist.sroa.0.4) { 56 %ascevgep = getelementptr i64, i64* %alist.sroa.0.4, i64 99
|
/external/python/cpython2/Lib/test/ |
D | test_gc.py | 327 def __init__(self, alist): argument 328 self[:] = alist 463 alist = [1, 3, 5] 464 got = gc.get_referents(alist) 466 self.assertEqual(got, alist) 468 atuple = tuple(alist) 471 self.assertEqual(got, alist)
|
D | test_weakref.py | 617 alist = [] 623 alist.append(self.c) 632 alist.append("C went away") 636 self.assertEqual(alist, []) # del isn't enough to reclaim anything 643 self.assertEqual(alist, ["C went away"]) 647 del alist[:] 649 self.assertEqual(alist, []) 655 alist = [] 657 alist.append("safe_callback called") 661 alist.append("cb called") [all …]
|
D | test_xmlrpc.py | 26 alist = [{'astring': 'foo@bar.baz.spam', variable 41 alist[0].update({ 49 self.assertEqual(alist, 50 xmlrpclib.loads(xmlrpclib.dumps((alist,)))[0][0]) 143 value = alist + [None] 144 arg1 = (alist + [None],)
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 171 PyObject *func, *alist = NULL, *kwdict = NULL; in builtin_apply() local 178 if (!PyArg_UnpackTuple(args, "apply", 1, 3, &func, &alist, &kwdict)) in builtin_apply() 180 if (alist != NULL) { in builtin_apply() 181 if (!PyTuple_Check(alist)) { in builtin_apply() 182 if (!PySequence_Check(alist)) { in builtin_apply() 185 alist->ob_type->tp_name); in builtin_apply() 188 t = PySequence_Tuple(alist); in builtin_apply() 191 alist = t; in builtin_apply() 200 retval = PyEval_CallObjectWithKeywords(func, alist, kwdict); in builtin_apply() 1017 PyObject *alist, *item=NULL, *value; in builtin_map() local [all …]
|
/external/curl/lib/ |
D | checksrc.pl | 38 my @alist; 129 push @alist, $1; 206 push @alist, $1; 258 for my $r (@alist) {
|
/external/llvm-project/clang/test/Analysis/ |
D | NoReturn.m | 61 va_list alist; 62 va_start(alist, x); 64 [NSException raise:@"Blah" format:@"Blah %@" arguments:alist];
|
/external/clang/test/Analysis/ |
D | NoReturn.m | 61 va_list alist; 62 va_start(alist, x); 64 [NSException raise:@"Blah" format:@"Blah %@" arguments:alist];
|
/external/llvm/test/CodeGen/Mips/compactbranches/ |
D | beqc-bnec-register-constraint.ll | 14 define internal void @_ZL14TestRemoveLastv(i32* %alist.sroa.0.4) { 16 %ascevgep = getelementptr i32, i32* %alist.sroa.0.4, i64 99
|
/external/python/cpython3/Lib/test/ |
D | test_weakref.py | 684 alist = [] 690 alist.append(self.c) 699 alist.append("C went away") 703 self.assertEqual(alist, []) # del isn't enough to reclaim anything 710 self.assertEqual(alist, ["C went away"]) 714 del alist[:] 716 self.assertEqual(alist, []) 722 alist = [] 724 alist.append("safe_callback called") 728 alist.append("cb called") [all …]
|
D | test_gc.py | 383 def __init__(self, alist): argument 384 self[:] = alist 519 alist = [1, 3, 5] 520 got = gc.get_referents(alist) 522 self.assertEqual(got, alist) 524 atuple = tuple(alist) 527 self.assertEqual(got, alist)
|
/external/iputils/ |
D | rarpd.c | 239 struct ifaddr *select_ipaddr(int ifindex, __u32 *sel_addr, __u32 **alist) in select_ipaddr() argument 258 for (i=0; alist[i]; i++) { in select_ipaddr() 259 __u32 addr = *(alist[i]); in select_ipaddr() 273 *sel_addr = *(alist[0]); in select_ipaddr()
|
/external/libxml2/ |
D | genUnicode.py | 75 alist = string.split(alias[1],',') variable 76 for comp in alist:
|
/external/python/cpython2/Doc/library/ |
D | rfc822.rst | 316 .. method:: AddressList.__add__(alist) 322 .. method:: AddressList.__iadd__(alist) 325 into the union of itself and the right-hand instance, *alist*. 328 .. method:: AddressList.__sub__(alist) 335 .. method:: AddressList.__isub__(alist) 338 also in *alist*.
|
/external/freetype/src/tools/ |
D | glnames.py | 5196 def filter_glyph_names( alist, filter ): argument 5202 for name in alist:
|
/external/javassist/src/main/javassist/ |
D | CtClassType.java | 986 List<CtMember> alist = new ArrayList<CtMember>(); in getFields() local 987 getFields(alist, this); in getFields() 988 return alist.toArray(new CtField[alist.size()]); in getFields() 991 private static void getFields(List<CtMember> alist, CtClass cc) { in getFields() argument 996 getFields(alist, cc.getSuperclass()); in getFields() 1003 getFields(alist, ctc); in getFields() 1013 alist.add(field); in getFields()
|
/external/ltp/testcases/kernel/fs/fsstress/ |
D | fsstress.c | 1474 attrlist_t *alist; in attr_remove_f() local 1496 alist = (attrlist_t *) buf; in attr_remove_f() 1497 total += alist->al_count; in attr_remove_f() 1498 } while (alist->al_more); in attr_remove_f() 1516 alist = (attrlist_t *) buf; in attr_remove_f() 1517 if (which < ent + alist->al_count) { in attr_remove_f() 1519 & buf[alist->al_offset[which - ent]]; in attr_remove_f() 1523 ent += alist->al_count; in attr_remove_f() 1524 } while (alist->al_more); in attr_remove_f()
|