Searched refs:ngx_crc32_table_short (Results 1 – 2 of 2) sorted by relevance
102 uint32_t *ngx_crc32_table_short = ngx_crc32_table16; variable110 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()
16 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()