/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_query.c | 97 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/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
D | r600_query.c | 97 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/chromium_org/third_party/libjingle/source/talk/base/ |
D | base64.cc | 140 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 …]
|
D | base64.h | 95 unsigned char qbuf[4], bool* padded);
|
/external/chromium_org/third_party/webrtc/base/ |
D | base64.cc | 140 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 …]
|
D | base64.h | 95 unsigned char qbuf[4], bool* padded);
|
/external/valgrind/main/coregrind/m_debuginfo/ |
D | readstabs.c | 161 HChar* qbuf = NULL; in ML_() local 198 VG_(memcpy)(n, qbuf, qidx); in ML_() 200 if (qbuf != NULL) in ML_() 201 ML_(dinfo_free)(qbuf); in ML_() 202 qbuf = n; in ML_() 205 VG_(memcpy)(&qbuf[qidx], string, qlen); in ML_() 208 qbuf[qidx] = '\0'; in ML_() 209 TRACE_SYMTAB("cont: working buf=\"%s\"\n", qbuf); in ML_() 225 if (qbuf != NULL) { in ML_() 227 string = ML_(addStr)(di, qbuf, qidx); in ML_() [all …]
|
/external/chromium_org/content/common/gpu/media/ |
D | v4l2_image_processor.cc | 591 struct v4l2_buffer qbuf; in EnqueueInputRecord() local 593 memset(&qbuf, 0, sizeof(qbuf)); in EnqueueInputRecord() 595 qbuf.index = index; in EnqueueInputRecord() 596 qbuf.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE; in EnqueueInputRecord() 597 qbuf.memory = V4L2_MEMORY_USERPTR; in EnqueueInputRecord() 598 qbuf.m.planes = qbuf_planes; in EnqueueInputRecord() 599 qbuf.length = input_planes_count_; in EnqueueInputRecord() 601 qbuf.m.planes[i].bytesused = media::VideoFrame::PlaneAllocationSize( in EnqueueInputRecord() 603 qbuf.m.planes[i].length = qbuf.m.planes[i].bytesused; in EnqueueInputRecord() 604 qbuf.m.planes[i].m.userptr = in EnqueueInputRecord() [all …]
|
D | v4l2_video_encode_accelerator.cc | 595 struct v4l2_buffer qbuf; in EnqueueInputRecord() local 597 memset(&qbuf, 0, sizeof(qbuf)); in EnqueueInputRecord() 599 qbuf.index = index; in EnqueueInputRecord() 600 qbuf.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE; in EnqueueInputRecord() 601 qbuf.m.planes = qbuf_planes; in EnqueueInputRecord() 605 qbuf.m.planes[i].bytesused = in EnqueueInputRecord() 611 qbuf.m.planes[i].m.userptr = in EnqueueInputRecord() 613 DCHECK(qbuf.m.planes[i].m.userptr); in EnqueueInputRecord() 617 qbuf.m.planes[i].m.fd = frame->dmabuf_fd(i); in EnqueueInputRecord() 618 DCHECK_NE(qbuf.m.planes[i].m.fd, -1); in EnqueueInputRecord() [all …]
|
D | v4l2_video_decode_accelerator.cc | 1116 struct v4l2_buffer qbuf; in EnqueueInputRecord() local 1118 memset(&qbuf, 0, sizeof(qbuf)); in EnqueueInputRecord() 1120 qbuf.index = buffer; in EnqueueInputRecord() 1121 qbuf.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE; in EnqueueInputRecord() 1122 qbuf.timestamp.tv_sec = input_record.input_id; in EnqueueInputRecord() 1123 qbuf.memory = V4L2_MEMORY_MMAP; in EnqueueInputRecord() 1124 qbuf.m.planes = &qbuf_plane; in EnqueueInputRecord() 1125 qbuf.m.planes[0].bytesused = input_record.bytes_used; in EnqueueInputRecord() 1126 qbuf.length = 1; in EnqueueInputRecord() 1127 IOCTL_OR_ERROR_RETURN_FALSE(VIDIOC_QBUF, &qbuf); in EnqueueInputRecord() [all …]
|
/external/kernel-headers/original/uapi/linux/ |
D | i2o-dev.h | 90 void __user *qbuf; /* Pointer to HTTP query string */ member
|