Home
last modified time | relevance | path

Searched refs:buffer (Results 5151 - 5175 of 6014) sorted by relevance

1...<<201202203204205206207208209210>>...241

/third_party/mesa3d/src/gallium/auxiliary/driver_rbug/
H A Drbug_context.c645 cb.buffer = rbug_resource_unwrap(_cb->buffer); in rbug_set_constant_buffer()
796 unwrapped_buffers[i].buffer.resource = in rbug_set_vertex_buffers()
797 rbug_resource_unwrap(_buffers[i].buffer.resource); in rbug_set_vertex_buffers()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingDescriptorUpdateTests.cpp69 // Create layout with two uniform buffer descriptors w/ empty binding between them in EmptyDescriptorUpdateCase()
93 // Create a buffer to be used for update in EmptyDescriptorUpdateCase()
106 vk::Unique<vk::VkBuffer> buffer (createBuffer(vki, device, &bufferCreateInfo)); in EmptyDescriptorUpdateCase()
107 const vk::VkMemoryRequirements requirements = vk::getBufferMemoryRequirements(vki, device, *buffer); in EmptyDescriptorUpdateCase()
110 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset())); in EmptyDescriptorUpdateCase()
115 *buffer, // VkBuffer buffer in EmptyDescriptorUpdateCase()
287 vk::VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT | // For the separate frame buffer image (uses the same format). in checkSupport()
473 // Vertex buffer. in iterate()
478 // Copy data to vertex buffer in iterate()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryRequirementsTests.cpp74 const Unique<VkBuffer> buffer(makeBuffer(vk, device, size, flags, usage)); in getBufferMemoryRequirements()
75 return getBufferMemoryRequirements(vk, device, *buffer); in getBufferMemoryRequirements()
80 const Unique<VkBuffer> buffer (makeBuffer(vk, device, size, flags, usage)); in getBufferMemoryRequirements2()
85 *buffer // VkBuffer buffer in getBufferMemoryRequirements2()
342 de::MovePtr<tcu::TestCaseGroup> bufferGroup(new tcu::TestCaseGroup(group->getTestContext(), "buffer")); in populateTestGroup()
398 log << tcu::TestLog::Message << "Verify a buffer with usage flags: " << de::toString(getBufferUsageFlagsStr(usage)) << tcu::TestLog::EndMessage; in execTest()
410 // - requirements for a particular buffer usage in execTest()
420 "memoryTypeBits differ from the ones in the previous buffer size"); in execTest()
423 "alignment differs from the one in the previous buffer siz in execTest()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shader_object/
H A DvktShaderObjectPerformanceTests.cpp585 de::MovePtr<vk::BufferWithMemory> buffer = de::MovePtr<vk::BufferWithMemory>(new vk::BufferWithMemory(vk, device, alloc, vk::makeBufferCreateInfo(bufferSize, vk::VK_BUFFER_USAGE_VERTEX_BUFFER_BIT), vk::MemoryRequirement::HostVisible)); in iterate() local
649 vk.cmdBindVertexBuffers2(*cmdBuffer, 0u, 1u, &**buffer, &offset, &bufferSize, &stride); in iterate()
999 vk::Move<vk::VkBuffer> buffer = vk::createBuffer(vk, device, &bufferCreateInfo); in iterate() local
1000 const auto bufferMemReqs = vk::getBufferMemoryRequirements(vk, device, *buffer); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesBufferTests.cpp21 * \brief Sparse buffer tests
91 VkDeviceSize resourceSize; //!< buffer size in bytes
98 //! Utility to lay out memory allocations for a sparse buffer, including holes and aliased regions.
118 VkBufferCreateInfo referenceCreateInfo, //!< buffer size is ignored in this info
585 void bindSparseBuffer (const DeviceInterface& vk, const VkDevice device, const VkQueue sparseQueue, const VkBuffer buffer, const SparseAllocation& sparseAllocation, in bindSparseBuffer() argument
590 buffer, // VkBuffer buffer; in bindSparseBuffer()
816 //! Sparse buffer backing a UBO
850 // Set up the sparse buffer in iterate()
904 // Create the buffer in iterate()
973 const VkBuffer buffer = (m_aliased ? *sparseBufferAliased : *sparseBuffer); iterate() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/
H A DvktBindingDescriptorUpdateTests.cpp69 // Create layout with two uniform buffer descriptors w/ empty binding between them in EmptyDescriptorUpdateCase()
93 // Create a buffer to be used for update in EmptyDescriptorUpdateCase()
106 vk::Unique<vk::VkBuffer> buffer (createBuffer(vki, device, &bufferCreateInfo)); in EmptyDescriptorUpdateCase()
107 const vk::VkMemoryRequirements requirements = vk::getBufferMemoryRequirements(vki, device, *buffer); in EmptyDescriptorUpdateCase()
110 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset())); in EmptyDescriptorUpdateCase()
115 *buffer, // VkBuffer buffer in EmptyDescriptorUpdateCase()
287 vk::VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT | // For the separate frame buffer image (uses the same format). in checkSupport()
473 // Vertex buffer. in iterate()
478 // Copy data to vertex buffer in iterate()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_barycentric/
H A DvktFragmentShadingBarycentricTests.cpp1130 const BufferWithMemory* buffer = (ndx == 0) ? resultBuffer.get() : referenceBuffer.get(); in iterate() local
1156 copyImageToBuffer(vkd, *commandBuffer, image->get(), buffer->get(), tcu::IVec2(width, height)); in iterate()
1161 invalidateMappedMemoryRange(vkd, device, buffer->getAllocation().getMemory(), buffer->getAllocation().getOffset(), VK_WHOLE_SIZE); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
H A DvktMemoryRequirementsTests.cpp72 const Unique<VkBuffer> buffer(makeBuffer(vk, device, size, flags, usage)); in getBufferMemoryRequirements()
73 return getBufferMemoryRequirements(vk, device, *buffer); in getBufferMemoryRequirements()
78 const Unique<VkBuffer> buffer (makeBuffer(vk, device, size, flags, usage)); in getBufferMemoryRequirements2()
83 *buffer // VkBuffer buffer in getBufferMemoryRequirements2()
342 de::MovePtr<tcu::TestCaseGroup> bufferGroup(new tcu::TestCaseGroup(group->getTestContext(), "buffer", "")); in populateTestGroup()
399 log << tcu::TestLog::Message << "Verify a buffer with usage flags: " << de::toString(getBufferUsageFlagsStr(usage)) << tcu::TestLog::EndMessage; in execTest()
411 // - requirements for a particular buffer usage in execTest()
421 "memoryTypeBits differ from the ones in the previous buffer size"); in execTest()
424 "alignment differs from the one in the previous buffer siz in execTest()
[all...]
/third_party/skia/third_party/externals/swiftshader/include/EGL/
H A Deglext.h208 typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
211 EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
533 typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLGETNATIVECLIENTBUFFERANDROIDPROC) (const struct AHardwareBuffer *buffer);
535 EGLAPI EGLClientBuffer EGLAPIENTRY eglGetNativeClientBufferANDROID (const struct AHardwareBuffer *buffer);
/third_party/skia/third_party/externals/swiftshader/include/GLES2/
H A Dgl2.h386 typedef void (GL_APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer);
464 typedef GLboolean (GL_APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer);
529 GL_APICALL void GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer);
607 GL_APICALL GLboolean GL_APIENTRY glIsBuffer (GLuint buffer);
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationESEXT.cpp1680 Buffer *buffer = context->getState().getTargetBuffer(targetPacked); in ValidateBufferStorageEXT() local
1682 if (buffer == nullptr) in ValidateBufferStorageEXT()
1688 if (buffer->isImmutable()) in ValidateBufferStorageEXT()
1749 GLuint buffer, in ValidateNamedBufferStorageExternalEXT()
1747 ValidateNamedBufferStorageExternalEXT(const Context *context, angle::EntryPoint entryPoint, GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags) ValidateNamedBufferStorageExternalEXT() argument
H A DvalidationGL4_autogen.h659 GLenum buffer,
666 GLenum buffer,
672 GLenum buffer,
678 GLenum buffer,
/third_party/skia/third_party/externals/angle2/src/libGL/
H A Dentry_points_gl_1_autogen.h117 ANGLE_EXPORT void GL_APIENTRY GL_FeedbackBuffer(GLsizei size, GLenum type, GLfloat *buffer);
318 ANGLE_EXPORT void GL_APIENTRY GL_SelectBuffer(GLsizei size, GLuint *buffer);
700 ANGLE_EXPORT void GL_APIENTRY GL_BindBuffer(GLenum target, GLuint buffer);
723 ANGLE_EXPORT GLboolean GL_APIENTRY GL_IsBuffer(GLuint buffer);
/third_party/skia/third_party/externals/swiftshader/tests/GLESUnitTests/
H A Dunittests.cpp954 // Tests copying to a texture from a pixel buffer object
2257 EGLSurface createIOSurfacePbuffer(EGLClientBuffer buffer, EGLint width, EGLint height, EGLint plane, GLenum internalFormat, GLenum type) const in createIOSurfacePbuffer() argument
2279 EGLSurface pbuffer = eglCreatePbufferFromClientBuffer(getDisplay(), EGL_IOSURFACE_ANGLE, buffer, getConfig(), attribs); in createIOSurfacePbuffer()
2284 void bindIOSurfaceToTexture(EGLClientBuffer buffer, EGLint width, EGLint height, EGLint plane, GLenum internalFormat, GLenum type, EGLSurface *pbuffer, GLuint *texture) const in bindIOSurfaceToTexture() argument
2286 *pbuffer = createIOSurfacePbuffer(buffer, width, height, plane, internalFormat, type); in bindIOSurfaceToTexture()
/third_party/skia/third_party/externals/spirv-cross/
H A Dmain.cpp234 vector<uint32_t> buffer; in read_spirv_file_stdin() local
239 buffer.insert(buffer.end(), tmp, tmp + ret); in read_spirv_file_stdin()
241 return buffer; in read_spirv_file_stdin()
412 fprintf(stderr, " (HLSL counter buffer ID: %u)", counter_id); in print_resources()
542 fprintf(stderr, "Active members in buffer: %s\n", in print_push_constant_resources()
799 "\t[--hlsl-force-storage-buffer-as-uav]:\n\t\tAlways emit SSBOs as UAVs, even when marked as read-only.\n" in print_help_hlsl()
818 "\t[--msl-capture-output]:\n\t\tWrites geometry varyings to a buffer instead of as stage-outputs.\n" in print_help_msl()
830 "\t[--msl-texture-buffer-native]:\n\t\tEnable native support for texel buffers. Otherwise, it is emulated as a normal texture.\n" in print_help_msl()
831 "\t[--msl-framebuffer-fetch]:\n\t\tImplement subpass inputs with frame buffer fetc in print_help_msl()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dtimezone.cpp585 char buffer[ULOC_KEYWORDS_CAPACITY] = ""; in forLocaleOrDefault() local
587 int32_t count = locale.getKeywordValue("timezone", buffer, sizeof(buffer), localStatus); in forLocaleOrDefault()
593 return TimeZone::createTimeZone(UnicodeString(buffer, count, US_INV)); in forLocaleOrDefault()
/third_party/skia/third_party/externals/opengl-registry/api/GLES2/
H A Dgl2.h386 typedef void (GL_APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer);
464 typedef GLboolean (GL_APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer);
529 GL_APICALL void GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer);
607 GL_APICALL GLboolean GL_APIENTRY glIsBuffer (GLuint buffer);
/third_party/skia/third_party/externals/d3d12allocator/src/
H A DTests.cpp272 WCHAR buffer[BUFFER_SIZE]; in TestFrameIndexAndJson() local
275 swprintf(buffer, BUFFER_SIZE, L"\"CreationFrameIndex\": %u", testIndex); in TestFrameIndexAndJson()
278 CHECK_BOOL(wcsstr(statsString, buffer) != NULL); in TestFrameIndexAndJson()
282 CHECK_BOOL(wcsstr(statsString, buffer) == NULL); in TestFrameIndexAndJson()
844 // Unmap every other buffer. Leave others mapped. in TestMapping()
1072 // # Create upload buffer and fill it with data. in TestZeroInitialized()
1094 // # Create readback buffer in TestZeroInitialized()
1163 // 1. Create buffer in TestZeroInitialized()
1276 else // Create new buffer. in TestMultithreading()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DDevice.cpp1260 Ref<BufferBase> buffer;
1261 DAWN_TRY_ASSIGN(buffer, CreateBufferImpl(descriptor));
1264 DAWN_TRY(buffer->MapAtCreation());
1267 return std::move(buffer);
/third_party/pcre2/pcre2/
H A DRunGrepTest480 (cd $srcdir; $valgrind $vjs $pcre2grep --buffer-size=10 --max-buffer-size=100 "^a" ./testdata/grepinput3) >>testtrygrep 2>&1
760 (cd $srcdir; $valgrind $vjs $pcre2grep --buffer-size=10 -A1 'brown' testdata/grepinputv) >>testtrygrep
819 $valgrind $vjs $pcre2grep --buffer-size=0 >>testtrygrep 2>&1
/third_party/skia/third_party/externals/freetype/src/psaux/
H A Dpsobjs.c2574 t1_decrypt( FT_Byte* buffer, in t1_decrypt() argument
2578 PS_Conv_EexecDecode( &buffer, in t1_decrypt()
2579 FT_OFFSET( buffer, length ), in t1_decrypt()
2580 buffer, in t1_decrypt()
/third_party/skia/third_party/externals/icu/source/common/
H A Duloc_tag.cpp1690 The key returned by toLegacyKey points to the input buffer. in _appendLDMLExtensionAsKeywords()
1724 The type returned by toLegacyType points to the input buffer. in _appendLDMLExtensionAsKeywords()
2653 char* buffer; in ulocimp_toLanguageTag() local
2656 buffer = canonical.getAppendBuffer( in ulocimp_toLanguageTag()
2668 uloc_canonicalize(localeID, buffer, resultCapacity, &tmpStatus); in ulocimp_toLanguageTag()
2683 canonical.append(buffer, reslen, tmpStatus); in ulocimp_toLanguageTag()
H A Dustrcase.cpp1274 UChar buffer[300]; in ustrcase_mapWithOverlap() local
1302 /* overlap: provide a temporary destination buffer and later copy the result */ in ustrcase_mapWithOverlap()
1303 if(destCapacity<=UPRV_LENGTHOF(buffer)) { in ustrcase_mapWithOverlap()
1304 /* the stack buffer is large enough */ in ustrcase_mapWithOverlap()
1305 temp=buffer; in ustrcase_mapWithOverlap()
1307 /* allocate a buffer */ in ustrcase_mapWithOverlap()
1321 /* copy the result string to the destination buffer */ in ustrcase_mapWithOverlap()
1325 if(temp!=buffer) { in ustrcase_mapWithOverlap()
1481 /* reached end of level buffer, pop one level */ in _cmpFold()
1504 /* reached end of level buffer, po in _cmpFold()
[all...]
/third_party/toybox/toys/pending/
H A Ddhcp.c1237 char buffer[sizeof("255.255.255.255\0")]; in release() local
1244 xstrncpy(buffer, inet_ntoa(temp_addr), sizeof(buffer)); in release()
1246 infomsg( infomode, "Unicasting a release of %s to %s", inet_ntoa(temp_addr), buffer); in release()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_lens_correction.cpp2315 dng_pixel_buffer &buffer,
2320 // Setup mask pixel buffer.
2341 DoVignette32 (buffer.DirtyPixel_real32 (dstArea.t, dstArea.l),
2346 buffer.RowStep (),
2347 buffer.PlaneStep (),

Completed in 58 milliseconds

1...<<201202203204205206207208209210>>...241