HomeSort by: relevance | last modified time | path
    Searched refs:ZONE_BLOCK_SIZE (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/nsd/dist/simdzone/src/fallback/
scanner.h 144 if (left >= ZONE_BLOCK_SIZE) {
146 (parser->file->buffer.length - ZONE_BLOCK_SIZE);
147 while (data <= data_limit && ((uintptr_t)tape_limit - (uintptr_t)tape) >= ZONE_BLOCK_SIZE) {
148 scan(parser, data, data + ZONE_BLOCK_SIZE);
149 parser->file->buffer.index += ZONE_BLOCK_SIZE;
150 data += ZONE_BLOCK_SIZE;
160 assert(left < ZONE_BLOCK_SIZE);
name.h 16 uint8_t octets[255 + ZONE_BLOCK_SIZE],
  /src/external/bsd/nsd/dist/simdzone/include/
zone.h 274 #define ZONE_BLOCK_SIZE (64)
282 #define ZONE_WINDOW_SIZE (256 * ZONE_BLOCK_SIZE) // 16KB
292 uint8_t octets[ ZONE_NAME_SIZE + ZONE_BLOCK_SIZE ];
301 uint8_t octets[ ZONE_RDATA_SIZE + ZONE_BLOCK_SIZE ];
312 #define ZONE_TAPE_SIZE ((100 * ZONE_BLOCK_SIZE) + ZONE_BLOCK_SIZE)
566 * @ref ZONE_BLOCK_SIZE bytes.
  /src/external/bsd/nsd/dist/simdzone/src/generic/
scanner.h 300 if (left >= ZONE_BLOCK_SIZE) {
302 (parser->file->buffer.length - ZONE_BLOCK_SIZE);
303 while (data <= data_limit && ((uintptr_t)tape_limit - (uintptr_t)tape) >= ZONE_BLOCK_SIZE) {
307 parser->file->buffer.index += ZONE_BLOCK_SIZE;
308 data += ZONE_BLOCK_SIZE;
318 assert(left < ZONE_BLOCK_SIZE);
323 uint8_t buffer[ZONE_BLOCK_SIZE] = { 0 };
name.h 33 uint8_t octets[255 + ZONE_BLOCK_SIZE],
parser.h 180 static const char line_feed[ZONE_BLOCK_SIZE] = { '\n', '\0' };
183 static const char end_of_file[ZONE_BLOCK_SIZE] = { '\0' };
300 if (!(data = realloc(parser->file->buffer.data, size + 1 + ZONE_BLOCK_SIZE)))
325 ZONE_BLOCK_SIZE);
svcb.h 1016 memmove(rdata_view.limit + ZONE_BLOCK_SIZE, octets, length);
1021 memmove(rdata_view.octets, rdata_view.limit + ZONE_BLOCK_SIZE, length);
  /src/external/bsd/nsd/dist/simdzone/src/
zone.c 235 const size_t size = ZONE_WINDOW_SIZE + 1 + ZONE_BLOCK_SIZE;

Completed in 22 milliseconds