/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
D | systimes.py | 189 t0 = systimes() 192 print 'before:', t0 194 print 'differences:', (t1[0] - t0[0], t1[1] - t0[1]) 199 t0 = systimes() 202 print 'before:', t0 204 print 'differences:', (t1[0] - t0[0], t1[1] - t0[1])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | reperf.py | 12 t0 = time.clock() 21 print func.__name__, "%.3f" % (t1-t0), "CPU seconds"
|
D | test_time.py | 223 t0 = time.mktime(gt0) 225 self.assertTrue(0 <= (t1-t0) < 0.2) 230 t0 = time.mktime(lt0) 232 self.assertTrue(0 <= (t1-t0) < 0.2)
|
D | sortperf.py | 60 t0 = time.clock() 63 print "%6.2f" % (t1-t0),
|
/device/google/contexthub/lib/nanohub/ |
D | aes.c | 217 uint32_t t0, t1, t2; in aesEncr() local 219 t0 = *k++ ^ in aesEncr() 243 x0 = t0; in aesEncr() 287 uint32_t t0, t1, t2; in aesDecr() local 289 t0 = *k++ ^ in aesDecr() 313 x0 = t0; in aesDecr()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | xxsubtype.c | 240 time_t t0, t1; in spam_bench() local 244 t0 = clock(); in spam_bench() 252 return PyFloat_FromDouble((double)(t1-t0) / CLOCKS_PER_SEC); in spam_bench()
|
D | sha256module.c | 130 SHA_INT32 S[8], W[64], t0, t1; in sha_transform() local 144 t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i]; \ in sha_transform() 146 d += t0; \ in sha_transform() 147 h = t0 + t1; in sha_transform()
|
D | _lsprof.c | 99 PY_LONG_LONG t0; member 336 self->t0 = CALL_TIMER(pObj); in initContext() 342 PY_LONG_LONG tt = CALL_TIMER(pObj) - self->t0; in Stop()
|
D | sha512module.c | 140 SHA_INT64 S[8], W[80], t0, t1; in sha512_transform() local 154 t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i]; \ in sha512_transform() 156 d += t0; \ in sha512_transform() 157 h = t0 + t1; in sha512_transform()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | xxsubtype.c | 240 time_t t0, t1; in spam_bench() local 244 t0 = clock(); in spam_bench() 252 return PyFloat_FromDouble((double)(t1-t0) / CLOCKS_PER_SEC); in spam_bench()
|
D | sha256module.c | 130 SHA_INT32 S[8], W[64], t0, t1; in sha_transform() local 144 t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i]; \ in sha_transform() 146 d += t0; \ in sha_transform() 147 h = t0 + t1; in sha_transform()
|
D | sha512module.c | 140 SHA_INT64 S[8], W[80], t0, t1; in sha512_transform() local 154 t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i]; \ in sha512_transform() 156 d += t0; \ in sha512_transform() 157 h = t0 + t1; in sha512_transform()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | profile.py | 539 t0 = get_time() 542 elapsed_noprofile = t1 - t0 550 t0 = get_time() 553 elapsed_profile = t1 - t0
|
D | random.py | 844 t0 = time.time() 852 print round(t1-t0, 3), 'sec,',
|
D | xmllib.py | 909 t0 = time() 922 print 'total time: %g' % (t1-t0) 926 print 'total time: %g' % (t1-t0)
|
D | urllib.py | 1568 t0 = time.time() 1577 print round(t1 - t0, 3), 'sec'
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/ |
D | output.c | 99 char t0[] = "unsigned char"; variable 103 char *typevar[DIF_SIZE] = { t0, t1, t2, t3}; 106 char t0[] = "unsigned char"; variable 110 char *typevar[DIF_SIZE] = { t0, t1, t2, t3};
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | ftpmirror.py | 208 t0 = time.time() 231 dt = t1 - t0 237 if t1 > t0:
|
/device/google/contexthub/firmware/os/algos/calibration/accelerometer/ |
D | accel_cal.h | 169 void accelCalInit(struct AccelCal *acc, uint32_t t0, uint32_t n_s, float th,
|
D | accel_cal.c | 121 static void accelStillInit(struct AccelStillDet *asd, uint32_t t0, uint32_t n_s, in accelStillInit() argument 125 asd->min_batch_window = t0; in accelStillInit() 126 asd->max_batch_window = t0 + 100000000; in accelStillInit() 166 void accelCalInit(struct AccelCal *acc, uint32_t t0, uint32_t n_s, float th, in accelCalInit() argument 174 accelStillInit(&acc->asd, t0, n_s, th); in accelCalInit()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/ |
D | bgenGenerator.py | 281 t0, n0, m0 = a0 284 self.itself = Variable(t0, "_self->ob_itself", SelfMode)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | random.py | 846 t0 = time.time() 854 print round(t1-t0, 3), 'sec,',
|
D | xmllib.py | 909 t0 = time() 922 print 'total time: %g' % (t1-t0) 926 print 'total time: %g' % (t1-t0)
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/Binary/ |
D | mcuimage.bin | 49 …AZi�� ����"�B�8��pZa�G�����%O�p��p�<��os�&KLB�@��`���p����C����B�t0 371 �h���0;+<�B�t0��p��>�FB�t0d���p���B�h0��p�!���B�l0!��p�� 372 �B�p0!��p���B�`0`!��p����B�d0`!��p����B�O�Q��p���� ��B�t0��p���FB�t0d���p����B�h0l…
|