Home
last modified time | relevance | path

Searched refs:rowSize (Results 1 – 19 of 19) sorted by relevance

/third_party/mesa3d/src/glx/
Dpixel.c94 GLint components, groupsPerRow, rowSize, padding, elementsPerRow; in FillBitmap() local
104 rowSize = (groupsPerRow * components + 7) >> 3; in FillBitmap()
105 padding = (rowSize % alignment); in FillBitmap()
107 rowSize += alignment - padding; in FillBitmap()
109 start = ((const GLubyte *) userdata) + skipRows * rowSize + in FillBitmap()
154 start += rowSize; in FillBitmap()
176 GLint components, elementSize, rowSize, padding, groupsPerRow, groupSize; in __glFillImage() local
204 rowSize = groupsPerRow * groupSize; in __glFillImage()
205 padding = (rowSize % alignment); in __glFillImage()
207 rowSize += alignment - padding; in __glFillImage()
[all …]
/third_party/skia/third_party/externals/angle2/src/image_util/
Dloadimage.inc36 const size_t rowSize = width * sizeof(type) * componentCount;
37 const size_t layerSize = rowSize * height;
42 ASSERT(rowSize == inputRowPitch && rowSize == outputRowPitch);
45 else if (rowSize == inputRowPitch && rowSize == outputRowPitch)
/third_party/libsnd/src/ALAC/
Dag_enc.c246 int32_t rowSize = params->sw ; in dyn_comp() local
247 int32_t rowJump = (params->fw) - rowSize ; in dyn_comp()
296 if (rowPos >= rowSize) in dyn_comp()
323 if (++rowPos >= rowSize) in dyn_comp()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineVertexUtil.cpp1075 const float rowSize = 2.0f / (float)rows; in createQuadMosaic() local
1085 Vec4(-1.0f + (float)columnNdx * columnSize, -1.0f + (float)rowNdx * rowSize, 0.0f, 1.0f), in createQuadMosaic()
1090 Vec4(lowerLeftVertex.position.x(), lowerLeftVertex.position.y() + rowSize, 0.0f, 1.0f), in createQuadMosaic()
1100 …Vec4(lowerLeftVertex.position.x() + columnSize, lowerLeftVertex.position.y() + rowSize, 0.0f, 1.0f… in createQuadMosaic()
DvktPipelineMultisampleShaderFragmentMaskTests.cpp1136 const deUint32 rowSize = pixelSize * params.renderSize.x(); in getSingleSampledAccess() local
1137 const deUint32 layerSize = rowSize * params.renderSize.y(); in getSingleSampledAccess()
1143 numSamples * rowSize, in getSingleSampledAccess()
/third_party/node/deps/icu-small/source/common/
Drbbitblb.cpp1340 int32_t rowSize; in getTableSize() local
1352 rowSize = offsetof(RBBIStateTableRow8, fNextState) + sizeof(int8_t)*numCols; in getTableSize()
1354 rowSize = offsetof(RBBIStateTableRow16, fNextState) + sizeof(int16_t)*numCols; in getTableSize()
1356 size += numRows * rowSize; in getTableSize()
1562 int32_t rowSize; in getSafeTableSize() local
1574 rowSize = offsetof(RBBIStateTableRow8, fNextState) + sizeof(int8_t)*numCols; in getSafeTableSize()
1576 rowSize = offsetof(RBBIStateTableRow16, fNextState) + sizeof(int16_t)*numCols; in getSafeTableSize()
1578 size += numRows * rowSize; in getSafeTableSize()
/third_party/skia/third_party/externals/icu/source/common/
Drbbitblb.cpp1334 int32_t rowSize; in getTableSize() local
1346 rowSize = offsetof(RBBIStateTableRow8, fNextState) + sizeof(int8_t)*numCols; in getTableSize()
1348 rowSize = offsetof(RBBIStateTableRow16, fNextState) + sizeof(int16_t)*numCols; in getTableSize()
1350 size += numRows * rowSize; in getTableSize()
1547 int32_t rowSize; in getSafeTableSize() local
1559 rowSize = offsetof(RBBIStateTableRow8, fNextState) + sizeof(int8_t)*numCols; in getSafeTableSize()
1561 rowSize = offsetof(RBBIStateTableRow16, fNextState) + sizeof(int16_t)*numCols; in getSafeTableSize()
1563 size += numRows * rowSize; in getSafeTableSize()
/third_party/icu/icu4c/source/common/
Drbbitblb.cpp1340 int32_t rowSize; in getTableSize() local
1352 rowSize = offsetof(RBBIStateTableRow8, fNextState) + sizeof(int8_t)*numCols; in getTableSize()
1354 rowSize = offsetof(RBBIStateTableRow16, fNextState) + sizeof(int16_t)*numCols; in getTableSize()
1356 size += numRows * rowSize; in getTableSize()
1562 int32_t rowSize; in getSafeTableSize() local
1574 rowSize = offsetof(RBBIStateTableRow8, fNextState) + sizeof(int8_t)*numCols; in getSafeTableSize()
1576 rowSize = offsetof(RBBIStateTableRow16, fNextState) + sizeof(int16_t)*numCols; in getSafeTableSize()
1578 size += numRows * rowSize; in getSafeTableSize()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fFboTestUtil.cpp450 int rowSize = deAlign32(readFormat.getPixelSize()*width, alignment); in readPixels() local
451 vector<deUint8> data (rowSize*height); in readPixels()
456 tcu::ConstPixelBufferAccess src(readFormat, width, height, 1, rowSize, 0, &data[0]); in readPixels()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DRBBITableBuilder.java1104 int rowSize = 8 + 2*numCols;
1105 size += numRows * rowSize;
1257 int rowSize = 8 + 2*numCols;
1258 size += numRows * rowSize;
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBBITableBuilder.java1116 int rowSize = (use8Bits ? 1 : 2 ) * (RBBIDataWrapper.NEXTSTATES + numCols);
1117 size += numRows * rowSize;
1292 int rowSize = (use8Bits ? 1 : 2 ) * (RBBIDataWrapper.NEXTSTATES + numCols);
1293 size += numRows * rowSize;
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkImage.cpp516 size_t rowSize = copyExtent.width * bytesPerBlock; in copySingleAspectTo() local
527 ASSERT((srcRow + rowSize) < end()); in copySingleAspectTo()
528 ASSERT((dstRow + rowSize) < dstImage->end()); in copySingleAspectTo()
530 memcpy(dstRow, srcRow, rowSize); in copySingleAspectTo()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrUtil.cpp485 const size_t rowSize = planeSize / planeH; in fillImageMemory() local
487 const void* const srcPtr = ((const deUint8*)imageData.getPlanePtr(planeNdx)) + row * rowSize; in fillImageMemory()
489 deMemcpy(dstPtr, srcPtr, rowSize); in fillImageMemory()
706 const size_t rowSize = planeSize / planeH; in readImageMemory() local
708 void* const dstPtr = ((deUint8*)imageData->getPlanePtr(planeNdx)) + row * rowSize; in readImageMemory()
710 deMemcpy(dstPtr, srcPtr, rowSize); in readImageMemory()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DCommandBufferGL.cpp1377 size_t rowSize = copySize.width / blockInfo.width * blockInfo.byteSize; in DoTexSubImage() local
1389 rowSize * (copySize.height / blockInfo.height) * copySize.depthOrArrayLayers; in DoTexSubImage()
1426 height, format.internalFormat, rowSize, d); in DoTexSubImage()
1439 height, 1, format.internalFormat, rowSize, in DoTexSubImage()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fFboTestUtil.cpp896 int rowSize = deAlign32(readFormat.getPixelSize()*width, alignment); in readPixels() local
897 vector<deUint8> data (rowSize*height); in readPixels()
902 tcu::ConstPixelBufferAccess src(readFormat, width, height, 1, rowSize, 0, &data[0]); in readPixels()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_read_image.cpp2242 uint32 rowSize = 0; in ReadTile() local
2243 if (!SafeUint32Mult (rowStep, buffer.fPixelSize, &rowSize) || in ReadTile()
2244 !SafeUint32Add (bufferSize, rowSize, &bufferSize)) in ReadTile()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DProgram.cpp622 const int rowSize = VariableRowCount(type); in setUniformMatrixfv() local
628 for(int j = 0; j < rowSize; ++j) in setUniformMatrixfv()
630 dst[i * rowSize + j] = value[j * colSize + i]; in setUniformMatrixfv()
/third_party/skia/src/core/
DSkAAClip.cpp206 size_t rowSize = ComputeRowSizeForWidth(width); in AllocRect() local
207 RunHead* head = RunHead::Alloc(1, rowSize); in AllocRect()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DImageTest.cpp542 uint32_t rowSize = stride * height; in writeAHBData()
551 memcpy(dst, data[0].data + srcPtrOffset, rowSize); in writeAHBData()