HomeSort by relevance Sort by last modified time
    Searched refs:SMALLCHUNK (Results 1 - 10 of 10) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
fileio.c 38 #define SMALLCHUNK (8*1024)
42 #define SMALLCHUNK BUFSIZ
514 /* Files claiming a size smaller than SMALLCHUNK may
518 if (end >= SMALLCHUNK && end >= pos && pos >= 0) {
524 if (currentsize > SMALLCHUNK) {
532 return currentsize + SMALLCHUNK;
547 result = PyBytes_FromStringAndSize(NULL, SMALLCHUNK);
  /external/python/cpython3/Modules/_io/
fileio.c 42 #define SMALLCHUNK (8*1024)
46 #define SMALLCHUNK BUFSIZ
670 if (addend < SMALLCHUNK)
672 addend = SMALLCHUNK;
719 bufsize = SMALLCHUNK;
    [all...]
winconsoleio.c 32 #define SMALLCHUNK (2*1024)
36 #define SMALLCHUNK BUFSIZ
791 if (addend < SMALLCHUNK)
793 addend = SMALLCHUNK;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
bz2module.c 222 #define SMALLCHUNK 8192
224 #define SMALLCHUNK BUFSIZ
237 if (currentsize > SMALLCHUNK) {
245 return currentsize + SMALLCHUNK;
664 char small_buffer[SMALLCHUNK];
666 size_t buffersize = SMALLCHUNK;
1028 char small_buffer[SMALLCHUNK];
1030 size_t buffersize = SMALLCHUNK;
    [all...]
  /external/python/cpython2/Modules/
bz2module.c 207 #define SMALLCHUNK 8192
209 #define SMALLCHUNK BUFSIZ
652 char small_buffer[SMALLCHUNK];
654 size_t buffersize = SMALLCHUNK;
1017 char small_buffer[SMALLCHUNK];
1019 size_t buffersize = SMALLCHUNK;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
fileio.c 38 #define SMALLCHUNK (8*1024)
42 #define SMALLCHUNK BUFSIZ
509 /* Files claiming a size smaller than SMALLCHUNK may
513 if (end >= SMALLCHUNK && end >= pos && pos >= 0) {
537 result = PyBytes_FromStringAndSize(NULL, SMALLCHUNK);
  /external/python/cpython2/Modules/_io/
fileio.c 38 #define SMALLCHUNK (8*1024)
42 #define SMALLCHUNK BUFSIZ
522 /* Files claiming a size smaller than SMALLCHUNK may
526 if (end >= SMALLCHUNK && end >= pos && pos >= 0) {
550 result = PyBytes_FromStringAndSize(NULL, SMALLCHUNK);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
fileobject.c 984 #define SMALLCHUNK 8192
986 #define SMALLCHUNK BUFSIZ
1023 if (currentsize > SMALLCHUNK) {
1031 return currentsize + SMALLCHUNK;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c 998 #define SMALLCHUNK 8192
1000 #define SMALLCHUNK BUFSIZ
    [all...]
  /external/python/cpython2/Objects/
fileobject.c 996 #define SMALLCHUNK 8192
998 #define SMALLCHUNK BUFSIZ
    [all...]

Completed in 1357 milliseconds