/external/strace/tests-m32/ |
D | s390_sthyi.c | 213 uint16_t hdr_size = *(uint16_t *) (buf + len_pos); in print_hypervisor_header() local 218 if (hdr_size < 32) in print_hypervisor_header() 220 "(got %hu, 32 expected)", level, hdr_size); in print_hypervisor_header() 277 if (hdr_size > 32 && !is_empty(cur + 32, hdr_size - 32)) { in print_hypervisor_header() 279 print_quoted_hex((char *) (cur + 32), hdr_size - 32); in print_hypervisor_header() 293 uint16_t hdr_size = *(uint16_t *) (buf + len_pos); in print_guest_header() local 298 if (hdr_size < 56) in print_guest_header() 300 "(got %hu, 56 expected)", level, hdr_size); in print_guest_header() 453 if (hdr_size > 56 && !is_empty(cur + 56, hdr_size - 56)) { in print_guest_header() 455 print_quoted_hex((char *) (cur + 56), hdr_size - 56); in print_guest_header() [all …]
|
/external/strace/tests-mx32/ |
D | s390_sthyi.c | 213 uint16_t hdr_size = *(uint16_t *) (buf + len_pos); in print_hypervisor_header() local 218 if (hdr_size < 32) in print_hypervisor_header() 220 "(got %hu, 32 expected)", level, hdr_size); in print_hypervisor_header() 277 if (hdr_size > 32 && !is_empty(cur + 32, hdr_size - 32)) { in print_hypervisor_header() 279 print_quoted_hex((char *) (cur + 32), hdr_size - 32); in print_hypervisor_header() 293 uint16_t hdr_size = *(uint16_t *) (buf + len_pos); in print_guest_header() local 298 if (hdr_size < 56) in print_guest_header() 300 "(got %hu, 56 expected)", level, hdr_size); in print_guest_header() 453 if (hdr_size > 56 && !is_empty(cur + 56, hdr_size - 56)) { in print_guest_header() 455 print_quoted_hex((char *) (cur + 56), hdr_size - 56); in print_guest_header() [all …]
|
/external/strace/tests/ |
D | s390_sthyi.c | 213 uint16_t hdr_size = *(uint16_t *) (buf + len_pos); in print_hypervisor_header() local 218 if (hdr_size < 32) in print_hypervisor_header() 220 "(got %hu, 32 expected)", level, hdr_size); in print_hypervisor_header() 277 if (hdr_size > 32 && !is_empty(cur + 32, hdr_size - 32)) { in print_hypervisor_header() 279 print_quoted_hex((char *) (cur + 32), hdr_size - 32); in print_hypervisor_header() 293 uint16_t hdr_size = *(uint16_t *) (buf + len_pos); in print_guest_header() local 298 if (hdr_size < 56) in print_guest_header() 300 "(got %hu, 56 expected)", level, hdr_size); in print_guest_header() 453 if (hdr_size > 56 && !is_empty(cur + 56, hdr_size - 56)) { in print_guest_header() 455 print_quoted_hex((char *) (cur + 56), hdr_size - 56); in print_guest_header() [all …]
|
/external/tcpdump/ |
D | print-geonet.c | 119 int hdr_size = -1; in geonet_print() local 188 hdr_size = 0; in geonet_print() 191 hdr_size = 0; in geonet_print() 215 hdr_size = 0; in geonet_print() 218 hdr_size = 68 - 36; in geonet_print() 232 if (hdr_size >= 0) { in geonet_print() 233 if (length < (u_int)hdr_size) in geonet_print() 235 ND_TCHECK2(*bp, hdr_size); in geonet_print() 236 length -= hdr_size; in geonet_print() 237 bp += hdr_size; in geonet_print()
|
/external/perfetto/src/traced/probes/android_log/ |
D | android_log_data_source.cc | 49 uint16_t hdr_size; // sizeof(struct logger_entry_v4). member 229 size_t hdr_size = reinterpret_cast<logger_entry_v4*>(buf)->hdr_size; in ReadLogSocket() local 230 if (payload_size + hdr_size > static_cast<size_t>(rsize)) { in ReadLogSocket() 233 hdr_size, payload_size, rsize); in ReadLogSocket() 237 char* const end = buf + hdr_size + payload_size; in ReadLogSocket() 243 memcpy(&entry, buf, std::min(hdr_size, sizeof(entry))); in ReadLogSocket() 244 buf += hdr_size; in ReadLogSocket()
|
/external/u-boot/tools/ |
D | bmp_logo.c | 79 uint16_t data_offset, n_colors, hdr_size; in main() local 112 if (fread(&hdr_size, sizeof(uint16_t), 1, fp) != 1) in main() 114 if (hdr_size < 40) in main() 125 skip_bytes(fp, hdr_size - 34); in main()
|
/external/python/cpython2/Lib/ |
D | sunaudio.py | 23 hdr_size = get_long_be(fp.read(4)) 28 excess = hdr_size - 24
|
D | sndhdr.py | 87 hdr_size = f(h[4:8])
|
/external/u-boot/drivers/video/ |
D | video_bmp.c | 205 int hdr_size; in video_bmp_display() local 217 hdr_size = get_unaligned_le16(&bmp->header.size); in video_bmp_display() 218 debug("hdr_size=%d, bmp_bpix=%d\n", hdr_size, bmp_bpix); in video_bmp_display() 219 palette = (void *)bmp + 14 + hdr_size; in video_bmp_display()
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | bpf_flow.c | 68 __u16 hdr_size, in bpf_flow_dissect_get_header() argument 77 if (thoff > (USHRT_MAX - hdr_size)) in bpf_flow_dissect_get_header() 81 if (hdr + hdr_size <= data_end) in bpf_flow_dissect_get_header() 84 if (bpf_skb_load_bytes(skb, thoff, buffer, hdr_size)) in bpf_flow_dissect_get_header()
|
/external/u-boot/lib/efi_loader/ |
D | efi_net.c | 237 size_t hdr_size = sizeof(struct ethernet_hdr); in efi_net_receive() local 256 hdr_size += 4; in efi_net_receive() 257 protlen = ntohs(*(u16 *)&net_rx_packet[hdr_size - 2]); in efi_net_receive() 260 *header_size = hdr_size; in efi_net_receive()
|
/external/elfutils/libdw/ |
D | dwarf_getcfi_elf.c | 73 parse_eh_frame_hdr (const uint8_t *hdr, size_t hdr_size, GElf_Addr hdr_vaddr, in parse_eh_frame_hdr() argument 79 if (hdr_size < 4 || *h++ != 1) /* version */ in parse_eh_frame_hdr() 92 .d = { .d_buf = (void *) hdr, .d_size = hdr_size } in parse_eh_frame_hdr()
|
/external/u-boot/lib/efi/ |
D | efi_info.c | 28 entry = (struct efi_entry_hdr *)((ulong)info + info->hdr_size); in efi_info_get()
|
D | efi_stub.c | 243 info->hdr_size = sizeof(*info); in setup_info_table() 245 priv->next_hdr = (char *)info + info->hdr_size; in setup_info_table()
|
/external/u-boot/common/ |
D | lcd.c | 579 int hdr_size; in lcd_display_bitmap() local 593 hdr_size = get_unaligned_le16(&bmp->header.size); in lcd_display_bitmap() 594 debug("hdr_size=%d, bmp_bpix=%d\n", hdr_size, bmp_bpix); in lcd_display_bitmap()
|
/external/webp/src/mux/ |
D | muxread.c | 114 const size_t hdr_size = ANMF_CHUNK_SIZE; in MuxImageParse() local 115 const WebPData temp = { bytes, hdr_size }; in MuxImageParse() 118 if (size < hdr_size) goto Fail; in MuxImageParse()
|
/external/webp/src/enc/ |
D | vp8l_enc.c | 866 size_t init_byte_position, int* const hdr_size, int* const data_size) { in EncodeImageInternal() argument 889 assert(hdr_size != NULL); in EncodeImageInternal() 1035 *hdr_size = hdr_size_tmp; in EncodeImageInternal() 1037 (int)(VP8LBitWriterNumBytes(bw) - init_byte_position - *hdr_size); in EncodeImageInternal() 1540 int hdr_size = 0; in EncodeStreamHook() local 1639 byte_position, &hdr_size, &data_size); in EncodeStreamHook() 1660 stats->lossless_hdr_size = hdr_size; in EncodeStreamHook()
|
/external/perfetto/src/trace_processor/ |
D | proto_trace_tokenizer.cc | 137 size_t hdr_size = static_cast<size_t>(pos - &partial_buf_[0]); in Parse() local 138 size_t size_incl_header = static_cast<size_t>(field_size + hdr_size); in Parse()
|
/external/python/cpython3/Lib/ |
D | sndhdr.py | 104 hdr_size = func(h[4:8])
|
/external/dtc/ |
D | flattree.c | 35 int hdr_size; member 344 reserve_off = ALIGN(vi->hdr_size, 8); in make_fdt_header() 419 blob = data_append_data(blob, &fdt, vi->hdr_size); in dt_to_blob()
|
/external/u-boot/scripts/dtc/ |
D | flattree.c | 35 int hdr_size; member 344 reserve_off = ALIGN(vi->hdr_size, 8); in make_fdt_header() 419 blob = data_append_data(blob, &fdt, vi->hdr_size); in dt_to_blob()
|
/external/freetype/src/cff/ |
D | cffload.c | 254 idx->hdr_size = 5; in cff_index_init() 260 idx->hdr_size = 3; in cff_index_init() 284 idx->data_offset = idx->start + idx->hdr_size + size; in cff_index_init() 361 FT_STREAM_SEEK( idx->start + idx->hdr_size ) || in cff_index_load_offsets() 519 if ( FT_STREAM_SEEK( idx->start + idx->hdr_size + pos ) ) in cff_index_access_element()
|
/external/u-boot/include/ |
D | efi.h | 260 u32 hdr_size; member
|
/external/freetype/include/freetype/internal/ |
D | cfftypes.h | 76 FT_UInt hdr_size; member
|
/external/e2fsprogs/misc/ |
D | e2image.c | 206 static void write_header(int fd, void *hdr, int hdr_size, int wrt_size) in write_header() argument 212 if (hdr_size > wrt_size) { in write_header() 227 memcpy(header_buf, hdr, hdr_size); in write_header()
|