Home
last modified time | relevance | path

Searched refs:tss (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_thread.py89 for tss in (262144, 0x100000, 0):
90 thread.stack_size(tss)
91 self.assertEqual(thread.stack_size(), tss, fail_msg % tss)
92 verbose_print("successfully set stack_size(%d)" % tss)
94 for tss in (262144, 0x100000):
95 verbose_print("trying stack_size = (%d)" % tss)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dthread_pthread.h168 size_t tss; in PyThread_start_new_thread() local
180 tss = (_pythread_stacksize != 0) ? _pythread_stacksize in PyThread_start_new_thread()
182 if (tss != 0) { in PyThread_start_new_thread()
183 if (pthread_attr_setstacksize(&attrs, tss) != 0) { in PyThread_start_new_thread()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
D_parseaddr.py97 tss = '0'
99 [thh, tmm, tss] = tm
107 tss = int(tss)
140 return yy, mm, dd, thh, tmm, tss, 0, 1, -1, tzoffset
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Drfc822.py902 tss = '0'
904 [thh, tmm, tss] = tm
912 tss = int(tss)
932 return (yy, mm, dd, thh, tmm, tss, 0, 1, 0, tzoffset)