/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
H A D | vktBindingDescriptorSetRandomTests.cpp | 76 static const deUint32 DIM = 8; member 1018 const auto expectedInvocationID = descriptor % (DIM*DIM); in initPrograms() 1071 " const int invocationID = int(gl_GlobalInvocationID.y) * " << DIM << " + int(gl_GlobalInvocationID.x);\n" in initPrograms() 1093 " const int invocationID = int(gl_LaunchIDNV.y) * " << DIM << " + int(gl_LaunchIDNV.x);\n" in initPrograms() 1114 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " + int(gl_LaunchIDEXT.x);\n" in initPrograms() 1141 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " + int(gl_LaunchIDEXT.x);\n" in initPrograms() 1173 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " + int(gl_LaunchIDEXT.x);\n" in initPrograms() 1203 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " + int(gl_LaunchIDEXT.x);\n" in initPrograms() 1232 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " in initPrograms() 1300 " imageStore(simage0_0, ivec2(gl_VertexIndex % " << DIM << ", gl_VertexIndex / " << DIM << "), color);\\n" initPrograms() local [all...] |
H A D | vktBindingBufferDeviceAddressTests.cpp | 63 static const deUint32 DIM = 8; member 515 " imageStore(image0_0, ivec2(gl_VertexIndex % " << DIM << ", gl_VertexIndex / " << DIM << "), color);\n" in initPrograms() local 911 vk, device, allocator, makeBufferCreateInfo(DE_NULL, DIM*DIM*sizeof(deUint32), VK_BUFFER_USAGE_TRANSFER_DST_BIT, 0), MemoryRequirement::HostVisible)); in iterate() 921 DIM, // deUint32 width; in iterate() 922 DIM, // deUint32 height; in iterate() 1117 DIM, // width in iterate() 1118 DIM, // height in iterate() 1174 VkViewport viewport = makeViewport(DIM, DI in iterate() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/ |
H A D | vktBindingDescriptorSetRandomTests.cpp | 76 static const deUint32 DIM = 8; member 1018 const auto expectedInvocationID = descriptor % (DIM*DIM); in initPrograms() 1071 " const int invocationID = int(gl_GlobalInvocationID.y) * " << DIM << " + int(gl_GlobalInvocationID.x);\n" in initPrograms() 1093 " const int invocationID = int(gl_LaunchIDNV.y) * " << DIM << " + int(gl_LaunchIDNV.x);\n" in initPrograms() 1114 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " + int(gl_LaunchIDEXT.x);\n" in initPrograms() 1141 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " + int(gl_LaunchIDEXT.x);\n" in initPrograms() 1173 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " + int(gl_LaunchIDEXT.x);\n" in initPrograms() 1203 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " + int(gl_LaunchIDEXT.x);\n" in initPrograms() 1232 " const int invocationID = int(gl_LaunchIDEXT.y) * " << DIM << " in initPrograms() 1300 " imageStore(simage0_0, ivec2(gl_VertexIndex % " << DIM << ", gl_VertexIndex / " << DIM << "), color);\\n" initPrograms() local [all...] |
H A D | vktBindingBufferDeviceAddressTests.cpp | 63 static const deUint32 DIM = 8; member 515 " imageStore(image0_0, ivec2(gl_VertexIndex % " << DIM << ", gl_VertexIndex / " << DIM << "), color);\n" in initPrograms() local 911 vk, device, allocator, makeBufferCreateInfo(DE_NULL, DIM*DIM*sizeof(deUint32), VK_BUFFER_USAGE_TRANSFER_DST_BIT, 0), MemoryRequirement::HostVisible)); in iterate() 921 DIM, // deUint32 width; in iterate() 922 DIM, // deUint32 height; in iterate() 1117 DIM, // width in iterate() 1118 DIM, // height in iterate() 1174 VkViewport viewport = makeViewport(DIM, DI in iterate() [all...] |
/third_party/skia/tests/ |
H A D | ImageCacheTest.cpp | 43 static const int DIM = 256; variable 117 static const size_t defLimit = DIM * DIM * 4 * COUNT + 1024; // 1K slop in DEF_TEST()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory_model/ |
H A D | vktMemoryModelMessagePassing.cpp | 424 "// DIM/NUM_WORKGROUP_EACH_DIM overriden by spec constants\n" in initPrograms() 425 "layout(constant_id = 0) const int DIM = 1;\n" in initPrograms() 427 "struct S { " << typeStr << " x[DIM*DIM]; };\n"; in initPrograms() 520 // For workgroup scope, we pair up LocalInvocationID and DIM-1-LocalInvocationID. in initPrograms() 521 // For device scope, we pair up GlobalInvocationID and DIM*NUMWORKGROUPS-1-GlobalInvocationID. in initPrograms() 538 " uint sharedCoord = localId.y * DIM + localId.x;\n" in initPrograms() 539 " uint partnerSharedCoord = partnerLocalId.y * DIM + partnerLocalId.x;\n" in initPrograms() 540 " uint bufferCoord = (gl_WorkGroupID.y * NUM_WORKGROUP_EACH_DIM + gl_WorkGroupID.x)*DIM*DIM in initPrograms() 1094 deUint32 DIM = 31; iterate() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory_model/ |
H A D | vktMemoryModelMessagePassing.cpp | 424 "// DIM/NUM_WORKGROUP_EACH_DIM overriden by spec constants\n" in initPrograms() 425 "layout(constant_id = 0) const int DIM = 1;\n" in initPrograms() 427 "struct S { " << typeStr << " x[DIM*DIM]; };\n"; in initPrograms() 520 // For workgroup scope, we pair up LocalInvocationID and DIM-1-LocalInvocationID. in initPrograms() 521 // For device scope, we pair up GlobalInvocationID and DIM*NUMWORKGROUPS-1-GlobalInvocationID. in initPrograms() 538 " uint sharedCoord = localId.y * DIM + localId.x;\n" in initPrograms() 539 " uint partnerSharedCoord = partnerLocalId.y * DIM + partnerLocalId.x;\n" in initPrograms() 540 " uint bufferCoord = (gl_WorkGroupID.y * NUM_WORKGROUP_EACH_DIM + gl_WorkGroupID.x)*DIM*DIM in initPrograms() 1094 deUint32 DIM = 31; iterate() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/ |
H A D | vktRobustnessExtsTests.cpp | 214 static const deUint32 DIM = 8; member 1674 " imageStore(image0_0, ivec2(gl_VertexIndex % " << DIM << ", gl_VertexIndex / " << DIM << "), color);\n" in initPrograms() local 2033 DIM, // deUint32 width; in iterate() 2034 DIM, // deUint32 height; in iterate() 2412 vk, device, allocator, makeBufferCreateInfo(DIM*DIM*16, VK_BUFFER_USAGE_TRANSFER_DST_BIT), MemoryRequirement::HostVisible)); in iterate() 2808 DIM, // width in iterate() 2809 DIM, // height in iterate() 2882 VkViewport viewport = makeViewport(DIM, DI in iterate() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/ |
H A D | vktRobustnessExtsTests.cpp | 224 static const deUint32 DIM = 8; member 1700 " imageStore(image0_0, ivec2(gl_VertexIndex % " << DIM << ", gl_VertexIndex / " << DIM << "), color);\n" in initPrograms() local 2067 DIM, // deUint32 width; in iterate() 2068 DIM, // deUint32 height; in iterate() 2446 vk, device, allocator, makeBufferCreateInfo(DIM*DIM*16, VK_BUFFER_USAGE_TRANSFER_DST_BIT), MemoryRequirement::HostVisible)); in iterate() 2762 DIM, // width in iterate() 2763 DIM, // height in iterate() 2836 VkViewport viewport = makeViewport(DIM, DI in iterate() [all...] |
/third_party/mesa3d/src/compiler/glsl/tests/ |
H A D | sampler_types_test.cpp | 39 #define T(TYPE, DIM, DATA_TYPE, ARR, SHAD, COMPS) \ 44 EXPECT_EQ(DIM, type->sampler_dimensionality); \
|
/third_party/mesa3d/src/asahi/compiler/ |
H A D | agx_opcodes.py | 90 DIM = immediate("dim", "enum agx_dim") variable 198 srcs = 5, imms = [DIM, LOD_MODE, MASK, SCOREBOARD])
|
/third_party/spirv-tools/test/ |
H A D | text_to_binary.type_declaration_test.cpp | 51 #define CASE1(DIM, NAME) {spv::Dim::DIM, #NAME}
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_vec4.h | 225 EMIT1(DIM)
|
H A D | brw_vec4_builder.h | 407 ALU1(DIM)
|
H A D | brw_fs_builder.h | 614 ALU1(DIM)
|
H A D | brw_vec4_visitor.cpp | 190 ALU1(DIM)
|
H A D | brw_eu.h | 245 ALU1(DIM)
|
H A D | brw_vec4_nir.cpp | 288 /* gfx7.5 does not support DF immediates straightforward but the DIM in setup_imm_df() 294 ubld.DIM(dst, brw_imm_df(v)); in setup_imm_df()
|
H A D | brw_eu_emit.c | 1093 ALU1(DIM) in ALU2()
|
H A D | brw_fs_nir.cpp | 6700 /* gfx7.5 does not support DF immediates straightforward but the DIM 6706 ubld.DIM(dst, brw_imm_df(v));
|
/third_party/mesa3d/src/intel/tools/ |
H A D | i965_gram.y | 388 %token <integer> DIM DO DPAS DPASW DP2 DP3 DP4 DP4A DPH 720 | DIM 1618 /* Set u64 instead of ud since DIM uses a 64-bit F-typed imm */
|