/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_transformer.py | 29 vals = {} 30 exec c in vals 31 assert vals['a'] == 1 32 assert vals['b'] == 2
|
D | test_complex.py | 517 vals = [0.0, 1e-500, 1e-315, 1e-200, 0.0123, 3.1415, 1e50, INF, NAN] 518 vals += [-v for v in vals] 522 for x in vals: 523 for y in vals: 533 for x in vals: 534 for y in vals:
|
D | test_iter.py | 345 self.vals = args 348 def __init__(self, vals): argument 349 self.vals = vals 356 if i < len(self.vals): 357 return self.vals[i] 360 return SeqIter(self.vals)
|
D | test_math.py | 524 for i, (vals, expected) in enumerate(test_values): 526 actual = math.fsum(vals) 529 "for math.fsum(%.100r)" % (i, expected, vals)) 532 "for math.fsum(%.100r)" % (i, expected, vals)) 537 vals = [7, 1e100, -7, -1e100, -9e-20, 8e-20] * 10 542 vals.append(v) 543 shuffle(vals) 545 s = msum(vals) 546 self.assertEqual(msum(vals), math.fsum(vals))
|
D | test_decimal.py | 303 vals = [] 339 vals.append(v) 347 funct(*vals) 362 funct(*vals) 378 result = str(funct(*vals))
|
/device/google/cuttlefish/common/libs/tcp_socket/ |
D | tcp_socket.h | 96 void AppendToMessage(Message* msg, T v, Ts... vals) { in AppendToMessage() argument 98 AppendToMessage(msg, vals...); in AppendToMessage() 102 Message CreateMessage(Ts... vals) { in CreateMessage() argument 104 AppendToMessage(&m, vals...); in CreateMessage()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/ |
D | astgen.py | 189 vals = ["repr(self.%s)" % name for name in self.argnames] 190 vals = COMMA.join(vals) 192 vals = vals + "," 194 (self.name, fmt, vals)
|
/device/generic/goldfish/audio/ |
D | device_port_source.cpp | 172 const int16_t *const vals = mValues.data(); in operator ()() local 181 memcpy(s, vals + valsOff, len * sizeof(*s)); in operator ()() 205 const int16_t *const vals = mValues.data(); in operator ()() local 211 memcpy(s, vals + i, len * sizeof(*s)); in operator ()()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/ |
D | edk2module.c | 1453 PyObject *key, *val, *keys=NULL, *vals=NULL; in edk2_execve() local 1513 vals = PyMapping_Values(env); in edk2_execve() 1514 if (!keys || !vals) in edk2_execve() 1516 if (!PyList_Check(keys) || !PyList_Check(vals)) { in edk2_execve() 1527 val = PyList_GetItem(vals, pos); in edk2_execve() 1573 Py_XDECREF(vals); in edk2_execve() 1686 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL; in edk2_spawnve() local 1748 vals = PyMapping_Values(env); in edk2_spawnve() 1749 if (!keys || !vals) in edk2_spawnve() 1751 if (!PyList_Check(keys) || !PyList_Check(vals)) { in edk2_spawnve() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | sysconfig.py | 507 vals = [] 509 vals.append(_CONFIG_VARS.get(name)) 510 return vals
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | sysconfig.py | 507 vals = [] 509 vals.append(_CONFIG_VARS.get(name)) 510 return vals
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | sysconfig.py | 559 vals = [] 561 vals.append(_config_vars.get(name)) 562 return vals
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | memoryobject.c | 340 _IntTupleFromSsizet(int len, Py_ssize_t *vals) in _IntTupleFromSsizet() argument 346 if (vals == NULL) { in _IntTupleFromSsizet() 353 o = PyLong_FromSsize_t(vals[i]); in _IntTupleFromSsizet()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | memoryobject.c | 340 _IntTupleFromSsizet(int len, Py_ssize_t *vals) in _IntTupleFromSsizet() argument 346 if (vals == NULL) { in _IntTupleFromSsizet() 353 o = PyLong_FromSsize_t(vals[i]); in _IntTupleFromSsizet()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/ |
D | edk2module.c | 1507 PyObject *key, *val, *keys=NULL, *vals=NULL; in posix_execve() local 1567 vals = PyMapping_Values(env); in posix_execve() 1568 if (!keys || !vals) in posix_execve() 1570 if (!PyList_Check(keys) || !PyList_Check(vals)) { in posix_execve() 1581 val = PyList_GetItem(vals, pos); in posix_execve() 1627 Py_XDECREF(vals); in posix_execve() 1740 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL; in posix_spawnve() local 1802 vals = PyMapping_Values(env); in posix_spawnve() 1803 if (!keys || !vals) in posix_spawnve() 1805 if (!PyList_Check(keys) || !PyList_Check(vals)) { in posix_spawnve() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | posixmodule.c | 3049 PyObject *key, *val, *keys=NULL, *vals=NULL; in posix_execve() local 3109 vals = PyMapping_Values(env); in posix_execve() 3110 if (!keys || !vals) in posix_execve() 3112 if (!PyList_Check(keys) || !PyList_Check(vals)) { in posix_execve() 3123 val = PyList_GetItem(vals, pos); in posix_execve() 3169 Py_XDECREF(vals); in posix_execve() 3282 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL; in posix_spawnve() local 3344 vals = PyMapping_Values(env); in posix_spawnve() 3345 if (!keys || !vals) in posix_spawnve() 3347 if (!PyList_Check(keys) || !PyList_Check(vals)) { in posix_spawnve() [all …]
|