HomeSort by relevance Sort by last modified time
    Searched refs:tptr (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/tcpdump/
print-vtp.c 124 const u_char *tptr; local
130 tptr = pptr;
132 ND_TCHECK2(*tptr, VTP_HEADER_LEN);
134 type = *(tptr+1);
136 *tptr,
148 mgmtd_len = *(tptr + 3);
153 fn_printzp(ndo, tptr + 4, mgmtd_len, NULL);
156 *(tptr+2)));
158 tptr += VTP_HEADER_LEN;
184 ND_TCHECK2(*tptr, 8)
    [all...]
print-udld.c 100 const u_char *tptr; local
105 tptr = pptr;
107 ND_TCHECK2(*tptr, UDLD_HEADER_LEN);
109 code = UDLD_EXTRACT_OPCODE(*tptr);
112 UDLD_EXTRACT_VERSION(*tptr),
115 bittok2str(udld_flags_values, "none", *(tptr+1)),
116 *(tptr+1),
126 ND_PRINT((ndo, "\n\tChecksum 0x%04x (unverified)", EXTRACT_16BITS(tptr+2)));
128 tptr += UDLD_HEADER_LEN;
130 while (tptr < (pptr+length))
    [all...]
print-dtp.c 50 const u_char *tptr; local
55 tptr = pptr;
57 ND_TCHECK2(*tptr, DTP_HEADER_LEN);
60 (*tptr),
70 tptr += DTP_HEADER_LEN;
72 while (tptr < (pptr+length)) {
74 ND_TCHECK2(*tptr, 4);
75 type = EXTRACT_16BITS(tptr);
76 len = EXTRACT_16BITS(tptr+2);
87 ND_TCHECK2(*tptr, len)
    [all...]
print-mpcp.c 135 const u_char *tptr; local
140 tptr=pptr;
143 ND_TCHECK2(*tptr, sizeof(const struct mpcp_common_header_t));
154 tptr += sizeof(const struct mpcp_common_header_t);
161 ND_TCHECK2(*tptr, MPCP_GRANT_NUMBER_LEN);
162 grant_numbers = *tptr & MPCP_GRANT_NUMBER_MASK;
167 *tptr &~ MPCP_GRANT_NUMBER_MASK)));
168 tptr++;
171 ND_TCHECK2(*tptr, sizeof(const struct mpcp_grant_t));
172 mpcp.grant = (const struct mpcp_grant_t *)tptr;
    [all...]
print-lldp.c 648 const u_char *tptr, u_int tlv_len)
658 subtype = *(tptr+3);
670 EXTRACT_16BITS(tptr + 4)));
677 EXTRACT_16BITS(tptr+5),
678 bittok2str(lldp_8021_port_protocol_id_values, "none", *(tptr+4)),
679 *(tptr + 4)));
685 ND_PRINT((ndo, "\n\t vlan id (VID): %u", EXTRACT_16BITS(tptr + 4)));
689 sublen = *(tptr+6);
694 safeputs(ndo, tptr + 7, sublen);
700 sublen = *(tptr+4)
1153 const u_char *tptr, *mptr; local
1358 const u_char *tptr; local
1422 const u_char *tptr; local
    [all...]
print-eap.c 155 const u_char *tptr; local
159 tptr = cp;
180 tptr += sizeof(const struct eap_frame_t);
185 type = *(tptr);
186 len = EXTRACT_16BITS(tptr+2);
190 *(tptr+1),
193 ND_TCHECK2(*tptr, len);
196 subtype = *(tptr+4);
198 tok2str(eap_type_values, "unknown", *(tptr+4)),
199 *(tptr + 4)))
    [all...]
print-ldp.c 233 ND_TCHECK2(*tptr, minlen); if (tlv_tlen < minlen) goto badtlv;
237 register const u_char *tptr,
252 ldp_tlv_header = (const struct ldp_tlv_header *)tptr;
272 tptr+=sizeof(struct ldp_tlv_header);
279 EXTRACT_16BITS(tptr),
280 (EXTRACT_16BITS(tptr+2)&0x8000) ? "Targeted" : "Link",
281 (EXTRACT_16BITS(tptr+2)&0x4000) ? ", Request for targeted Hellos" : ""));
286 ND_PRINT((ndo, "\n\t IPv4 Transport Address: %s", ipaddr_string(ndo, tptr)));
290 ND_PRINT((ndo, "\n\t IPv6 Transport Address: %s", ip6addr_string(ndo, tptr)));
294 ND_PRINT((ndo, "\n\t Sequence Number: %u", EXTRACT_32BITS(tptr)));
565 const u_char *tptr,*msg_tptr; local
    [all...]
print-cdp.c 98 const u_char *tptr; local
105 tptr = pptr; /* temporary pointer */
107 ND_TCHECK2(*tptr, CDP_HEADER_LEN);
108 ND_PRINT((ndo, "CDPv%u, ttl: %us", *(tptr + CDP_HEADER_VERSION_OFFSET),
109 *(tptr + CDP_HEADER_TTL_OFFSET)));
111 ND_PRINT((ndo, ", checksum: 0x%04x (unverified), length %u", EXTRACT_16BITS(tptr+CDP_HEADER_CHECKSUM_OFFSET), length));
112 tptr += CDP_HEADER_LEN;
114 while (tptr < (pptr+length)) {
115 ND_TCHECK2(*tptr, CDP_TLV_HEADER_LEN); /* read out Type and Length */
116 type = EXTRACT_16BITS(tptr+CDP_TLV_TYPE_OFFSET)
    [all...]
print-isoclns.c 899 const uint8_t *tptr; local
1298 const uint8_t *tptr; local
2156 const uint8_t *optr, *pptr, *tptr; local
    [all...]
print-vqp.c 105 const u_char *tptr; local
111 tptr=pptr;
148 tptr+=sizeof(const struct vqp_common_header_t);
153 vqp_obj_tlv = (const struct vqp_obj_tlv_t *)tptr;
156 tptr+=sizeof(struct vqp_obj_tlv_t);
169 ND_TCHECK2(*tptr, vqp_obj_len);
173 ND_PRINT((ndo, "%s (0x%08x)", ipaddr_string(ndo, tptr), EXTRACT_32BITS(tptr)));
180 safeputs(ndo, tptr, vqp_obj_len);
185 ND_PRINT((ndo, "%s", etheraddr_string(ndo, tptr)));
    [all...]
print-rpki-rtr.c 175 rpki_rtr_pdu_print (netdissect_options *ndo, const u_char *tptr, u_int indent)
181 pdu_header = (const rpki_rtr_pdu *)tptr;
184 ND_TCHECK2(*tptr, pdu_len);
229 pdu = (const rpki_rtr_pdu_ipv4_prefix *)tptr;
242 pdu = (const rpki_rtr_pdu_ipv6_prefix *)tptr;
256 pdu = (const rpki_rtr_pdu_error_report *)tptr;
258 ND_TCHECK2(*tptr, encapsulated_pdu_length);
267 tptr += sizeof(*pdu);
276 if (rpki_rtr_pdu_print(ndo, tptr, indent+2))
280 tptr += encapsulated_pdu_length
323 const u_char *tptr; local
    [all...]
print-cfm.c 220 register const u_char *tptr)
230 network_addr_type = *tptr;
240 ND_PRINT((ndo, ", %s", ipaddr_string(ndo, tptr + 1)));
244 ND_PRINT((ndo, ", %s", ip6addr_string(ndo, tptr + 1)));
261 const uint8_t *tptr, *tlv_ptr; local
278 tptr=pptr;
308 tptr += sizeof(const struct cfm_common_header_t);
321 msg_ptr.cfm_ccm = (const struct cfm_ccm_t *)tptr;
448 msg_ptr.cfm_ltm = (const struct cfm_ltm_t *)tptr;
471 msg_ptr.cfm_ltr = (const struct cfm_ltr_t *)tptr;
    [all...]
print-bgp.c 1296 const u_char *tptr = pptr; local
1356 const u_char *tptr; local
2606 const u_char *tptr; local
    [all...]
print-lwapp.c 170 const u_char *tptr; local
174 tptr=pptr;
178 ND_TCHECK2(*tptr, 6);
216 ND_PRINT((ndo, "\n\tAP identity: %s", etheraddr_string(ndo, tptr)));
217 tptr+=sizeof(const struct lwapp_transport_header)+6;
219 tptr+=sizeof(const struct lwapp_transport_header);
225 ND_TCHECK2(*tptr, sizeof(struct lwapp_control_header));
227 lwapp_control_header = (const struct lwapp_control_header *)tptr;
239 ND_TCHECK2(*tptr, msg_tlen);
278 tptr += sizeof(struct lwapp_control_header) + msg_tlen
292 const u_char *tptr; local
    [all...]
print-ospf.c 185 const uint8_t *tptr, u_int ls_length)
191 ND_TCHECK2(*tptr, 4);
196 tlv_type = EXTRACT_16BITS(tptr);
197 tlv_length = EXTRACT_16BITS(tptr+2);
198 tptr+=4;
217 ND_TCHECK2(*tptr, tlv_length);
225 ND_PRINT((ndo, "%us", EXTRACT_32BITS(tptr)));
234 tok2str(lsa_opaque_grace_tlv_reason_values, "Unknown", *tptr),
235 *tptr));
243 ND_PRINT((ndo, "%s", ipaddr_string(ndo, tptr)));
626 const uint8_t *tptr; local
    [all...]
print-slow.c 350 register const u_char *tptr, register u_int tlen,
369 ND_TCHECK2(*tptr, sizeof(struct tlv_header_t));
370 tlv_header = (const struct tlv_header_t *)tptr;
399 ND_TCHECK2(*tptr, tlv_len);
401 tlv_tptr=tptr+sizeof(struct tlv_header_t);
472 print_unknown_data(ndo, tptr+sizeof(struct tlv_header_t), "\n\t ",
476 tptr+=tlv_len;
491 register const u_char *tptr, register u_int tlen)
518 ptr.slow_oam_common_header = (const struct slow_oam_common_header_t *)tptr;
522 tptr += sizeof(struct slow_oam_common_header_t)
    [all...]
print-sflow.c 493 const u_char *tptr; local
501 tptr = pointer;
508 sflow_counter_record = (const struct sflow_counter_record_t *)tptr;
521 tptr += sizeof(struct sflow_counter_record_t);
529 if (print_sflow_counter_generic(ndo, tptr, tlen))
533 if (print_sflow_counter_ethernet(ndo, tptr, tlen))
537 if (print_sflow_counter_token_ring(ndo, tptr,tlen))
541 if (print_sflow_counter_basevg(ndo, tptr, tlen))
545 if (print_sflow_counter_vlan(ndo, tptr, tlen))
549 if (print_sflow_counter_processor(ndo, tptr, tlen)
712 const u_char *tptr; local
876 const u_char *tptr; local
    [all...]
print-rsvp.c 492 const u_char *tptr, u_short obj_tlen)
502 parameter_id = *(tptr);
503 ND_TCHECK2(*(tptr + 2), 2);
504 parameter_length = EXTRACT_16BITS(tptr+2)<<2; /* convert wordcount to bytecount */
510 *(tptr + 1)));
525 ND_TCHECK2(*(tptr + 4), 4);
526 ND_PRINT((ndo, "\n\t\tIS hop count: %u", EXTRACT_32BITS(tptr + 4)));
539 ND_TCHECK2(*(tptr + 4), 4);
540 bw.i = EXTRACT_32BITS(tptr+4);
554 ND_TCHECK2(*(tptr + 4), 4)
1833 const u_char *tptr; local
    [all...]
print-ospf6.c 410 const uint8_t *tptr, u_int lsa_length)
412 const struct lsa6_prefix *lsapp = (const struct lsa6_prefix *)tptr;
471 const uint8_t *tptr; local
487 tptr = (const uint8_t *)lsap+sizeof(struct lsa6_hdr);
573 tptr = (const uint8_t *)lsap->lsa_un.un_inter_ap.inter_ap_prefix;
575 bytelen = ospf6_print_lsaprefix(ndo, tptr, lsa_length);
579 tptr += bytelen;
595 tptr = (const uint8_t *)lsap->lsa_un.un_asla.asla_prefix;
596 lsapp = (const struct lsa6_prefix *)tptr;
597 bytelen = ospf6_print_lsaprefix(ndo, tptr, lsa_length)
    [all...]
print-olsr.c 327 const u_char *tptr, *msg_data; local
329 tptr = pptr;
335 ND_TCHECK2(*tptr, sizeof(struct olsr_common));
337 ptr.common = (const struct olsr_common *)tptr;
345 tptr += sizeof(struct olsr_common);
354 while (tptr < (pptr+length)) {
362 ND_TCHECK2(*tptr, sizeof(struct olsr_msg4));
366 msgptr.v6 = (const struct olsr_msg6 *) tptr;
392 msg_data = tptr + sizeof(struct olsr_msg6);
396 msgptr.v4 = (const struct olsr_msg4 *) tptr;
    [all...]
  /external/libcups/cups/
snprintf.c 42 *tptr, /* Pointer into temporary format */ local
62 tptr = tformat;
63 *tptr++ = *format++;
74 *tptr++ = *format;
89 snprintf(tptr, sizeof(tformat) - (tptr - tformat), "%d", width);
90 tptr += strlen(tptr);
98 if (tptr < (tformat + sizeof(tformat) - 1))
99 *tptr++ = *format
    [all...]
debug.c 343 *tptr, /* Pointer into temporary format */ local
364 tptr = tformat;
365 *tptr++ = *format++;
376 *tptr++ = *format++;
387 snprintf(tptr, sizeof(tformat) - (size_t)(tptr - tformat), "%d", width);
388 tptr += strlen(tptr);
396 if (tptr < (tformat + sizeof(tformat) - 1))
397 *tptr++ = *format
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/asm/
x86_64-mont5.pl 1007 lea ($tp,$num),%rbx # tptr in .sqr4x_sub
1073 my ($i,$j,$tptr)=("%rbp","%rcx",$rptr);
1305 lea 48+8(%rsp,$num,2),$tptr # end of tp[] buffer, &tp[2*$num]
1307 lea -32($tptr,$i),$tptr # end of tp[] window, &tp[2*$num-"$i"]
1315 mov $A0[0],-24($tptr,$i) # t[1]
1321 mov $A0[1],-16($tptr,$i) # t[2]
1339 mov $A0[0],-8($tptr,$j) # t[3]
1364 mov $A0[1],($tptr,$j) # t[4]
1380 mov $A0[0],8($tptr,$j) # t[5
    [all...]
x86_64-mont.pl 812 my ($i,$j,$tptr)=("%rbp","%rcx",$rptr);
1094 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)=
1100 lea 64+32(%rsp),$tptr
1129 mov %r10,-4*8($tptr)
1134 mov %r11,-3*8($tptr)
1138 mov %r12,-2*8($tptr)
1157 lea 4*8($tptr),$tptr
1167 mov %r10,-5*8($tptr)
1169 mov %r11,-4*8($tptr)
    [all...]
  /external/syslinux/core/fs/
diskio_bios.c 49 char *tptr; local
78 tptr = ptr;
81 tptr = core_xfer_buf;
82 freeseg = (0x10000 - ((size_t)tptr & 0xffff)) >> sector_shift;
97 if (tptr != ptr && is_write)
98 memcpy(tptr, ptr, bytes);
104 ireg.ebx.w[0] = OFFS(tptr);
105 ireg.es = SEG(tptr);
148 if (tptr != ptr && !is_write)
149 memcpy(ptr, tptr, bytes)
168 char *tptr; local
    [all...]

Completed in 675 milliseconds

1 2 3 4