HomeSort by relevance Sort by last modified time
    Searched refs:len_bytes (Results 1 - 5 of 5) sorted by null

  /external/openssh/
sshbuf-getput-crypto.c 53 size_t len_bytes; local
59 len_bytes = (len_bits + 7) >> 3;
60 if (len_bytes > SSHBUF_MAX_BIGNUM)
62 if (sshbuf_len(buf) < 2 + len_bytes)
64 if (v != NULL && BN_bin2bn(d + 2, len_bytes, v) == NULL)
66 if (sshbuf_consume(buf, 2 + len_bytes) != 0) {
172 size_t len_bytes = (len_bits + 7) / 8; local
175 if (len_bits < 0 || len_bytes > SSHBUF_MAX_BIGNUM)
177 if (BN_bn2bin(v, d) != (int)len_bytes)
179 if ((r = sshbuf_reserve(buf, len_bytes + 2, &dp)) < 0)
    [all...]
  /external/boringssl/src/ssl/test/
packeted_bio.cc 165 uint8_t len_bytes[4]; local
166 ret = ReadAll(bio->next_bio, len_bytes, sizeof(len_bytes));
172 uint32_t len = (len_bytes[0] << 24) | (len_bytes[1] << 16) |
173 (len_bytes[2] << 8) | len_bytes[3];
  /external/elfutils/libdw/
dwarf_getpubnames.c 74 int len_bytes = 4; local
79 len_bytes = 8;
89 mem[cnt].set_start = readp + 2 + 2 * len_bytes - startp;
90 mem[cnt].address_len = len_bytes;
93 || len - (2 + 2 * len_bytes) > max_size - mem[cnt].set_start)
108 readp + 2, len_bytes,
  /external/linux-kselftest/tools/testing/selftests/x86/
mpx-dig.c 290 int search_bd_buf(char *buf, int len_bytes, unsigned long bd_offset_bytes,
297 len_bytes, bd_offset_bytes, buf + len_bytes);
299 for (i = 0; i < len_bytes; i += sizeof(unsigned long)) {
355 dprintf3("%s(%p, %x, %lx, ...) done\n", __func__, buf, len_bytes,
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 3572 uint16 len_bytes; member in struct:wl_mkeep_alive_pkt
4114 uint16 len_bytes; \/* Size of packet to transmit (0 to disable packet re-transmits) *\/ member in struct:wl_keep_alive_pkt
    [all...]

Completed in 918 milliseconds