Home
last modified time | relevance | path

Searched refs:MAXSIZE (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dxxci.py14 MAXSIZE = 200*1024 # Files this big must be binaries and are skipped. variable
70 if st[ST_SIZE] >= MAXSIZE: return 1
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_multiprocessing.py360 MAXSIZE = 6
361 queue = self.Queue(maxsize=MAXSIZE)
373 self.assertEqual(queue_full(queue, MAXSIZE), False)
386 self.assertEqual(queue_full(queue, MAXSIZE), True)
413 self.assertEqual(queue_full(queue, MAXSIZE), False)
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlstrlib.c106 #define MAXSIZE ((~(size_t)0) >> 1) macro
114 else if (l + lsep < l || l + lsep >= MAXSIZE / n) /* may overflow? */ in str_rep()