Searched refs:alloclen (Results 1 - 7 of 7) sorted by relevance
/third_party/nghttp2/tests/ |
H A D | nghttp2_test_helper.h | 45 size_t alloclen = sizeof(nghttp2_nv) * len; \ 47 nghttp2_nv *a = mem->malloc(alloclen, NULL); \ 48 nghttp2_nv *b = mem->malloc(alloclen, NULL); \ 50 memcpy(a, sa, alloclen); \ 51 memcpy(b, sb, alloclen); \
|
/third_party/nghttp2/src/ |
H A D | allocator.h | 155 auto alloclen = get_alloc_length(ptr); in realloc() local 157 if (size <= alloclen) { in realloc() 161 auto nalloclen = std::max(size + 1, alloclen * 2); in realloc() 164 std::copy_n(p, alloclen, static_cast<uint8_t *>(res)); in realloc()
|
/third_party/NuttX/include/nuttx/ |
H A D | scsi.h | 618 uint8_t alloclen; /* 4: Allocation length */ member 645 uint8_t alloclen[2]; /* 3-4: Allocation length */ member 705 uint8_t alloclen; /* 4: Allocation length */ member 806 uint8_t alloclen[2]; /* 7-8: Allocation length */ member 966 uint8_t alloclen[2]; /* 7-8: Allocation length */ member
|
/third_party/backends/backend/ |
H A D | bh.h | 874 SANE_Byte alloclen; member 893 SANE_Byte alloclen; member
|
H A D | hs2p-scsi.h | 398 SANE_Byte alloclen; /* page length: Set to 25 (19H) */ member
|
H A D | hs2p-scsi.c | 276 DBG (DBG_info, "[04] Page Len %#02x\n", jbuf->alloclen); in print_jis_info()
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares_dns_record.c | 1072 size_t alloclen = (datatype == ARES_DATATYPE_BINP) ? len + 1 : len; in ares_dns_rr_set_bin() local 1073 unsigned char *temp = ares_malloc(alloclen); in ares_dns_rr_set_bin()
|
Completed in 14 milliseconds