Home
last modified time | relevance | path

Searched refs:qbuf (Results 1 – 12 of 12) sorted by relevance

/external/webrtc/webrtc/base/
Dbase64.cc140 unsigned char qbuf[4], bool* padded) in GetNextQuantum()
144 qbuf[byte_len] = DecodeTable[static_cast<unsigned char>(data[*dpos])]; in GetNextQuantum()
145 if ((il == qbuf[byte_len]) || (illegal_pads && (pd == qbuf[byte_len]))) { in GetNextQuantum()
149 } else if (sp == qbuf[byte_len]) { in GetNextQuantum()
153 } else if (pd == qbuf[byte_len]) { in GetNextQuantum()
178 qbuf[i] = 0; in GetNextQuantum()
224 unsigned char c, qbuf[4]; in DecodeFromArrayTemplate() local
227 data, len, &dpos, qbuf, &padded); in DecodeFromArrayTemplate()
228 c = (qbuf[0] << 2) | ((qbuf[1] >> 4) & 0x3); in DecodeFromArrayTemplate()
231 c = ((qbuf[1] << 4) & 0xf0) | ((qbuf[2] >> 2) & 0xf); in DecodeFromArrayTemplate()
[all …]
Dbase64.h95 unsigned char qbuf[4], bool* padded);
/external/c-ares/
Dares_query.c112 unsigned char *qbuf; in ares_query() local
117 status = ares_mkquery(name, dnsclass, type, channel->next_id, rd, &qbuf, in ares_query()
121 if (qbuf != NULL) free(qbuf); in ares_query()
132 ares_free_string(qbuf); in ares_query()
140 ares_send(channel, qbuf, qlen, qcallback, qquery); in ares_query()
141 ares_free_string(qbuf); in ares_query()
Dares_send.c41 void ares_send(ares_channel channel, const unsigned char *qbuf, int qlen, in ares_send() argument
80 query->qid = (unsigned short)DNS_HEADER_QID(qbuf); in ares_send()
89 memcpy(query->tcpbuf + 2, qbuf, qlen); in ares_send()
93 query->qbuf = query->tcpbuf + 2; in ares_send()
Dares_process.c96 static int same_questions(const unsigned char *qbuf, int qlen,
568 if ((q->qid == id) && same_questions(q->qbuf, q->qlen, abuf, alen)) in process_answer()
785 if (swrite(server->udp_socket, query->qbuf, query->qlen) == -1) in ares__send_query()
1100 static int same_questions(const unsigned char *qbuf, int qlen, in same_questions() argument
1117 q.qdcount = DNS_HEADER_QDCOUNT(qbuf); in same_questions()
1123 q.p = qbuf + HFIXEDSZ; in same_questions()
1127 if (ares_expand_name(q.p, qbuf, qlen, &q.name, &q.namelen) in same_questions()
1131 if (q.p + QFIXEDSZ > qbuf + qlen) in same_questions()
Dares_private.h200 const unsigned char *qbuf; member
Dares.h342 const unsigned char *qbuf,
DCHANGES676 DNS_HEADER_QID(qbuf); Valgrind says that qbuf has unitialised bytes. And
677 qbuf has uninitialised bytes because of channel->next_id . And next_id is
/external/mesa3d/src/gallium/drivers/radeon/
Dr600_query.c363 struct r600_query_buffer *qbuf = prev; in r600_query_hw_destroy() local
365 r600_resource_reference(&qbuf->buf, NULL); in r600_query_hw_destroy()
366 FREE(qbuf); in r600_query_hw_destroy()
635 struct r600_query_buffer *qbuf = MALLOC_STRUCT(r600_query_buffer); in r600_query_hw_emit_start() local
636 *qbuf = query->buffer; in r600_query_hw_emit_start()
638 query->buffer.previous = qbuf; in r600_query_hw_emit_start()
744 struct r600_query_buffer *qbuf; in r600_emit_query_predication() local
779 for (qbuf = &query->buffer; qbuf; qbuf = qbuf->previous) { in r600_emit_query_predication()
781 uint64_t va = qbuf->buf->gpu_address; in r600_emit_query_predication()
783 while (results_base < qbuf->results_end) { in r600_emit_query_predication()
[all …]
/external/toybox/toys/pending/
Dhost.c73 unsigned char qbuf[280], abuf[512], *p; in host_main() local
116 qlen = res_mkquery(0, name, 1, type, 0, 0, 0, qbuf, sizeof qbuf); in host_main()
130 send(s, qbuf, qlen, 0); in host_main()
132 } else alen = res_send(qbuf, qlen, abuf, sizeof abuf); in host_main()
/external/v4l2_codec2/vda/
Dv4l2_slice_video_decode_accelerator.cc1101 struct v4l2_buffer qbuf; in EnqueueInputRecord() local
1103 memset(&qbuf, 0, sizeof(qbuf)); in EnqueueInputRecord()
1105 qbuf.index = index; in EnqueueInputRecord()
1106 qbuf.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE; in EnqueueInputRecord()
1107 qbuf.memory = V4L2_MEMORY_MMAP; in EnqueueInputRecord()
1108 qbuf.m.planes = qbuf_planes; in EnqueueInputRecord()
1109 qbuf.m.planes[0].bytesused = input_record.bytes_used; in EnqueueInputRecord()
1110 qbuf.length = input_planes_count_; in EnqueueInputRecord()
1111 qbuf.config_store = config_store; in EnqueueInputRecord()
1112 IOCTL_OR_ERROR_RETURN_FALSE(VIDIOC_QBUF, &qbuf); in EnqueueInputRecord()
[all …]
/external/kernel-headers/original/uapi/linux/
Di2o-dev.h90 void __user *qbuf; /* Pointer to HTTP query string */ member