ngx_crc32_table_short  101 core/ngx_crc32.c uint32_t *ngx_crc32_table_short = ngx_crc32_table16;
ngx_crc32_table_short  109 core/ngx_crc32.c     if (((uintptr_t) ngx_crc32_table_short
ngx_crc32_table_short  111 core/ngx_crc32.c         == (uintptr_t) ngx_crc32_table_short)
ngx_crc32_table_short  125 core/ngx_crc32.c     ngx_crc32_table_short = p;
ngx_crc32_table_short   15 core/ngx_crc32.h extern uint32_t  *ngx_crc32_table_short;
ngx_crc32_table_short   29 core/ngx_crc32.h         crc = ngx_crc32_table_short[(crc ^ (c & 0xf)) & 0xf] ^ (crc >> 4);
ngx_crc32_table_short   30 core/ngx_crc32.h         crc = ngx_crc32_table_short[(crc ^ (c >> 4)) & 0xf] ^ (crc >> 4);