Searched refs:b (Results 1 – 6 of 6) sorted by relevance
/support/ |
A D | resolv_test.c | 176 b->buffer[0] = b->query_buffer[0]; in resolv_response_init() 177 b->buffer[1] = b->query_buffer[1]; in resolv_response_init() 219 b->buffer[b->offset] = ch; in response_add_byte() 220 ++b->offset; in response_add_byte() 370 b->current_rdata_offset = b->offset; in resolv_response_open_record() 399 memcpy (b->buffer + b->offset, data, length); in resolv_response_add_data() 435 memcpy (result, b->buffer, b->offset); in resolv_response_buffer() 443 struct resolv_response_builder *b = xmalloc (sizeof (*b)); in resolv_response_builder_allocate() local 447 return b; in resolv_response_builder_allocate() 454 free (b); in resolv_response_builder_free() [all …]
|
A D | timespec-add.c | 29 timespec_add (struct timespec a, struct timespec b) in timespec_add() argument 32 time_t bs = b.tv_sec; in timespec_add() 33 int ns = a.tv_nsec + b.tv_nsec; in timespec_add()
|
A D | timespec-sub.c | 30 timespec_sub (struct timespec a, struct timespec b) in timespec_sub() argument 33 time_t bs = b.tv_sec; in timespec_sub() 34 int ns = a.tv_nsec - b.tv_nsec; in timespec_sub()
|
A D | support_descriptor_supports_holes.c | 56 char b = '@'; in support_descriptor_supports_holes() local 57 xwrite (fd, &b, 1); in support_descriptor_supports_holes() 71 xwrite (fd, &b, 1); in support_descriptor_supports_holes()
|
A D | test-container.c | 442 need_sync (char *ap, char *bp, struct stat *a, struct stat *b) in need_sync() argument 444 if ((a->st_mode & S_IFMT) != (b->st_mode & S_IFMT)) in need_sync() 452 if (a->st_size != b->st_size) in need_sync() 467 if (a->st_size != b->st_size) in need_sync() 469 if ((a->st_mode & 0777) != (b->st_mode & 0777)) in need_sync() 471 if (a->st_mtime != b->st_mtime) in need_sync() 475 if (a->st_size == b->st_size in need_sync() 476 && ((a->st_mode & 0777) == (b->st_mode & 0777)) in need_sync() 477 && a->st_mtime == b->st_mtime) in need_sync()
|
A D | support_format_dns_packet.c | 62 unsigned b = in->data[1]; in extract_32() local 65 *value = (a << 24) | (b << 16) | (c << 8) | d; in extract_32()
|
Completed in 14 milliseconds