Searched defs:hdr (Results 1 - 25 of 420) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A D2007-10-01-StructResize.cpp10 int Foo(Bork *hdr) { argument
11 hdr->f1 = 7;
12 hdr->f2 = 927;
/external/libnfc-nci/src/nfa/include/
H A Dnfa_nv_ci.h37 BT_HDR hdr; member in struct:__anon10097
46 BT_HDR hdr; member in struct:__anon10098
/external/libnl/tests/
H A Dtest-genl.c7 void *hdr; local
17 hdr = genlmsg_put(msg, NL_AUTO_PID, NL_AUTO_SEQ, GENL_ID_CTRL,
19 if (hdr == NULL)
/external/tcpdump/
H A Dprint-bt.c45 const pcap_bluetooth_h4_header* hdr = (const pcap_bluetooth_h4_header*)p; local
55 ND_PRINT((ndo, "hci length %d, direction %s, ", length, (EXTRACT_32BITS(&hdr->direction)&0x1)?"in":"out"));
H A Dprint-enc.c94 const struct enchdr *hdr; local
101 hdr = (struct enchdr *)p;
102 flags = hdr->flags;
110 ND_PRINT((ndo, "SPI 0x%08x: ", EXTRACT_32BITS(&hdr->spi)));
116 switch (hdr->af) {
H A Dprint-nflog.c49 nflog_hdr_print(netdissect_options *ndo, const nflog_hdr_t *hdr, u_int length) argument
51 ND_PRINT((ndo, "version %d, resource ID %d", hdr->nflog_version, ntohs(hdr->nflog_rid)));
56 hdr->nflog_family),
57 hdr->nflog_family));
62 hdr->nflog_family)));
72 const nflog_hdr_t *hdr = (const nflog_hdr_t *)p; local
84 if (!(hdr->nflog_version) == 0) {
85 ND_PRINT((ndo, "version %u (unknown)", hdr->nflog_version));
90 nflog_hdr_print(ndo, hdr, lengt
[all...]
/external/vboot_reference/firmware/lib/
H A Dregion-fw.c23 VbPublicKey hdr, *key; local
28 sizeof(VbPublicKey), &hdr);
33 size = hdr.key_offset + hdr.key_size;
34 if (size < sizeof(hdr))
35 size = sizeof(hdr);
/external/e2fsprogs/e2fsck/
H A Dmtrace.c86 __ptr_t hdr; local
89 hdr = (__ptr_t) malloc (size);
93 fprintf (mallstream, "+ %p %d\n", hdr, size);
95 if (hdr == mallwatch)
98 return hdr;
107 __ptr_t hdr; local
115 hdr = (__ptr_t) realloc (ptr, size);
119 if (hdr == NULL)
123 fprintf (mallstream, "< %p\n> %p %d\n", ptr, hdr, size);
125 if (hdr
[all...]
/external/ipsec-tools/src/racoon/
H A Dprivsep.h54 struct admin_com hdr; member in struct:privsep_com_msg
/external/libvncserver/libvncclient/
H A Dcorre.c35 rfbRREHeader hdr; local
41 if (!ReadFromRFBServer(client, (char *)&hdr, sz_rfbRREHeader))
44 hdr.nSubrects = rfbClientSwap32IfLE(hdr.nSubrects);
51 if (!ReadFromRFBServer(client, client->buffer, hdr.nSubrects * (4 + (BPP / 8))))
56 for (i = 0; i < hdr.nSubrects; i++) {
H A Drre.c35 rfbRREHeader hdr; local
40 if (!ReadFromRFBServer(client, (char *)&hdr, sz_rfbRREHeader))
43 hdr.nSubrects = rfbClientSwap32IfLE(hdr.nSubrects);
50 for (i = 0; i < hdr.nSubrects; i++) {
H A Dzlib.c38 rfbZlibHeader hdr; local
62 if (!ReadFromRFBServer(client, (char *)&hdr, sz_rfbZlibHeader))
65 remaining = rfbClientSwap32IfLE(hdr.nBytes);
H A Dultra.c37 rfbZlibHeader hdr; local
42 if (!ReadFromRFBServer(client, (char *)&hdr, sz_rfbZlibHeader))
45 toRead = rfbClientSwap32IfLE(hdr.nBytes);
117 rfbZlibHeader hdr; local
125 if (!ReadFromRFBServer(client, (char *)&hdr, sz_rfbZlibHeader))
128 toRead = rfbClientSwap32IfLE(hdr.nBytes);
/external/opencv3/samples/cpp/tutorial_code/photo/hdr_imaging/
H A Dhdr_imaging.cpp23 Mat hdr; local
25 merge_debevec->process(images, hdr, times, response);
29 tonemap->process(hdr, ldr);
37 imwrite("hdr.hdr", hdr);
/external/valgrind/coregrind/m_ume/
H A Dscript.c47 Bool VG_(match_script)(const void *hdr, SizeT len) argument
49 const HChar* script = hdr;
54 if (0 != VG_(memcmp)(hdr, "#!", 2)) return False;
74 HChar hdr[4096]; local
75 Int len = sizeof hdr;
84 res = VG_(pread)(fd, hdr, len, 0);
92 vg_assert('#' == hdr[0] && '!' == hdr[1]);
94 end = hdr + len;
95 interp = hdr
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dpkcs8.c21 struct asn1_hdr hdr; local
30 if (asn1_get_next(buf, len, &hdr) < 0 ||
31 hdr.class != ASN1_CLASS_UNIVERSAL ||
32 hdr.tag != ASN1_TAG_SEQUENCE) {
37 pos = hdr.payload;
38 end = pos + hdr.length;
41 if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
42 hdr.class != ASN1_CLASS_UNIVERSAL || hdr.tag != ASN1_TAG_INTEGER) {
45 hdr
124 struct asn1_hdr hdr; local
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dpkcs8.c21 struct asn1_hdr hdr; local
30 if (asn1_get_next(buf, len, &hdr) < 0 ||
31 hdr.class != ASN1_CLASS_UNIVERSAL ||
32 hdr.tag != ASN1_TAG_SEQUENCE) {
37 pos = hdr.payload;
38 end = pos + hdr.length;
41 if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
42 hdr.class != ASN1_CLASS_UNIVERSAL || hdr.tag != ASN1_TAG_INTEGER) {
45 hdr
124 struct asn1_hdr hdr; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dpkcs8.c21 struct asn1_hdr hdr; local
30 if (asn1_get_next(buf, len, &hdr) < 0 ||
31 hdr.class != ASN1_CLASS_UNIVERSAL ||
32 hdr.tag != ASN1_TAG_SEQUENCE) {
37 pos = hdr.payload;
38 end = pos + hdr.length;
41 if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
42 hdr.class != ASN1_CLASS_UNIVERSAL || hdr.tag != ASN1_TAG_INTEGER) {
45 hdr
124 struct asn1_hdr hdr; local
[all...]
/external/google-breakpad/src/client/linux/crash_generation/
H A Dcrash_generation_client.cc68 struct cmsghdr* hdr = CMSG_FIRSTHDR(&msg); local
69 hdr->cmsg_level = SOL_SOCKET;
70 hdr->cmsg_type = SCM_RIGHTS;
71 hdr->cmsg_len = CMSG_LEN(sizeof(int));
72 int* p = reinterpret_cast<int*>(CMSG_DATA(hdr));
/external/iproute2/tc/
H A Dem_nbyte.c40 static int nbyte_parse_eopt(struct nlmsghdr *n, struct tcf_ematch_hdr *hdr, argument
99 addraw_l(n, MAX_MSG, hdr, sizeof(*hdr));
107 static int nbyte_print_eopt(FILE *fd, struct tcf_ematch_hdr *hdr, void *data, argument
H A Dem_u32.c36 static int u32_parse_eopt(struct nlmsghdr *n, struct tcf_ematch_hdr *hdr, argument
145 addraw_l(n, MAX_MSG, hdr, sizeof(*hdr));
152 static int u32_print_eopt(FILE *fd, struct tcf_ematch_hdr *hdr, void *data, argument
/external/kernel-headers/original/uapi/linux/
H A Datm_tcp.h35 struct atmtcp_hdr hdr; /* must be first */ member in struct:atmtcp_control
45 * Messge type dir. hdr.v?i type addr qos vcc result
/external/opencv3/3rdparty/libwebp/dec/
H A Dquant.c75 const VP8SegmentHeader* const hdr = &dec->segment_hdr_; local
80 if (hdr->use_segment_) {
81 q = hdr->quantizer_[i];
82 if (!hdr->absolute_delta_) {
/external/opencv3/3rdparty/openexr/IlmImf/
H A DImfCompressor.cpp56 Compressor::Compressor (const Header &hdr): _header (hdr) {} argument
113 newCompressor (Compression c, size_t maxScanLineSize, const Header &hdr) argument
119 return new RleCompressor (hdr, maxScanLineSize);
123 return new ZipCompressor (hdr, maxScanLineSize, 1);
127 return new ZipCompressor (hdr, maxScanLineSize, 16);
131 return new PizCompressor (hdr, maxScanLineSize, 32);
135 return new Pxr24Compressor (hdr, maxScanLineSize, 16);
139 return new B44Compressor (hdr, maxScanLineSize, 32, false);
143 return new B44Compressor (hdr, maxScanLineSiz
153 newTileCompressor(Compression c, size_t tileLineSize, size_t numTileLines, const Header &hdr) argument
[all...]
/external/opencv3/modules/imgproc/src/
H A Dutils.cpp50 CvMat hdr; local
57 mat = cvReshape(mat, &hdr, 2);

Completed in 632 milliseconds

1234567891011>>