Lines Matching full:uint16
64 if (p + sizeof(uint16) > end)
67 consumed = p - pos + sizeof(uint16);
71 seen += sizeof(uint16);
75 uint16 offset;
76 base::ReadBigEndian<uint16>(p, &offset);
118 uint16 rdlen;
135 const char* next = cur_ + consumed + 2 * sizeof(uint16); // QTYPE + QCLASS
219 uint16 DnsResponse::flags() const {
245 const size_t qname_size = parser_.GetOffset() - 2 * sizeof(uint16) - hdr_size;
249 uint16 DnsResponse::qtype() const {
252 const size_t type_offset = parser_.GetOffset() - 2 * sizeof(uint16);
253 uint16 type;
254 base::ReadBigEndian<uint16>(io_buffer_->data() + type_offset, &type);
285 uint16 expected_type = qtype();