Home
last modified time | relevance | path

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

/third_party/python/Modules/
Dpyexpat.c706 #define MAX_CHUNK_SIZE (1 << 20) macro
747 while (slen > MAX_CHUNK_SIZE) { in pyexpat_xmlparser_Parse_impl()
748 rc = XML_Parse(self->itself, s, MAX_CHUNK_SIZE, 0); in pyexpat_xmlparser_Parse_impl()
751 s += MAX_CHUNK_SIZE; in pyexpat_xmlparser_Parse_impl()
752 slen -= MAX_CHUNK_SIZE; in pyexpat_xmlparser_Parse_impl()
754 Py_BUILD_ASSERT(MAX_CHUNK_SIZE <= INT_MAX); in pyexpat_xmlparser_Parse_impl()
/third_party/f2fs-tools/lib/
Dlibf2fs_io.c731 #define MAX_CHUNK_SIZE (1 * 1024 * 1024 * 1024ULL) macro
732 #define MAX_CHUNK_COUNT (MAX_CHUNK_SIZE / F2FS_BLKSIZE)
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Datomsrecovery.c91 #define MAX_CHUNK_SIZE (1024 * 1024) /* 1MB */ macro
1168 data = g_malloc (MAX_CHUNK_SIZE); in moov_recov_write_file()
1172 readsize = MIN (MAX_CHUNK_SIZE, remaining); in moov_recov_write_file()