Home
last modified time | relevance | path

Searched refs:t0 (Results 1 – 24 of 24) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
Dsystimes.py189 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/
Dreperf.py12 t0 = time.clock()
21 print func.__name__, "%.3f" % (t1-t0), "CPU seconds"
Dtest_time.py223 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)
Dsortperf.py60 t0 = time.clock()
63 print "%6.2f" % (t1-t0),
/device/google/contexthub/lib/nanohub/
Daes.c217 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/
Dxxsubtype.c240 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()
Dsha256module.c130 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.c99 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()
Dsha512module.c140 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/
Dxxsubtype.c240 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()
Dsha256module.c130 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()
Dsha512module.c140 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/
Dprofile.py539 t0 = get_time()
542 elapsed_noprofile = t1 - t0
550 t0 = get_time()
553 elapsed_profile = t1 - t0
Drandom.py844 t0 = time.time()
852 print round(t1-t0, 3), 'sec,',
Dxmllib.py909 t0 = time()
922 print 'total time: %g' % (t1-t0)
926 print 'total time: %g' % (t1-t0)
Durllib.py1568 t0 = time.time()
1577 print round(t1 - t0, 3), 'sec'
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
Doutput.c99 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/
Dftpmirror.py208 t0 = time.time()
231 dt = t1 - t0
237 if t1 > t0:
/device/google/contexthub/firmware/os/algos/calibration/accelerometer/
Daccel_cal.h169 void accelCalInit(struct AccelCal *acc, uint32_t t0, uint32_t n_s, float th,
Daccel_cal.c121 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/
DbgenGenerator.py281 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/
Drandom.py846 t0 = time.time()
854 print round(t1-t0, 3), 'sec,',
Dxmllib.py909 t0 = time()
922 print 'total time: %g' % (t1-t0)
926 print 'total time: %g' % (t1-t0)
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/Binary/
Dmcuimage.bin49 …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…