Home
last modified time | relevance | path

Searched refs:len_bytes (Results 1 – 5 of 5) sorted by relevance

/external/boringssl/src/ssl/test/
Dpacketed_bio.cc165 uint8_t len_bytes[4]; in PacketedRead() local
166 ret = ReadAll(bio->next_bio, len_bytes, sizeof(len_bytes)); in PacketedRead()
172 uint32_t len = (len_bytes[0] << 24) | (len_bytes[1] << 16) | in PacketedRead()
173 (len_bytes[2] << 8) | len_bytes[3]; in PacketedRead()
/external/elfutils/libdw/
Ddwarf_getpubnames.c74 int len_bytes = 4; in get_offsets() local
79 len_bytes = 8; in get_offsets()
89 mem[cnt].set_start = readp + 2 + 2 * len_bytes - startp; in get_offsets()
90 mem[cnt].address_len = len_bytes; in get_offsets()
93 || len - (2 + 2 * len_bytes) > max_size - mem[cnt].set_start) in get_offsets()
108 readp + 2, len_bytes, in get_offsets()
/external/linux-kselftest/tools/testing/selftests/x86/
Dmpx-dig.c291 int search_bd_buf(char *buf, int len_bytes, unsigned long bd_offset_bytes, in search_bd_buf() argument
298 len_bytes, bd_offset_bytes, buf + len_bytes); in search_bd_buf()
300 for (i = 0; i < len_bytes; i += sizeof(unsigned long)) { in search_bd_buf()
356 dprintf3("%s(%p, %x, %lx, ...) done\n", __func__, buf, len_bytes, in search_bd_buf()
Dprotection_keys.c217 void dump_mem(void *dumpme, int len_bytes) in dump_mem() argument
222 for (i = 0; i < len_bytes; i += sizeof(u64)) { in dump_mem()
/external/scapy/scapy/layers/
Deap.py716 len_bytes = struct.unpack("!H", remain[2:4])[0]
717 param_set_len = self.__class__.PARAM_SET_LEN_MASK & len_bytes