HomeSort by relevance Sort by last modified time
    Searched defs:hdr (Results 401 - 425 of 671) sorted by null

<<11121314151617181920>>

  /external/libnl/lib/
msg.c 113 * struct nlmsghdr hdr = {
117 * struct nl_msg *msg = nlmsg_inherit(&hdr);
148 * struct nlmsghdr *hdr;
152 * hdr = (struct nlmsghdr *) buf;
153 * while (nlmsg_ok(hdr, n)) {
155 * hdr = nlmsg_next(hdr, &n);
419 * @arg hdr Netlink message header template
422 * header. If \a hdr is not NULL it will be used as a template for
427 struct nl_msg *nlmsg_inherit(struct nlmsghdr *hdr)
967 struct nlmsghdr *hdr = nlmsg_hdr(msg); local
    [all...]
  /external/libpcap/
pcap-int.h 305 struct pcap_pkthdr *hdr; member in struct:oneshot_userdata
  /external/opencv/ml/src/
mlem.cpp 485 CvMat* hdr = 0; local
536 CV_CALL( hdr = (CvMat*)cvAlloc( max_count*sizeof(hdr[0]) ));
538 hdr[0] = cvMat( 1, dims, CV_32F );
541 vec[i] = hdr + i;
542 hdr[i] = hdr[0];
555 hdr[j - left].data.fl = train_data.data.fl[j];
568 cvFree( &hdr );
    [all...]
  /external/openfst/src/include/fst/
edit-fst.h 484 FstHeader hdr; local
485 hdr.SetStart(Start());
486 hdr.SetNumStates(NumStates());
490 WriteHeader(strm, header_opts, kFileVersion, &hdr);
659 FstHeader hdr; local
660 if (!impl->ReadHeader(strm, opts, kMinFileVersion, &hdr)) {
663 impl->SetStart(hdr.Start());
vector-fst.h 327 FstHeader hdr; local
328 if (!impl->ReadHeader(strm, opts, kMinFileVersion, &hdr)) {
332 impl->BaseImpl::SetStart(hdr.Start());
333 if (hdr.NumStates() != kNoStateId) {
334 impl->ReserveStates(hdr.NumStates());
338 for (;hdr.NumStates() == kNoStateId || s < hdr.NumStates(); ++s) {
370 if (hdr.NumStates() != kNoStateId && s != hdr.NumStates()) {
538 FstHeader hdr; local
    [all...]
  /external/openssl/apps/
ocsp.c 1336 CONF_VALUE *hdr = sk_CONF_VALUE_value(headers, i); local
    [all...]
  /external/openssl/crypto/asn1/
asn_mime.c 107 static MIME_PARAM *mime_param_find(MIME_HEADER *hdr, char *name);
108 static void mime_hdr_free(MIME_HEADER *hdr);
172 const char *hdr,
176 BIO_printf(out, "-----BEGIN %s-----\n", hdr);
178 BIO_printf(out, "-----END %s-----\n", hdr);
437 MIME_HEADER *hdr; local
449 if(!(hdr = mime_hdr_find(headers, "content-type")) || !hdr->value) {
457 if(!strcmp(hdr->value, "multipart/signed")) {
459 prm = mime_param_find(hdr, "boundary")
579 MIME_HEADER *hdr; local
    [all...]
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jmemmgr.c 99 } hdr; member in union:small_pool_struct
110 } hdr; member in union:large_pool_struct
203 lhdr_ptr = lhdr_ptr->hdr.next) {
205 (long) lhdr_ptr->hdr.bytes_used);
209 shdr_ptr = shdr_ptr->hdr.next) {
211 (long) shdr_ptr->hdr.bytes_used,
212 (long) shdr_ptr->hdr.bytes_left);
283 if (hdr_ptr->hdr.bytes_left >= sizeofobject)
286 hdr_ptr = hdr_ptr->hdr.next;
311 hdr_ptr->hdr.next = NULL;
    [all...]
  /external/qemu/distrib/jpeg-6b/
jmemmgr.c 96 } hdr; member in union:small_pool_struct
107 } hdr; member in union:large_pool_struct
200 lhdr_ptr = lhdr_ptr->hdr.next) {
202 (long) lhdr_ptr->hdr.bytes_used);
206 shdr_ptr = shdr_ptr->hdr.next) {
208 (long) shdr_ptr->hdr.bytes_used,
209 (long) shdr_ptr->hdr.bytes_left);
280 if (hdr_ptr->hdr.bytes_left >= sizeofobject)
283 hdr_ptr = hdr_ptr->hdr.next;
308 hdr_ptr->hdr.next = NULL
    [all...]
  /external/qemu/hw/core/
loader.c 358 static void bswap_uboot_header(uboot_image_header_t *hdr)
361 bswap32s(&hdr->ih_magic);
362 bswap32s(&hdr->ih_hcrc);
363 bswap32s(&hdr->ih_time);
364 bswap32s(&hdr->ih_size);
365 bswap32s(&hdr->ih_load);
366 bswap32s(&hdr->ih_ep);
367 bswap32s(&hdr->ih_dcrc);
463 uboot_image_header_t *hdr = &h; local
471 size = read(fd, hdr, sizeof(uboot_image_header_t))
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
fst.h 43 const FstHeader *hdr = 0,
46 : source(src), header(hdr), isymbols(isym), osymbols(osym) {}
57 bool hdr = true, bool isym = true,
59 : source(src), write_header(hdr),
151 FstHeader hdr; local
153 hdr = *opts.header;
155 if (!hdr.Read(strm, opts.source))
157 ropts.header = &hdr;
161 registr->GetReader(hdr.FstType());
163 LOG(ERROR) << "Fst::Read: Unknown FST type \"" << hdr.FstType(
    [all...]
vector-fst.h 353 FstHeader hdr; local
354 if (!impl->ReadHeaderAndSymbols(strm, opts, kMinFileVersion, &hdr))
356 impl->BaseImpl::SetStart(hdr.Start());
357 impl->ReserveStates(hdr.NumStates());
359 for (StateId s = 0; s < hdr.NumStates(); ++s) {
422 FstHeader hdr; local
423 hdr.SetStart(Start());
424 hdr.SetNumStates(NumStates());
425 WriteHeaderAndSymbols(strm, opts, kFileVersion, &hdr);
  /external/srtp/test/
srtp_driver.c 96 srtp_packet_to_string(srtp_hdr_t *hdr, int packet_len);
381 srtp_hdr_t *hdr; local
385 hdr = (srtp_hdr_t*) malloc(pkt_octet_len + bytes_in_hdr
387 if (!hdr)
390 hdr->version = 2; /* RTP version two */
391 hdr->p = 0; /* no padding needed */
392 hdr->x = 0; /* no header extension */
393 hdr->cc = 0; /* no CSRCs */
394 hdr->m = 0; /* marker bit */
395 hdr->pt = 0xf; /* payload type *
575 srtp_hdr_t *hdr, *hdr2; local
774 srtp_hdr_t *hdr, *hdr2; local
    [all...]
  /external/tcpdump/
sctpHeader.h 210 struct sctpChunkDesc hdr; member in struct:sctpHBunified
217 struct sctpChunkDesc hdr; member in struct:sctpHBsender
  /external/webp/src/dec/
frame.c 98 const VP8FilterHeader* const hdr = &dec->filter_hdr_; local
106 base_level += hdr->level_;
109 base_level = hdr->level_;
114 if (hdr->use_lf_delta_) {
116 level += hdr->ref_lf_delta_[0];
118 level += hdr->mode_lf_delta_[0];
124 if (hdr->sharpness_ > 0) {
125 if (hdr->sharpness_ > 4) {
130 if (ilevel > 9 - hdr->sharpness_) {
131 ilevel = 9 - hdr->sharpness_
    [all...]
vp8.c 142 static void ResetSegmentHeader(VP8SegmentHeader* const hdr) {
143 assert(hdr != NULL);
144 hdr->use_segment_ = 0;
145 hdr->update_map_ = 0;
146 hdr->absolute_delta_ = 1;
147 memset(hdr->quantizer_, 0, sizeof(hdr->quantizer_));
148 memset(hdr->filter_strength_, 0, sizeof(hdr->filter_strength_));
153 VP8SegmentHeader* hdr, VP8Proba* proba)
221 VP8FilterHeader* const hdr = &dec->filter_hdr_; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_hostap.c 61 struct ieee80211_hdr *hdr; local
70 hdr = (struct ieee80211_hdr *) buf;
71 fc = le_to_host16(hdr->frame_control);
78 sa = hdr->addr2;
80 event.rx_from_unknown.bssid = get_hdr_bssid(hdr, len);
84 pos = (u8 *) (hdr + 1);
85 left = len - sizeof(*hdr);
122 struct ieee80211_hdr *hdr; local
126 hdr = (struct ieee80211_hdr *) buf;
127 fc = le_to_host16(hdr->frame_control)
142 struct ieee80211_hdr *hdr; local
270 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) msg; local
287 struct ieee80211_hdr *hdr; local
1143 struct ieee80211_hdr hdr; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_peap.c 456 * the buffer is large enough to contain full request (hdr->length bytes) and
595 struct eap_hdr *hdr = wpabuf_mhead(req); local
596 size_t len = be_to_host16(hdr->length);
606 pos = (u8 *) (hdr + 1);
610 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1);
647 hdr->identifier);
686 hdr, resp))
727 data->pending_phase2_req = wpabuf_alloc_copy(hdr, len);
742 struct eap_hdr *hdr, *rhdr; local
787 hdr = wpabuf_mhead(in_decrypted)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_peap.c 435 struct eap_hdr *hdr; local
437 req_len = sizeof(*hdr);
438 hdr = os_zalloc(req_len);
439 if (hdr == NULL)
442 hdr->code = success ? EAP_CODE_SUCCESS : EAP_CODE_FAILURE;
443 hdr->identifier = id;
444 hdr->length = host_to_be16(req_len);
447 (u8 *) hdr, req_len);
449 wpabuf_set(&msgbuf, hdr, req_len);
451 os_free(hdr);
864 const struct eap_hdr *hdr; local
1000 const struct eap_hdr *hdr; local
    [all...]
eap_server_ttls.c 801 struct eap_hdr *hdr; local
814 hdr = (struct eap_hdr *) in_data;
815 pos = (u8 *) (hdr + 1);
817 if (in_len > sizeof(*hdr) && *pos == EAP_TYPE_NAK) {
818 left = in_len - sizeof(*hdr);
906 struct eap_hdr *hdr; local
919 if (eap_len < sizeof(*hdr)) {
925 hdr = (struct eap_hdr *) eap;
926 len = be_to_host16(hdr->length);
928 "identifier=%d length=%lu", hdr->code, hdr->identifier
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius_client.c 716 struct radius_hdr *hdr; local
753 hdr = radius_msg_get_hdr(msg);
760 switch (hdr->code) {
784 hdr->identifier)
796 msg_type, hdr->identifier);
845 msg_type, hdr->code, hdr->identifier,
    [all...]
  /external/wpa_supplicant_8/src/tls/
x509v3.c 184 struct asn1_hdr hdr; local
194 if (asn1_get_next(buf, len, &hdr) < 0 ||
195 hdr.class != ASN1_CLASS_UNIVERSAL ||
196 hdr.tag != ASN1_TAG_SEQUENCE) {
199 hdr.class, hdr.tag);
202 pos = hdr.payload;
203 end = pos + hdr.length;
223 struct asn1_hdr hdr; local
236 if (asn1_get_next(pos, end - pos, &hdr) < 0 |
295 struct asn1_hdr hdr; local
653 struct asn1_hdr hdr; local
727 struct asn1_hdr hdr; local
764 struct asn1_hdr hdr; local
948 struct asn1_hdr hdr; local
1026 struct asn1_hdr hdr; local
1053 struct asn1_hdr hdr; local
1110 struct asn1_hdr hdr; local
1192 struct asn1_hdr hdr; local
1222 struct asn1_hdr hdr; local
1478 struct asn1_hdr hdr; local
1589 struct asn1_hdr hdr; local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp_web.c 919 char *hdr = http_request_get_hdr(req); local
939 (u8 *) hdr, os_strlen(hdr));
942 h = hdr;
1138 char *hdr = http_request_get_hdr(req); local
1149 h = hdr;
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 48 const llvm::ELF::Elf32_Ehdr* hdr = local
50 if (0 == memcmp(llvm::ELF::ElfMagic, hdr, 4))
271 const llvm::ELF::Elf32_Ehdr* hdr = local
274 return (hdr->e_ident[llvm::ELF::EI_DATA] == llvm::ELF::ELFDATA2LSB);
280 const llvm::ELF::Elf32_Ehdr* hdr = local
284 return (hdr->e_machine == target().getInfo().machine());
285 return (mcld::bswap16(hdr->e_machine) == target().getInfo().machine());
291 const llvm::ELF::Elf32_Ehdr* hdr = local
295 type = hdr->e_type;
297 type = mcld::bswap16(hdr->e_type)
573 const llvm::ELF::Elf64_Ehdr* hdr = local
792 const llvm::ELF::Elf64_Ehdr* hdr = local
801 const llvm::ELF::Elf64_Ehdr* hdr = local
812 const llvm::ELF::Elf64_Ehdr* hdr = local
    [all...]
  /hardware/qcom/msm8x84/kernel-headers/linux/
msm_rmnet.h 147 struct QMI_QOS_HDR_S hdr; member in struct:qmi_qos_hdr8_s

Completed in 1078 milliseconds

<<11121314151617181920>>