/third_party/vk-gl-cts/external/amber/src/src/amberscript/ |
H A D | parser_buffer_test.cc | 63 const auto& buffers = script->GetBuffers(); in TEST_F() local 64 ASSERT_EQ(1U, buffers.size()); in TEST_F() 66 ASSERT_TRUE(buffers[0] != nullptr); in TEST_F() 67 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F() 69 auto* buffer = buffers[0].get(); in TEST_F() 96 const auto& buffers = script->GetBuffers(); in TEST_F() local 97 ASSERT_EQ(1U, buffers.size()); in TEST_F() 99 ASSERT_TRUE(buffers[0] != nullptr); in TEST_F() 100 EXPECT_EQ("my_buffer", buffers[0]->GetName()); in TEST_F() 102 auto* buffer = buffers[ in TEST_F() 129 const auto& buffers = script->GetBuffers(); TEST_F() local 162 const auto& buffers = script->GetBuffers(); TEST_F() local 194 const auto& buffers = script->GetBuffers(); TEST_F() local 227 const auto& buffers = script->GetBuffers(); TEST_F() local 260 const auto& buffers = script->GetBuffers(); TEST_F() local 289 const auto& buffers = script->GetBuffers(); TEST_F() local 318 const auto& buffers = script->GetBuffers(); TEST_F() local 347 const auto& buffers = script->GetBuffers(); TEST_F() local 376 const auto& buffers = script->GetBuffers(); TEST_F() local 406 const auto& buffers = script->GetBuffers(); TEST_F() local 437 const auto& buffers = script->GetBuffers(); TEST_F() local 471 const auto& buffers = script->GetBuffers(); TEST_F() local 518 const auto& buffers = script->GetBuffers(); TEST_F() local 553 const auto& buffers = script->GetBuffers(); TEST_F() local 588 const auto& buffers = script->GetBuffers(); TEST_F() local 623 const auto& buffers = script->GetBuffers(); TEST_F() local 652 const auto& buffers = script->GetBuffers(); TEST_F() local 679 const auto& buffers = script->GetBuffers(); TEST_F() local 803 const auto& buffers = script->GetBuffers(); TEST_P() local 938 const auto& buffers = script->GetBuffers(); TEST_F() local 986 const auto& buffers = script->GetBuffers(); TEST_F() local 1031 const auto& buffers = script->GetBuffers(); TEST_F() local 1089 const auto& buffers = script->GetBuffers(); TEST_F() local 1175 const auto& buffers = script->GetBuffers(); TEST_F() local 1194 const auto& buffers = script->GetBuffers(); TEST_F() local 1242 const auto& buffers = script->GetBuffers(); TEST_F() local 1268 const auto& buffers = script->GetBuffers(); TEST_F() local 1294 const auto& buffers = script->GetBuffers(); TEST_F() local [all...] |
H A D | parser_image_test.cc | 208 const auto& buffers = script->GetBuffers(); in TEST_F() local 209 ASSERT_EQ(1U, buffers.size()); in TEST_F() 211 ASSERT_TRUE(buffers[0] != nullptr); in TEST_F() 212 EXPECT_EQ("image", buffers[0]->GetName()); in TEST_F() 214 auto* buffer = buffers[0].get(); in TEST_F() 232 const auto& buffers = script->GetBuffers(); in TEST_F() local 233 ASSERT_EQ(1U, buffers.size()); in TEST_F() 235 ASSERT_TRUE(buffers[0] != nullptr); in TEST_F() 236 EXPECT_EQ("image", buffers[0]->GetName()); in TEST_F() 238 auto* buffer = buffers[ in TEST_F() 256 const auto& buffers = script->GetBuffers(); TEST_F() local 297 const auto& buffers = script->GetBuffers(); TEST_F() local 327 const auto& buffers = script->GetBuffers(); TEST_F() local [all...] |
/third_party/node/test/common/ |
H A D | http2.js | 89 const buffers = [payload]; 91 buffers.unshift(Buffer.from([padlen])); 92 buffers.push(PADDING.slice(0, padlen)); 97 buffers.unshift(this[kFrameData]); 98 this[kFrameData] = Buffer.concat(buffers); 107 const buffers = [payload]; 109 buffers.unshift(Buffer.from([padlen])); 110 buffers.push(PADDING.slice(0, padlen)); 115 buffers.unshift(this[kFrameData]); 116 this[kFrameData] = Buffer.concat(buffers); [all...] |
H A D | dns.js | 193 const buffers = []; 196 buffers.push(new Uint16Array([ 207 buffers.push(writeDomainName(q.domain)); 208 buffers.push(new Uint16Array([ 220 buffers.push(writeDomainName(rr.domain)); 221 buffers.push(new Uint16Array([ 225 buffers.push(new Int32Array([rr.ttl])); 228 buffers.push(rdLengthBuf); 233 buffers.push(new Uint8Array(rr.address.split('.'))); 237 buffers [all...] |
H A D | udppair.js | 17 (wrap, buffers, addr) => this._write(wrap, buffers, addr); 48 _write(wrap, buffers, addr) { 49 this.emit('send', { buffers, addr }); 64 buffers, 80 for (const buffer of buffers) {
|
/third_party/python/Objects/stringlib/ |
H A D | join.h | 18 Py_buffer *buffers = NULL; in bytes_join() local 46 buffers = PyMem_NEW(Py_buffer, seqlen); in bytes_join() 47 if (buffers == NULL) { in bytes_join() 54 buffers = static_buffers; in bytes_join() 67 buffers[i].obj = item; in bytes_join() 68 buffers[i].buf = PyBytes_AS_STRING(item); in bytes_join() 69 buffers[i].len = PyBytes_GET_SIZE(item); in bytes_join() 72 if (PyObject_GetBuffer(item, &buffers[i], PyBUF_SIMPLE) != 0) { in bytes_join() 88 itemlen = buffers[i].len; in bytes_join() 126 Py_ssize_t n = buffers[ in bytes_join() [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | buffers.c | 27 * \file buffers.c 34 #include "buffers.h" 54 * Return bitmask of BUFFER_BIT_* flags indicating which color buffers are 111 * 2) Pbuffers are back buffers from the application point of view, in _mesa_back_to_front_if_single_buffered() 112 * but they are front buffers from the Mesa point of view, in _mesa_back_to_front_if_single_buffered() 134 * Given a GLenum naming one or more color buffers (such as 311 /* none of the named color buffers exist! */ in draw_buffer() 421 * \param buffers array [n] of renderbuffer names. Unlike glDrawBuffer, the 429 const GLenum *buffers, const char *caller, bool no_error) in draw_buffers() 452 "%s(n > maximum number of draw buffers)", calle in draw_buffers() 428 draw_buffers(struct gl_context *ctx, struct gl_framebuffer *fb, GLsizei n, const GLenum *buffers, const char *caller, bool no_error) draw_buffers() argument 638 draw_buffers_error(struct gl_context *ctx, struct gl_framebuffer *fb, GLsizei n, const GLenum *buffers, const char *caller) draw_buffers_error() argument 646 draw_buffers_no_error(struct gl_context *ctx, struct gl_framebuffer *fb, GLsizei n, const GLenum *buffers, const char *caller) draw_buffers_no_error() argument 654 _mesa_DrawBuffers_no_error(GLsizei n, const GLenum *buffers) _mesa_DrawBuffers_no_error() argument 662 _mesa_DrawBuffers(GLsizei n, const GLenum *buffers) _mesa_DrawBuffers() argument 758 _mesa_drawbuffers(struct gl_context *ctx, struct gl_framebuffer *fb, GLuint n, const GLenum16 *buffers, const GLbitfield *destMask) _mesa_drawbuffers() argument [all...] |
H A D | glthread_draw.c | 113 struct glthread_attrib_binding *buffers) in upload_vertices() 123 /* Slower upload path where some buffers reference multiple attribs, in upload_vertices() 179 /* Upload buffers. */ in upload_vertices() 197 buffers[num_buffers].buffer = upload_buffer; in upload_vertices() 198 buffers[num_buffers].offset = upload_offset - start; in upload_vertices() 199 buffers[num_buffers].original_pointer = ptr; in upload_vertices() 247 buffers[num_buffers].buffer = upload_buffer; in upload_vertices() 248 buffers[num_buffers].offset = upload_offset - offset; in upload_vertices() 249 buffers[num_buffers].original_pointer = ptr; in upload_vertices() 256 /* Generic DrawArrays structure NOT supporting user buffers 110 upload_vertices(struct gl_context *ctx, unsigned user_buffer_mask, unsigned start_vertex, unsigned num_vertices, unsigned start_instance, unsigned num_instances, struct glthread_attrib_binding *buffers) upload_vertices() argument 332 const struct glthread_attrib_binding *buffers = _mesa_unmarshal_DrawArraysInstancedBaseInstance() local 354 draw_arrays_async_user(struct gl_context *ctx, GLenum mode, GLint first, GLsizei count, GLsizei instance_count, GLuint baseinstance, unsigned user_buffer_mask, const struct glthread_attrib_binding *buffers) draw_arrays_async_user() argument 405 struct glthread_attrib_binding buffers[VERT_ATTRIB_MAX]; draw_arrays() local 442 const struct glthread_attrib_binding *buffers = _mesa_unmarshal_MultiDrawArrays() local 463 multi_draw_arrays_async(struct gl_context *ctx, GLenum mode, const GLint *first, const GLsizei *count, GLsizei draw_count, unsigned user_buffer_mask, const struct glthread_attrib_binding *buffers) multi_draw_arrays_async() argument 548 struct glthread_attrib_binding buffers[VERT_ATTRIB_MAX]; _mesa_marshal_MultiDrawArrays() local 707 const struct glthread_attrib_binding *buffers = _mesa_unmarshal_DrawElementsInstancedBaseVertexBaseInstance() local 743 draw_elements_async_user(struct gl_context *ctx, GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instance_count, GLint basevertex, GLuint baseinstance, bool index_bounds_valid, GLuint min_index, GLuint max_index, struct gl_buffer_object *index_buffer, unsigned user_buffer_mask, const struct glthread_attrib_binding *buffers) draw_elements_async_user() argument 838 struct glthread_attrib_binding buffers[VERT_ATTRIB_MAX]; draw_elements() local 915 const struct glthread_attrib_binding *buffers = _mesa_unmarshal_MultiDrawElementsBaseVertex() local 949 multi_draw_elements_async(struct gl_context *ctx, GLenum mode, const GLsizei *count, GLenum type, const GLvoid *const *indices, GLsizei draw_count, const GLsizei *basevertex, struct gl_buffer_object *index_buffer, unsigned user_buffer_mask, const struct glthread_attrib_binding *buffers) multi_draw_elements_async() argument 1110 struct glthread_attrib_binding buffers[VERT_ATTRIB_MAX]; _mesa_marshal_MultiDrawElementsBaseVertex() local [all...] |
/third_party/node/test/async-hooks/ |
H A D | test-zlib.zlib-binding.deflate.js | 26 // Store all buffers together so that they do not get 28 const buffers = { 40 buffers.writeResult, 42 buffers.dictionary, 48 handle.write(true, buffers.inBuf, 0, 1, buffers.outBuf, 0, 1); 56 handle.write(true, buffers.inBuf, 0, 1, buffers.outBuf, 0, 1); 73 // Do something with `buffers` to keep them alive until here. 74 buffers [all...] |
/third_party/fsverity-utils/lib/ |
H A D | compute_digest.c | 117 struct block_buffer *buffers = &_buffers[1]; in compute_root_hash() local 169 * Allocate the block buffers. Buffer "-1" is for data blocks. in compute_root_hash() 174 buffers[level].data = libfsverity_zalloc(block_size); in compute_root_hash() 175 if (!buffers[level].data) { in compute_root_hash() 180 buffers[num_levels].data = root_hash; in compute_root_hash() 184 buffers[-1].filled = min(block_size, file_size - offset); in compute_root_hash() 186 err = read_fn(fd, buffers[-1].data, buffers[-1].filled); in compute_root_hash() 192 hash_one_block(hash, &buffers[-1], block_size, in compute_root_hash() 195 if (!block_is_full(&buffers[leve in compute_root_hash() [all...] |
/third_party/node/test/parallel/ |
H A D | test-fs-writev-promises.js | 23 let { bytesWritten, buffers } = await handle.writev([Buffer.from('')], 26 assert.deepStrictEqual(buffers, [Buffer.from('')]); 27 ({ bytesWritten, buffers } = await handle.writev(bufferArr, null)); 29 assert.deepStrictEqual(buffers, bufferArr); 34 // fs.promises.writev() with an array of buffers without position. 41 let { bytesWritten, buffers } = await handle.writev([Buffer.from('')]); 43 assert.deepStrictEqual(buffers, [Buffer.from('')]); 44 ({ bytesWritten, buffers } = await handle.writev(bufferArr)); 46 assert.deepStrictEqual(buffers, bufferArr); 56 assert.strictEqual(result.buffers [all...] |
H A D | test-fs-readv-promises.js | 20 // Allocate two buffers, each half the size of exptectedBuff 35 let { bytesRead, buffers } = await handle.readv([Buffer.from('')], 38 assert.deepStrictEqual(buffers, [Buffer.from('')]); 40 ({ bytesRead, buffers } = await handle.readv(bufferArr, null)); 42 assert.deepStrictEqual(buffers, bufferArr); 54 let { bytesRead, buffers } = await handle.readv([Buffer.from('')]); 56 assert.deepStrictEqual(buffers, [Buffer.from('')]); 58 ({ bytesRead, buffers } = await handle.readv(bufferArr)); 60 assert.deepStrictEqual(buffers, bufferArr);
|
H A D | test-http2-window-size.js | 14 // Given a list of buffers and an initial window size, have a server write 17 function run(buffers, initialWindowSize) { 19 const expectedBuffer = Buffer.concat(buffers); 27 if (i < buffers.length) { 33 const drained = stream.write(buffers[i]); 98 for (const buffers of buffersList) { 100 p = p.then(() => run(buffers, initialWindowSize));
|
H A D | test-tls-onread-static-buffer.js | 25 const buffers = []; 35 buffers.push(Buffer.from(buf.slice(0, nread))); 40 assert.deepStrictEqual(Buffer.concat(buffers), smallMessage); 146 const buffers = []; 157 buffers.push(Buffer.from(buf.slice(0, nread))); 169 assert.deepStrictEqual(Buffer.concat(buffers), largeMessage); 180 const buffers = []; 191 buffers.push(Buffer.from(buf.slice(0, nread))); 204 assert.deepStrictEqual(Buffer.concat(buffers), largeMessage);
|
/third_party/mesa3d/src/gallium/winsys/d3d12/wgl/ |
H A D | d3d12_wgl_framebuffer.cpp | 57 struct pipe_resource *buffers[num_buffers]; member 83 if (framebuffer->buffers[i]) { in d3d12_wgl_framebuffer_destroy() 84 d3d12_resource_release(d3d12_resource(framebuffer->buffers[i])); in d3d12_wgl_framebuffer_destroy() 85 pipe_resource_reference(&framebuffer->buffers[i], NULL); in d3d12_wgl_framebuffer_destroy() 141 if (framebuffer->buffers[i]) { in d3d12_wgl_framebuffer_resize() 142 d3d12_resource_release(d3d12_resource(framebuffer->buffers[i])); in d3d12_wgl_framebuffer_resize() 143 pipe_resource_reference(&framebuffer->buffers[i], NULL); in d3d12_wgl_framebuffer_resize() 181 if (framebuffer->buffers[index]) { in d3d12_wgl_framebuffer_get_resource() 182 pipe_reference(NULL, &framebuffer->buffers[index]->reference); in d3d12_wgl_framebuffer_get_resource() 183 return framebuffer->buffers[inde in d3d12_wgl_framebuffer_get_resource() [all...] |
/third_party/mesa3d/src/glx/ |
H A D | dri2.c | 409 DRI2Buffer *buffers; in DRI2GetBuffers() local 436 buffers = malloc(rep.count * sizeof buffers[0]); in DRI2GetBuffers() 437 if (buffers == NULL) { in DRI2GetBuffers() 446 buffers[i].attachment = repBuffer.attachment; in DRI2GetBuffers() 447 buffers[i].name = repBuffer.name; in DRI2GetBuffers() 448 buffers[i].pitch = repBuffer.pitch; in DRI2GetBuffers() 449 buffers[i].cpp = repBuffer.cpp; in DRI2GetBuffers() 450 buffers[i].flags = repBuffer.flags; in DRI2GetBuffers() 456 return buffers; in DRI2GetBuffers() 468 DRI2Buffer *buffers; DRI2GetBuffersWithFormat() local [all...] |
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_cs.c | 58 total_committed_size += enc->buffers[i].committed_size; in vn_cs_encoder_sanity_check() 63 &enc->buffers[enc->buffer_count - 1]; in vn_cs_encoder_sanity_check() 83 struct vn_cs_encoder_buffer *cur_buf = &enc->buffers[enc->buffer_count++]; in vn_cs_encoder_add_buffer() 100 &enc->buffers[enc->buffer_count - 1]; in vn_cs_encoder_commit_buffer() 117 enc->buffers[i].shmem); in vn_cs_encoder_gc_buffers() 133 &enc->buffers[enc->buffer_count - 1]; in vn_cs_encoder_gc_buffers() 135 vn_renderer_shmem_unref(enc->instance->renderer, enc->buffers[i].shmem); in vn_cs_encoder_gc_buffers() 169 vn_renderer_shmem_unref(enc->instance->renderer, enc->buffers[i].shmem); in vn_cs_encoder_fini() 170 if (enc->buffers) in vn_cs_encoder_fini() 171 free(enc->buffers); in vn_cs_encoder_fini() [all...] |
/third_party/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_clear.c | 42 i915_clear_emit(struct pipe_context *pipe, unsigned buffers, in i915_clear_emit() argument 59 if (buffers & PIPE_CLEAR_COLOR) { in i915_clear_emit() 84 if (buffers & PIPE_CLEAR_DEPTH) { in i915_clear_emit() 94 if (buffers & PIPE_CLEAR_STENCIL || in i915_clear_emit() 106 } else if (buffers & PIPE_CLEAR_STENCIL) { in i915_clear_emit() 216 * Clear the given buffers to the specified values. 220 i915_clear_blitter(struct pipe_context *pipe, unsigned buffers, in i915_clear_blitter() argument 230 if (buffers & (PIPE_CLEAR_COLOR0 << i)) { in i915_clear_blitter() 240 if (buffers & PIPE_CLEAR_DEPTHSTENCIL) { in i915_clear_blitter() 242 pipe->clear_depth_stencil(pipe, ps, buffers in i915_clear_blitter() 249 i915_clear_render(struct pipe_context *pipe, unsigned buffers, const struct pipe_scissor_state *scissor_state, const union pipe_color_union *color, double depth, unsigned stencil) i915_clear_render() argument [all...] |
/third_party/mesa3d/src/compiler/glsl/ |
H A D | gl_nir_link_xfb.c | 96 prog->TransformFeedback.BufferStride[buf] = xfb_info->buffers[buf].stride; in gl_nir_link_assign_xfb_resources() 181 * tracking the number of buffers doesn't overflow. in gl_nir_link_assign_xfb_resources() 183 unsigned buffers = 0; in gl_nir_link_assign_xfb_resources() local 184 assert(consts->MaxTransformFeedbackBuffers <= sizeof(buffers) * 8); in gl_nir_link_assign_xfb_resources() 187 if (xfb_info->buffers[buf].stride > 0) { in gl_nir_link_assign_xfb_resources() 188 linked_xfb->Buffers[buf].Stride = xfb_info->buffers[buf].stride / 4; in gl_nir_link_assign_xfb_resources() 189 linked_xfb->Buffers[buf].NumVaryings = xfb_info->buffers[buf].varying_count; in gl_nir_link_assign_xfb_resources() 190 buffers |= 1 << buf; in gl_nir_link_assign_xfb_resources() 194 linked_xfb->ActiveBuffers = buffers; in gl_nir_link_assign_xfb_resources() 211 xfb->buffers[ in gl_to_nir_xfb_info() [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
H A D | SegmentedGrowableMemoryByteArray.java | 32 private List<byte[]> buffers; field in SegmentedGrowableMemoryByteArray 49 * this is too small then there will be a number of small buffers and the cost 59 this.buffers = new ArrayList<byte[]>(); in SegmentedGrowableMemoryByteArray() 113 this.buffers = null; in close() 142 * previously been allocated then it is allocated. Any buffers between this 150 if (index >= this.buffers.size()) { in buffer() 151 // must fill all buffers between the last one created and this one in buffer() 152 for (int i = this.buffers.size(); i < index + 1; i++) { in buffer() 155 this.buffers.add(b); in buffer() 158 b = this.buffers in buffer() [all...] |
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
H A D | freedreno_draw.c | 66 unsigned buffers = 0, restore_buffers = 0; variable 82 buffers |= FD_BUFFER_DEPTH; 101 buffers |= FD_BUFFER_STENCIL; 121 buffers |= PIPE_CLEAR_COLOR0 << i; 182 /* Mark streamout buffers as being written.. */ 189 /* any buffers that haven't been cleared yet, we need to restore: */ 191 /* and any buffers used, need to be resolved: */ 192 batch->resolve |= buffers; 207 * Figure out the buffers/features we need: 259 /* Clip the prims we're writing to the size of the SO buffers 510 fd_clear_depth_stencil(struct pipe_context *pctx, struct pipe_surface *ps, unsigned buffers, double depth, unsigned stencil, unsigned x, unsigned y, unsigned w, unsigned h, bool render_condition_enabled) fd_clear_depth_stencil() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/ |
H A D | fd2_draw.c | 223 unsigned buffers, bool fast_clear) assert_dt 244 if (buffers & (PIPE_CLEAR_DEPTH | PIPE_CLEAR_STENCIL)) { 248 if (buffers & PIPE_CLEAR_DEPTH) { 254 if (buffers & PIPE_CLEAR_STENCIL) { 292 if (buffers & PIPE_CLEAR_COLOR) { 414 fd2_clear_fast(struct fd_context *ctx, unsigned buffers, 445 if (buffers & PIPE_CLEAR_COLOR) 448 if (buffers & (PIPE_CLEAR_DEPTH | PIPE_CLEAR_STENCIL)) { 450 if (!(buffers & PIPE_CLEAR_DEPTH)) 455 !(buffers [all...] |
/third_party/skia/third_party/externals/swiftshader/tests/VulkanUnitTests/ |
H A D | ComputeTests.cpp | 185 uint32_t *buffers; in test() local 186 VK_ASSERT(device->MapMemory(memory, 0, buffersSize, 0, (void **)&buffers)); in test() 188 memset(buffers, 0, buffersSize); in test() 190 buffers[magic0Offset] = magic0; in test() 191 buffers[magic1Offset] = magic1; in test() 192 buffers[magic2Offset] = magic2; in test() 193 buffers[magic3Offset] = magic3; in test() 197 buffers[inOffset + i] = input((uint32_t)i); in test() 201 buffers = nullptr; in test() 283 VK_ASSERT(device->MapMemory(memory, 0, buffersSize, 0, (void **)&buffers)); in test() [all...] |
/third_party/vk-gl-cts/framework/referencerenderer/ |
H A D | rrRenderer.cpp | 1109 RasterizationInternalBuffers& buffers) in rasterizePrimitive() 1126 FragmentShadingContext shadingContext(triangle.v0->outputs, triangle.v1->outputs, triangle.v2->outputs, &buffers.shaderOutputs[0], &buffers.shaderOutputsSrc1[0], buffers.fragmentDepthBuffer, triangle.v2->primitiveID, (int)program.fragmentShader->getOutputs().size(), numSamples, rasterizer.getVisibleFace()); in rasterizePrimitive() 1129 if (buffers.fragmentDepthBuffer && state.fragOps.polygonOffsetEnabled) in rasterizePrimitive() 1140 const int maxFragmentPackets = (int)buffers.fragmentPackets.size(); in rasterizePrimitive() 1145 rasterizer.rasterize(&buffers.fragmentPackets[0], buffers.fragmentDepthBuffer, maxFragmentPackets, numRasterizedPackets); in rasterizePrimitive() 1153 if (buffers.fragmentDepthBuffer && state.fragOps.polygonOffsetEnabled) in rasterizePrimitive() 1155 buffers in rasterizePrimitive() 1104 rasterizePrimitive(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const pa::Triangle& triangle, const tcu::IVec4& renderTargetRect, RasterizationInternalBuffers& buffers) rasterizePrimitive() argument 1172 rasterizePrimitive(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const pa::Line& line, const tcu::IVec4& renderTargetRect, RasterizationInternalBuffers& buffers) rasterizePrimitive() argument 1225 rasterizePrimitive(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const pa::Point& point, const tcu::IVec4& renderTargetRect, RasterizationInternalBuffers& buffers) rasterizePrimitive() argument 1312 RasterizationInternalBuffers buffers; rasterize() local [all...] |
/third_party/libdrm/tegra/ |
H A D | pushbuf.c | 129 struct drm_tegra_submit_buf *buffers, *buffer; in drm_tegra_pushbuf_relocate() local 135 buffers = realloc(job->buffers, size); in drm_tegra_pushbuf_relocate() 136 if (!buffers) in drm_tegra_pushbuf_relocate() 139 buffer = &buffers[job->num_buffers]; in drm_tegra_pushbuf_relocate() 151 job->buffers = buffers; in drm_tegra_pushbuf_relocate()
|