Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/r600/
Dr600_query.c97 struct r600_query_buffer *qbuf = MALLOC_STRUCT(r600_query_buffer); in r600_emit_query_begin() local
98 *qbuf = query->buffer; in r600_emit_query_begin()
101 query->buffer.previous = qbuf; in r600_emit_query_begin()
216 struct r600_query_buffer *qbuf; in r600_emit_query_predication() local
222 for (qbuf = &query->buffer; qbuf; qbuf = qbuf->previous) { in r600_emit_query_predication()
223 count += qbuf->results_end / query->result_size; in r600_emit_query_predication()
232 for (qbuf = &query->buffer; qbuf; qbuf = qbuf->previous) { in r600_emit_query_predication()
234 uint64_t va = r600_resource_va(&ctx->screen->screen, &qbuf->buf->b.b); in r600_emit_query_predication()
236 while (results_base < qbuf->results_end) { in r600_emit_query_predication()
241 cs->buf[cs->cdw++] = r600_context_bo_reloc(ctx, qbuf->buf, RADEON_USAGE_READ); in r600_emit_query_predication()
[all …]
/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/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/kernel-headers/original/uapi/linux/
Di2o-dev.h90 void __user *qbuf; /* Pointer to HTTP query string */ member