/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/openssh/ |
D | scp.c | 589 arglist alist; in toremote() local 593 memset(&alist, '\0', sizeof(alist)); in toremote() 594 alist.list = NULL; in toremote() 651 freeargs(&alist); in toremote() 652 addargs(&alist, "%s", ssh_program); in toremote() 653 addargs(&alist, "-x"); in toremote() 654 addargs(&alist, "-oClearAllForwardings=yes"); in toremote() 655 addargs(&alist, "-n"); in toremote() 657 addargs(&alist, "%s", in toremote() 673 addargs(&alist, "-l"); in toremote() [all …]
|
/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(30); in TEST() local 164 std::iota(alist.begin(), alist.end(), 0); in TEST() 167 SetAttrValue(alist, &attr_value); in TEST()
|
/external/autotest/cli/ |
D | acl_unittest.py | 223 alist = cli_mock.create_file('acl2\nacl1') 226 '--alist', alist.name], 240 alist.clean() 244 alist = cli_mock.create_file('acl2\nacl1') 247 '--alist', alist.name], 265 alist.clean()
|
/external/fonttools/Lib/fontTools/misc/ |
D | textTools.py | 69 def caselessSort(alist): argument 75 return sorted(alist, key=lambda a: (a.lower(), a)) 77 return sorted(alist)
|
/external/toybox/toys/pending/ |
D | ip.c | 109 struct arglist *alist; in substring_to_idx() local 115 for (alist = list; alist->name; alist++) in substring_to_idx() 116 if (!memcmp(str, alist->name, len)) return alist->idx; in substring_to_idx() 122 struct arglist *alist; in string_to_idx() local 125 for (alist = list; alist->name; alist++) in string_to_idx() 126 if (!strcmp(str, alist->name)) return alist->idx; in string_to_idx() 132 struct arglist *alist; in idx_to_string() local 135 for (alist = list; alist->name; alist++) in idx_to_string() 136 if (idx == alist->idx) return alist->name; in idx_to_string() 214 struct arglist **alist; in getlist() local [all …]
|
D | route.c | 176 struct _arglist *alist; in get_action() local 179 for (alist = list; alist->arg; alist++) { //find the given parameter in list in get_action() 180 if (!strcmp(**argv, alist->arg)) { in get_action() 182 return alist->action; in get_action()
|
/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/swiftshader/third_party/llvm-7.0/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/clang/test/Analysis/ |
D | NoReturn.m | 61 va_list alist; 62 va_start(alist, x); 64 [NSException raise:@"Blah" format:@"Blah %@" arguments:alist];
|
/external/python/cpython3/Lib/test/ |
D | test_gc.py | 367 def __init__(self, alist): argument 368 self[:] = alist 503 alist = [1, 3, 5] 504 got = gc.get_referents(alist) 506 self.assertEqual(got, alist) 508 atuple = tuple(alist) 511 self.assertEqual(got, alist)
|
D | test_weakref.py | 630 alist = [] 636 alist.append(self.c) 645 alist.append("C went away") 649 self.assertEqual(alist, []) # del isn't enough to reclaim anything 656 self.assertEqual(alist, ["C went away"]) 660 del alist[:] 662 self.assertEqual(alist, []) 668 alist = [] 670 alist.append("safe_callback called") 674 alist.append("cb called") [all …]
|
/external/curl/lib/ |
D | checksrc.pl | 38 my @alist; 192 push @alist, $1; 244 for my $r (@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/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/e2fsprogs/contrib/ |
D | fsstress.c | 1499 attrlist_t *alist; in attr_remove_f() local 1521 alist = (attrlist_t *) buf; in attr_remove_f() 1522 total += alist->al_count; in attr_remove_f() 1523 } while (alist->al_more); in attr_remove_f() 1541 alist = (attrlist_t *) buf; in attr_remove_f() 1542 if (which < ent + alist->al_count) { in attr_remove_f() 1544 & buf[alist->al_offset[which - ent]]; in attr_remove_f() 1548 ent += alist->al_count; in attr_remove_f() 1549 } while (alist->al_more); in attr_remove_f()
|
/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()
|
/external/python/cpython2/Lib/ |
D | rfc822.py | 332 alist = self.getaddrlist(name) 333 if alist: 334 return alist[0]
|