/external/deqp/modules/gles3/functional/ |
D | es3fPrimitiveRestartTests.cpp | 300 const int numCols = 4; in init() local 306 for (int col = 0; col < numCols; col++) in init() 308 float centerX = -1.0f + 2.0f * ((float)col + 0.5f) / (float)numCols; in init() 309 int numVertices = row*numCols + col + 1; in init() 313 … float fx = centerX + 0.9f * deFloatCos((float)i*2.0f*DE_PI / (float)numVertices) / (float)numCols; in init() 322 if (col < numCols - 1 || row < numRows - 1) // Add a restart after all but last polygon. in init() 367 const int numCols = 4; in init() local 373 for (int col = 0; col < numCols; col++) in init() 375 float centerX = -1.0f + 2.0f * ((float)col + 0.5f) / (float)numCols; in init() 376 int numArcVertices = row*numCols + col; in init() [all …]
|
D | es3fShaderIndexingTests.cpp | 809 int numCols = getDataTypeMatrixNumColumns(varType); in createMatrixSubscriptCase() local 811 const char* matSizeName = getIntUniformName(numCols); in createMatrixSubscriptCase() 835 if (numCols >= 2) op << ", ui_one"; in createMatrixSubscriptCase() 836 if (numCols >= 3) op << ", ui_two"; in createMatrixSubscriptCase() 837 if (numCols >= 4) op << ", ui_three"; in createMatrixSubscriptCase() 863 if (numCols >= 2) op << " tmp[1] = ${VEC_TYPE}(coords.yzwx) * 0.5;\n"; in createMatrixSubscriptCase() 864 if (numCols >= 3) op << " tmp[2] = ${VEC_TYPE}(coords.zwxy) * 0.25;\n"; in createMatrixSubscriptCase() 865 if (numCols >= 4) op << " tmp[3] = ${VEC_TYPE}(coords.wxyz) * 0.125;\n"; in createMatrixSubscriptCase() 870 if (numCols >= 2) op << " tmp[ui_one] = ${VEC_TYPE}(coords.yzwx) * 0.5;\n"; in createMatrixSubscriptCase() 871 if (numCols >= 3) op << " tmp[ui_two] = ${VEC_TYPE}(coords.zwxy) * 0.25;\n"; in createMatrixSubscriptCase() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderIndexingTests.cpp | 888 int numCols = getDataTypeMatrixNumColumns(varType); in createMatrixSubscriptCase() local 890 const char* matSizeName = getIntUniformName(numCols); in createMatrixSubscriptCase() 914 …if (numCols >= 2) op << "layout(std140, binding = 1) uniform something1 { mediump int ui_one; };\n… in createMatrixSubscriptCase() 915 …if (numCols >= 3) op << "layout(std140, binding = 2) uniform something2 { mediump int ui_two; };\n… in createMatrixSubscriptCase() 916 …if (numCols >= 4) op << "layout(std140, binding = 3) uniform something3 { mediump int ui_three; };… in createMatrixSubscriptCase() 920 …op << "layout(std140, binding = " << numCols << ") uniform something" << numCols << " { mediump in… in createMatrixSubscriptCase() 941 if (numCols >= 2) op << " tmp[1] = ${VEC_TYPE}(coords.yzwx) * 0.5;\n"; in createMatrixSubscriptCase() 942 if (numCols >= 3) op << " tmp[2] = ${VEC_TYPE}(coords.zwxy) * 0.25;\n"; in createMatrixSubscriptCase() 943 if (numCols >= 4) op << " tmp[3] = ${VEC_TYPE}(coords.wxyz) * 0.125;\n"; in createMatrixSubscriptCase() 948 if (numCols >= 2) op << " tmp[ui_one] = ${VEC_TYPE}(coords.yzwx) * 0.5;\n"; in createMatrixSubscriptCase() [all …]
|
/external/deqp/external/openglcts/modules/common/ |
D | glcShaderIndexingTests.cpp | 929 int numCols = getDataTypeMatrixNumColumns(varType); in createMatrixSubscriptCase() local 931 const char* matSizeName = getIntUniformName(numCols); in createMatrixSubscriptCase() 955 if (numCols >= 2) in createMatrixSubscriptCase() 957 if (numCols >= 3) in createMatrixSubscriptCase() 959 if (numCols >= 4) in createMatrixSubscriptCase() 986 if (numCols >= 2) in createMatrixSubscriptCase() 988 if (numCols >= 3) in createMatrixSubscriptCase() 990 if (numCols >= 4) in createMatrixSubscriptCase() 996 if (numCols >= 2) in createMatrixSubscriptCase() 998 if (numCols >= 3) in createMatrixSubscriptCase() [all …]
|
D | glcShaderLibraryCase.cpp | 428 int numCols = getDataTypeMatrixNumColumns(dataType); in execute() local 430 DE_ASSERT(scalarSize == numCols * numRows); in execute() 432 for (int i = 0; i < numCols; i++) in execute() 1035 int numCols = getDataTypeMatrixNumColumns(dataType); in dumpValues() local 1039 for (int colNdx = 0; colNdx < numCols; colNdx++) in dumpValues() 1042 float v = val.elements[elemNdx * scalarSize + rowNdx * numCols + colNdx].float32; in dumpValues()
|
/external/deqp/modules/gles2/scripts/ |
D | genutil.py | 596 def __init__ (self, numCols, numRows, scalars): argument 597 assert len(scalars) == numRows*numCols 598 self.numCols = numCols 603 def identity (numCols, numRows): argument 605 for col in range(0, numCols): 608 return Mat(numCols, numRows, scalars) 611 assert 0 <= colNdx and colNdx < self.numCols 616 assert 0 <= colNdx and colNdx < self.numCols 620 def toMatrix (self, numCols, numRows): argument 621 res = Mat.identity(numCols, numRows) [all …]
|
/external/oss-fuzz/projects/dlplibs/ |
D | icu4c-ubsan.patch | 33 numCols = fRB->fSetBuilder->getNumCharCategories(); 36 - // Therefore we subtract two from numCols when determining 38 + // Therefore we subtract one from numCols when determining 40 - rowSize = sizeof(RBBIStateTableRow) + sizeof(uint16_t)*(numCols-2); 41 + rowSize = sizeof(RBBIStateTableRow) + sizeof(uint16_t)*(numCols-1);
|
/external/skqp/gm/ |
D | beziereffects.cpp | 169 int numCols = SkScalarCeilToInt(SkScalarSqrt(SkIntToScalar(kNumConics*3))); in onDraw() local 170 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumConics*3) / numCols); in onDraw() 171 SkScalar w = SkIntToScalar(renderTargetContext->width()) / numCols; in onDraw() 242 if (numCols == col) { in onDraw() 385 int numCols = SkScalarCeilToInt(SkScalarSqrt(SkIntToScalar(kNumQuads*3))); in onDraw() local 386 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumQuads*3) / numCols); in onDraw() 387 SkScalar w = SkIntToScalar(renderTargetContext->width()) / numCols; in onDraw() 459 if (numCols == col) { in onDraw()
|
D | sharedcorners.cpp | 38 constexpr int numCols = (1 + SK_ARRAY_COUNT(kJitters)) * 2; in onISize() local 39 return SkISize::Make(numCols * (kBoxSize + kPadSize) + kPadSize, in onISize()
|
/external/deqp/modules/gles3/scripts/ |
D | genutil.py | 739 def __init__ (self, numCols, numRows, scalars): argument 740 assert len(scalars) == numRows*numCols 741 self.numCols = numCols 746 def fromScalar (numCols, numRows, scalar): argument 748 for col in range(0, numCols): 751 return Mat(numCols, numRows, scalars) 754 def identity (numCols, numRows): argument 755 return Mat.fromScalar(numCols, numRows, 1.0) 758 assert 0 <= colNdx and colNdx < self.numCols 763 assert 0 <= colNdx and colNdx < self.numCols [all …]
|
/external/deqp/modules/gles31/scripts/ |
D | genutil.py | 741 def __init__ (self, numCols, numRows, scalars): argument 742 assert len(scalars) == numRows*numCols 743 self.numCols = numCols 748 def fromScalar (numCols, numRows, scalar): argument 750 for col in range(0, numCols): 753 return Mat(numCols, numRows, scalars) 756 def identity (numCols, numRows): argument 757 return Mat.fromScalar(numCols, numRows, 1.0) 760 assert 0 <= colNdx and colNdx < self.numCols 765 assert 0 <= colNdx and colNdx < self.numCols [all …]
|
/external/icu/icu4c/source/common/ |
D | rbbitblb.cpp | 1083 int32_t numCols = fRB->fSetBuilder->getNumCharCategories(); in findDuplCharClassFrom() local 1085 for (; categories->first < numCols-1; categories->first++) { in findDuplCharClassFrom() 1086 … for (categories->second=categories->first+1; categories->second < numCols; categories->second++) { in findDuplCharClassFrom() 1124 int32_t numCols = fRB->fSetBuilder->getNumCharCategories(); in findDuplicateState() local 1136 for (int32_t col=0; col < numCols; ++col) { in findDuplicateState() 1163 int32_t numCols = firstRow->length(); in findDuplicateSafeState() local 1164 for (int32_t col=0; col < numCols; ++col) { in findDuplicateSafeState() 1194 int32_t numCols = fRB->fSetBuilder->getNumCharCategories(); in removeState() local 1197 for (int32_t col=0; col<numCols; col++) { in removeState() 1231 int32_t numCols = sd->length(); in removeSafeState() local [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBBITableBuilder.java | 848 int numCols = fRB.fSetBuilder.getNumCharCategories(); in findDuplCharClassFrom() local 852 for (; categories.first < numCols-1; ++categories.first) { in findDuplCharClassFrom() 853 … for (categories.second=categories.first+1; categories.second < numCols; ++categories.second) { in findDuplCharClassFrom() 897 int numCols = fRB.fSetBuilder.getNumCharCategories(); 909 for (int col=0; col < numCols; ++col) { 942 int numCols = firstRow.length; 943 for (int col=0; col < numCols; ++col) { 976 int numCols = fRB.fSetBuilder.getNumCharCategories(); 979 for (int col=0; col<numCols; col++) { 1063 int numCols = fRB.fSetBuilder.getNumCharCategories(); [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RBBITableBuilder.java | 849 int numCols = fRB.fSetBuilder.getNumCharCategories(); in findDuplCharClassFrom() local 853 for (; categories.first < numCols-1; ++categories.first) { in findDuplCharClassFrom() 854 … for (categories.second=categories.first+1; categories.second < numCols; ++categories.second) { in findDuplCharClassFrom() 898 int numCols = fRB.fSetBuilder.getNumCharCategories(); 910 for (int col=0; col < numCols; ++col) { 943 int numCols = firstRow.length; 944 for (int col=0; col < numCols; ++col) { 977 int numCols = fRB.fSetBuilder.getNumCharCategories(); 980 for (int col=0; col<numCols; col++) { 1064 int numCols = fRB.fSetBuilder.getNumCharCategories(); [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/tessellation/ |
D | vktTessellationPrimitiveDiscardTests.cpp | 116 const int numCols = intPow(numChoices, 6/2); // sqrt(numChoices**6) == sqrt(number of primitives) in genAttributes() local 117 const int numRows = numCols; in genAttributes() 132 const int col = index % numCols; in genAttributes() 133 const int row = index / numCols; in genAttributes() 135 result.push_back((float)2.0f / (float)numCols); in genAttributes() 138 result.push_back((float)col / (float)numCols * 2.0f - 1.0f); in genAttributes()
|
/external/autotest/client/site_tests/audio_WebRtcAudioLoopback/ |
D | audio_loopback_test.js | 19 this.numCols = 5; 26 if (this.col == this.numCols) {
|
/external/skia/gm/ |
D | sharedcorners.cpp | 45 constexpr int numCols = (1 + SK_ARRAY_COUNT(kJitters)) * 2; in onISize() local 46 return SkISize::Make(numCols * (kBoxSize + kPadSize) + kPadSize, in onISize()
|
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/ |
D | vktFragmentOperationsScissorMultiViewportTests.cpp | 143 const int numCols = deCeilFloatToInt32(deFloatSqrt(static_cast<float>(numScissors))); in generateScissors() local 144 …t int numRows = deCeilFloatToInt32(static_cast<float>(numScissors) / static_cast<float>(numCols)); in generateScissors() 145 const int rectWidth = renderSize.x() / numCols; in generateScissors() 156 const bool nextRow = (scissorNdx != 0) && (scissorNdx % numCols == 0); in generateScissors()
|
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/ |
D | vktProtectedMemUtils.cpp | 897 const int numCols = dst.getWidth() >= 7 ? 7 : dst.getWidth(); in fillWithRandomColorTiles() local 903 for (int col = 0; col < numCols; col++) in fillWithRandomColorTiles() 907 const int xBegin = (col + 0)*dst.getWidth() / numCols; in fillWithRandomColorTiles() 908 const int xEnd = (col + 1)*dst.getWidth() / numCols; in fillWithRandomColorTiles() 930 const int numCols = dst.getWidth(); in fillWithUniqueColors() local 936 for (int x = 0; x < numCols; x++) in fillWithUniqueColors()
|
/external/llvm/test/CodeGen/Thumb2/ |
D | 2010-02-24-BigStack.ll | 7 define void @FindMin(double* %panelTDEL, i8* %dclOfRow, i32 %numRows, i32 %numCols, double* %retMin…
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Thumb2/ |
D | 2010-02-24-BigStack.ll | 7 define void @FindMin(double* %panelTDEL, i8* %dclOfRow, i32 %numRows, i32 %numCols, double* %retMin…
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawShaderViewportIndexTests.cpp | 341 const int numCols = deCeilFloatToInt32(deFloatSqrt(static_cast<float>(numCells))); in generateGrid() local 342 …const int numRows = deCeilFloatToInt32(static_cast<float>(numCells) / static_cast<float>(numCols)… in generateGrid() 343 const int rectWidth = renderSize.x() / numCols; in generateGrid() 354 const bool nextRow = (cellNdx != 0) && (cellNdx % numCols == 0); in generateGrid()
|
D | vktDrawShaderLayerTests.cpp | 478 const int numCols = deCeilFloatToInt32(deFloatSqrt(static_cast<float>(numCells))); in generateGrid() local 479 …const int numRows = deCeilFloatToInt32(static_cast<float>(numCells) / static_cast<float>(numCols)… in generateGrid() 480 const int rectWidth = renderSize.x() / numCols; in generateGrid() 491 const bool nextRow = (cellNdx != 0) && (cellNdx % numCols == 0); in generateGrid()
|
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 715 inline ColsBlockXpr middleCols(Index startCol, Index numCols) in middleCols() argument 717 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols() 722 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const in middleCols() argument 724 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols()
|
/external/swiftshader/src/Pipeline/ |
D | SpirvShaderArithmetic.cpp | 123 auto numCols = rhsType.definition.word(3); in EmitOuterProduct() local 125 for(auto col = 0u; col < numCols; col++) in EmitOuterProduct() 142 auto numCols = type.definition.word(3); in EmitTranspose() local 145 for(auto col = 0u; col < numCols; col++) in EmitTranspose() 149 dst.move(col * numRows + row, mat.Float(row * numCols + col)); in EmitTranspose()
|