/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_fileinput.py | 38 t3 = writeTmp(3, ["Line %s of file 3\n" % (i+1) for i in range(5)]) 40 self.buffer_size_test(t1, t2, t3, t4, bs, round) 42 remove_tempfiles(t1, t2, t3, t4) 44 def buffer_size_test(self, t1, t2, t3, t4, bs=0, round=0): argument 50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) 61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) 80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs) 94 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) 105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs) 113 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) [all …]
|
D | test_difflib.py | 149 t3 = patch914575_to3 178 k.make_table(f3.splitlines(),t3.splitlines(),context=True,numlines=0), 180 k.make_table(f3.splitlines(),t3.splitlines()), 182 k.make_table(f3.splitlines(True),t3.splitlines(True)),
|
D | test_pkg.py | 152 import t3.sub.subsub 153 self.assertEqual(t3.__name__, "t3") 154 self.assertEqual(t3.sub.__name__, "t3.sub") 155 self.assertEqual(t3.sub.subsub.__name__, "t3.sub.subsub")
|
D | test_repr.py | 42 t3 = (1, 2, 3) 43 eq(r(t3), "(1, 2, 3)") 47 expected = repr(t3)[:-2] + "...)" 48 eq(r2.repr(t3), expected)
|
D | test_datetime.py | 485 t3 = t1 + t2 486 self.assertTrue(type(t3) is timedelta) 487 t4 = T.from_td(t3) 489 self.assertEqual(t3.days, t4.days) 490 self.assertEqual(t3.seconds, t4.seconds) 491 self.assertEqual(t3.microseconds, t4.microseconds) 492 self.assertEqual(str(t3), str(t4)) 2172 t3 = time(13, 47, tzinfo=met) 2178 self.assertEqual(t3.tzinfo, met) 2184 self.assertEqual(t3.utcoffset(), timedelta(minutes=60)) [all …]
|
D | test_zipimport.py | 179 t3 = ord(test_pyc[7]) 180 t3 ^= 0x02 # flip the second bit -- not the first as that one 182 badtime_pyc = test_pyc[:7] + chr(t3) + test_pyc[8:]
|
D | test_cookielib.py | 80 t3 = http2time(s.upper()) 82 self.assertTrue(t == t2 == t3 == test_t, 83 "'%s' => %s, %s, %s (%s)" % (s, t, t2, t3, test_t))
|
D | test_itertools.py | 890 t3 = tnew(t1) 891 self.assertTrue(list(t1) == list(t2) == list(t3) == list('abc'))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/ |
D | throughput.py | 76 t3 = time.time() 86 print 'Raw timers:', t1, t2, t3, t4, t5 87 print 'Intervals:', t2-t1, t3-t2, t4-t3, t5-t4
|
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/ |
D | cpuMath.h | 25 uint32_t t1, t2, t3, t4, t5; \ 31 t3 = t2 / divBy; \ 37 (((uint64_t)t1) << 32) + (((uint64_t)t3) << 16) + t5; \
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/ |
D | Range.py | 83 t3 = time.time() 88 print t3-t2, 'sec (generator)' 89 print t4-t3, 'sec (built-in)'
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/ |
D | output.c | 102 char t3[] = "unsigned long"; variable 103 char *typevar[DIF_SIZE] = { t0, t1, t2, t3}; 109 char t3[] = "unsigned long"; variable 110 char *typevar[DIF_SIZE] = { t0, t1, t2, t3};
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | pprint.py | 345 t3 = time.time() 347 print "pformat:", t3 - t2
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | longobject.c | 2706 PyLongObject *t1, *t2, *t3; in k_mul() local 2841 t3 = k_mul(t1, t2); in k_mul() 2844 if (t3 == NULL) goto fail; in k_mul() 2845 assert(Py_SIZE(t3) >= 0); in k_mul() 2850 (void)v_iadd(ret->ob_digit + shift, i, t3->ob_digit, Py_SIZE(t3)); in k_mul() 2851 Py_DECREF(t3); in k_mul()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/ |
D | longobject.c | 2706 PyLongObject *t1, *t2, *t3; in k_mul() local 2841 t3 = k_mul(t1, t2); in k_mul() 2844 if (t3 == NULL) goto fail; in k_mul() 2845 assert(Py_SIZE(t3) >= 0); in k_mul() 2850 (void)v_iadd(ret->ob_digit + shift, i, t3->ob_digit, Py_SIZE(t3)); in k_mul() 2851 Py_DECREF(t3); in k_mul()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/ |
D | longobject.c | 2720 PyLongObject *t1, *t2, *t3; in k_mul() local 2855 t3 = k_mul(t1, t2); in k_mul() 2858 if (t3 == NULL) goto fail; in k_mul() 2859 assert(Py_SIZE(t3) >= 0); in k_mul() 2864 (void)v_iadd(ret->ob_digit + shift, i, t3->ob_digit, Py_SIZE(t3)); in k_mul() 2865 Py_DECREF(t3); in k_mul()
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/Binary/ |
D | mcuimage.bin | 363 J��fڿ���!"��p#��t3��b�*h����Yr# !��8��Wl�F��
|