Home
last modified time | relevance | path

Searched refs:ngx_crc32_table_short (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_crc32.c102 uint32_t *ngx_crc32_table_short = ngx_crc32_table16; variable
110 if (((uintptr_t) ngx_crc32_table_short in ngx_crc32_table_init()
112 == (uintptr_t) ngx_crc32_table_short) in ngx_crc32_table_init()
126 ngx_crc32_table_short = p; in ngx_crc32_table_init()
H A Dngx_crc32.h16 extern uint32_t *ngx_crc32_table_short;
30 crc = ngx_crc32_table_short[(crc ^ (c & 0xf)) & 0xf] ^ (crc >> 4); in ngx_crc32_short()
31 crc = ngx_crc32_table_short[(crc ^ (c >> 4)) & 0xf] ^ (crc >> 4); in ngx_crc32_short()