Searched refs:le_size (Results 1 – 1 of 1) sorted by relevance
83 int32_t le_size = read_int32(fd); in append_bytes_with_size() local84 if (le_size < 0) { in append_bytes_with_size()87 int32_t size = int32_t(le32toh(le_size)); in append_bytes_with_size()89 bytes->resize(old_size + sizeof(le_size) + size); in append_bytes_with_size()90 memcpy(bytes->data() + old_size, &le_size, sizeof(le_size)); in append_bytes_with_size()91 ReadFdExactly(fd, bytes->data() + old_size + sizeof(le_size), size); in append_bytes_with_size()95 int32_t le_size = read_int32(fd); in skip_bytes_with_size() local96 if (le_size < 0) { in skip_bytes_with_size()99 int32_t size = int32_t(le32toh(le_size)); in skip_bytes_with_size()