Home
last modified time | relevance | path

Searched refs:dim1 (Results 1 – 5 of 5) sorted by relevance

/third_party/glslang/glslang/HLSL/
DhlslParseables.cpp213 … AppendTypeName(glslang::TString& s, const char* argOrder, const char* argType, int dim0, int dim1) in AppendTypeName() argument
227 std::swap(dim0, dim1); in AppendTypeName()
274 dim0 = dim1 = fixedVecSize; in AppendTypeName()
277 const char dim1Char = ('0' + char(dim1)); in AppendTypeName()
294 (order == 'M' && (dim1 < 1 || dim1 > 4))) { in AppendTypeName()
910 … for (int dim1 = dim1Min; dim1 <= dim1Max; ++dim1) { // for each dim 1... in initialize() local
914 … if (!IsValid(intrinsic.name, *retOrder, *retType, *argOrder, *argType, dim0, dim1)) in initialize()
921 AppendTypeName(s, retOrder, retType, dim0, dim1); // add return type in initialize()
971 … AppendTypeName(s, nthArgOrder, nthArgType, argDim0, dim1); // Add arguments in initialize()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DGLSLTest.cpp10729 for (int dim1 = 0; dim1 < 2; ++dim1) in TEST_P() local
10733 int textureUnit = dim1 * 3 + dim2; in TEST_P()
10735 glBindTexture(GL_TEXTURE_2D, textures[dim1][dim2]); in TEST_P()
10742 uniformName << "smplr[" << dim1 << "][" << dim2 << "]"; in TEST_P()
10838 for (int dim1 = 0; dim1 < 2; ++dim1) in TEST_P() local
10842 int textureUnit = dim1 * 3 + dim2; in TEST_P()
10844 glBindTexture(GL_TEXTURE_2D, textures[dim1][dim2]); in TEST_P()
10851 uniformName << "smplr[" << dim1 << "][" << dim2 << "]"; in TEST_P()
10971 for (int dim1 = 0; dim1 < 2; ++dim1) in TEST_P() local
10977 int textureUnit = (dim1 * 3 + dim2) * 4 + dim3; in TEST_P()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
DvktGlobalPriorityQueueTests.cpp1044 const uint32_t dim1 = 25; in createGlobalPriorityQueueTests() local
1077 cfg.width = swap ? dim0 : dim1; in createGlobalPriorityQueueTests()
1078 cfg.height = swap ? dim1 : dim0; in createGlobalPriorityQueueTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
DvktGlobalPriorityQueueTests.cpp1044 const uint32_t dim1 = 25; in createGlobalPriorityQueueTests() local
1077 cfg.width = swap ? dim0 : dim1; in createGlobalPriorityQueueTests()
1078 cfg.height = swap ? dim1 : dim0; in createGlobalPriorityQueueTests()
/third_party/libxml2/
Dxmlregexp.c441 xmlRegCalloc2(size_t dim1, size_t dim2, size_t elemSize) { in xmlRegCalloc2() argument
446 if (dim1 > SIZE_MAX / dim2 / elemSize) in xmlRegCalloc2()
448 totalSize = dim1 * dim2 * elemSize; in xmlRegCalloc2()