crc                23 core/ngx_crc32.h     uint32_t  crc;
crc                25 core/ngx_crc32.h     crc = 0xffffffff;
crc                29 core/ngx_crc32.h         crc = ngx_crc32_table_short[(crc ^ (c & 0xf)) & 0xf] ^ (crc >> 4);
crc                30 core/ngx_crc32.h         crc = ngx_crc32_table_short[(crc ^ (c >> 4)) & 0xf] ^ (crc >> 4);
crc                33 core/ngx_crc32.h     return crc ^ 0xffffffff;
crc                40 core/ngx_crc32.h     uint32_t  crc;
crc                42 core/ngx_crc32.h     crc = 0xffffffff;
crc                45 core/ngx_crc32.h         crc = ngx_crc32_table256[(crc ^ *p++) & 0xff] ^ (crc >> 8);
crc                48 core/ngx_crc32.h     return crc ^ 0xffffffff;
crc                52 core/ngx_crc32.h #define ngx_crc32_init(crc)                                                   \
crc                53 core/ngx_crc32.h     crc = 0xffffffff
crc                57 core/ngx_crc32.h ngx_crc32_update(uint32_t *crc, u_char *p, size_t len)
crc                61 core/ngx_crc32.h     c = *crc;
crc                67 core/ngx_crc32.h     *crc = c;
crc                71 core/ngx_crc32.h #define ngx_crc32_final(crc)                                                  \
crc                72 core/ngx_crc32.h     crc ^= 0xffffffff