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

  /external/dtc/tests/
mangle-layout.c 47 int hdrsize; local
50 hdrsize = FDT_V16_SIZE;
52 hdrsize = FDT_V17_SIZE;
56 expand_buf(buf, hdrsize);
57 memset(buf->buf, 0, hdrsize);
  /prebuilts/go/darwin-x86/src/runtime/
profbuf.go 21 // In the circular buffer data, each event takes 2+hdrsize+len(stk)
22 // words: the value 2+hdrsize+len(stk), then the time of the event, then
23 // hdrsize words giving the fixed-size header, and then len(stk) words
43 // overflow entry, which has size 2+hdrsize+1, time set to the time of
96 hdrsize uintptr
207 // a header of hdrsize words and a buffer of at least bufwords words.
208 func newProfBuf(hdrsize, bufwords, tags int) *profBuf {
209 if min := 2 + hdrsize + 1; bufwords < min {
229 b.hdrsize = uintptr(hdrsize)
    [all...]
export_test.go 261 func NewProfBuf(hdrsize, bufwords, tags int) *ProfBuf {
262 return (*ProfBuf)(newProfBuf(hdrsize, bufwords, tags))
  /prebuilts/go/linux-x86/src/runtime/
profbuf.go 21 // In the circular buffer data, each event takes 2+hdrsize+len(stk)
22 // words: the value 2+hdrsize+len(stk), then the time of the event, then
23 // hdrsize words giving the fixed-size header, and then len(stk) words
43 // overflow entry, which has size 2+hdrsize+1, time set to the time of
96 hdrsize uintptr
207 // a header of hdrsize words and a buffer of at least bufwords words.
208 func newProfBuf(hdrsize, bufwords, tags int) *profBuf {
209 if min := 2 + hdrsize + 1; bufwords < min {
229 b.hdrsize = uintptr(hdrsize)
    [all...]
export_test.go 261 func NewProfBuf(hdrsize, bufwords, tags int) *ProfBuf {
262 return (*ProfBuf)(newProfBuf(hdrsize, bufwords, tags))
  /external/iptables/extensions/
libxt_TCPMSS.c 21 static void __TCPMSS_help(int hdrsize)
27 hdrsize);
  /toolchain/binutils/binutils-2.27/gprof/
gmon_io.c 636 unsigned int i, hdrsize;
644 hdrsize = 0;
655 hdrsize = GMON_HDRSIZE_BSD44_32;
659 hdrsize = GMON_HDRSIZE_BSD44_64;
669 hdrsize = GMON_HDRSIZE_OLDBSD_32;
673 hdrsize = GMON_HDRSIZE_OLDBSD_64;
688 * sizeof (UNIT) + hdrsize))
635 unsigned int i, hdrsize; local
  /external/libnl/lib/
msg.c 848 int hdrsize = ops->co_hdrsize - GENL_HDRLEN; local
850 if (hdrsize > 0) {
851 if (*payloadlen < hdrsize)
854 fprintf(ofd, " [HEADER] %d octets\n", hdrsize);
855 dump_hex(ofd, data, hdrsize, 0);
857 *payloadlen -= hdrsize;
858 data += hdrsize;
  /toolchain/binutils/binutils-2.27/libiberty/
simple-object-mach-o.c 1036 size_t hdrsize; local
1060 hdrsize = sizeof (struct mach_o_header_32);
1066 hdrsize = sizeof (struct mach_o_header_64);
    [all...]
  /external/libpcap/
sf-pcap.c 141 size_t hdrsize; member in struct:pcap_sf
363 ps->hdrsize = sizeof(struct pcap_sf_patched_pkthdr);
389 ps->hdrsize = sizeof(struct pcap_sf_pkthdr);
435 amt_read = fread(&sf_hdr, 1, ps->hdrsize, fp);
436 if (amt_read != ps->hdrsize) {
446 (unsigned long)ps->hdrsize,
  /external/libnl/lib/genl/
family.c 116 nl_dump_line(p, " hdrsize %u maxattr %u\n",
161 diff |= FAM_DIFF(HDRSIZE, a->gf_hdrsize != b->gf_hdrsize);
315 void genl_family_set_hdrsize(struct genl_family *family, uint32_t hdrsize)
317 family->gf_hdrsize = hdrsize;
ctrl.c 140 uint32_t hdrsize = nla_get_u32(info->attrs[CTRL_ATTR_HDRSIZE]); local
141 genl_family_set_hdrsize(family, hdrsize);
  /toolchain/binutils/binutils-2.27/gold/
dwp.cc 1039 int hdrsize = elfcpp::Elf_recognizer::max_header_size; local
1040 if (filesize < hdrsize)
1041 hdrsize = filesize;
1043 input_file->file().get_view(0, 0, hdrsize, true, false);
1044 if (!elfcpp::Elf_recognizer::is_elf_file(elf_header, hdrsize))
1053 if (!elfcpp::Elf_recognizer::is_valid_header(elf_header, hdrsize, &size,
    [all...]
  /external/syslinux/gpxe/src/net/80211/
net80211.c 2578 int hdrsize = IEEE80211_TYP_FRAME_HEADER_LEN; local
2586 memcpy ( iob_put ( niob, hdrsize ), frag->iob[0]->data, hdrsize ); local
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
mach-o.c 4909 unsigned int hdrsize; local
    [all...]

Completed in 1254 milliseconds