Home
last modified time | relevance | path

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

/third_party/freetype/src/gzip/
Dcrc32.c609 #define Z_BATCH 3990 /* number of words in a batch */ macro
650 while (num >= 3 * Z_BATCH) { in crc32_z()
653 for (i = 0; i < Z_BATCH; i++) { in crc32_z()
655 val1 = word[i + Z_BATCH]; in crc32_z()
656 val2 = word[i + 2 * Z_BATCH]; in crc32_z()
661 word += 3 * Z_BATCH; in crc32_z()
662 num -= 3 * Z_BATCH; in crc32_z()
/third_party/zlib/
Dcrc32.c609 #define Z_BATCH 3990 /* number of words in a batch */ macro
650 while (num >= 3 * Z_BATCH) {
653 for (i = 0; i < Z_BATCH; i++) {
655 val1 = word[i + Z_BATCH];
656 val2 = word[i + 2 * Z_BATCH];
661 word += 3 * Z_BATCH;
662 num -= 3 * Z_BATCH;
/third_party/chromium/patch/
D0001-cve.patch9871 +#define Z_BATCH 3990 /* number of words in a batch */
9872 +#define Z_BATCH_ZEROS 0xa10d3d0c /* computed from Z_BATCH = 3990 */
9927 + instruction per cycle. Each CRC is calcuated on Z_BATCH words. The three
9929 + while (num >= 3 * Z_BATCH) {
9932 + for (i = 0; i < Z_BATCH; i++) {
9934 + val1 = word[i + Z_BATCH];
9935 + val2 = word[i + 2 * Z_BATCH];
9940 + word += 3 * Z_BATCH;
9941 + num -= 3 * Z_BATCH;