Home
last modified time | relevance | path

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

/external/v8/benchmarks/
Dnavier-stokes.js92 x[i] = x[i + rowSize];
93 x[i + (height+1) *rowSize] = x[i + height * rowSize];
97 x[j * rowSize] = -x[1 + j * rowSize];
98 x[(width + 1) + j * rowSize] = -x[width + j * rowSize];
102 x[i] = -x[i + rowSize];
103 x[i + (height + 1) * rowSize] = -x[i + height * rowSize];
107 x[j * rowSize] = x[1 + j * rowSize];
108 x[(width + 1) + j * rowSize] = x[width + j * rowSize];
112 x[i] = x[i + rowSize];
113 x[i + (height + 1) * rowSize] = x[i + height * rowSize];
[all …]
/external/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 …]
/external/pdfium/xfa/src/fxbarcode/common/
DBC_CommonBitMatrix.cpp35 int32_t rowSize = (m_height + 31) >> 5; in Init() local
36 m_rowSize = rowSize; in Init()
43 int32_t rowSize = (width + 31) >> 5; in Init() local
44 m_rowSize = rowSize; in Init()
/external/libvncserver/libvncclient/
Dtight.c101 int bufferSize, rowSize, numRows, portionLen, rowsProcessed, extraBytes; in HandleTightBPP() local
193 rowSize = (rw * bitsPixel + 7) / 8; in HandleTightBPP()
194 if (rh * rowSize < TIGHT_MIN_TO_COMPRESS) { in HandleTightBPP()
195 if (!ReadFromRFBServer(client, (char*)client->buffer, rh * rowSize)) in HandleTightBPP()
233 if (rowSize > bufferSize) { in HandleTightBPP()
272 numRows = (bufferSize - zs->avail_out) / rowSize; in HandleTightBPP()
276 extraBytes = bufferSize - zs->avail_out - numRows * rowSize; in HandleTightBPP()
278 memcpy(client->buffer, &client->buffer[numRows * rowSize], extraBytes); in HandleTightBPP()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineVertexUtil.cpp798 const float rowSize = 2.0f / (float)rows; in createQuadMosaic() local
808 Vec4(-1.0f + (float)columnNdx * columnSize, -1.0f + (float)rowNdx * rowSize, 0.0f, 1.0f), in createQuadMosaic()
813 Vec4(lowerLeftVertex.position.x(), lowerLeftVertex.position.y() + rowSize, 0.0f, 1.0f), in createQuadMosaic()
823 …Vec4(lowerLeftVertex.position.x() + columnSize, lowerLeftVertex.position.y() + rowSize, 0.0f, 1.0f… in createQuadMosaic()
/external/deqp/modules/gles31/functional/
Des31fFboTestUtil.cpp444 int rowSize = deAlign32(readFormat.getPixelSize()*width, alignment); in readPixels() local
445 vector<deUint8> data (rowSize*height); in readPixels()
450 tcu::ConstPixelBufferAccess src(readFormat, width, height, 1, rowSize, 0, &data[0]); in readPixels()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRBBITableBuilder.java825 int rowSize; in getTableSize() local
840 rowSize = 8 + 2*numCols; in getTableSize()
841 size += numRows * rowSize; in getTableSize()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBBITableBuilder.java824 int rowSize; in getTableSize() local
839 rowSize = 8 + 2*numCols; in getTableSize()
840 size += numRows * rowSize; in getTableSize()
/external/icu/icu4c/source/common/
Drbbitblb.cpp1064 int32_t rowSize; in getTableSize() local
1078 rowSize = sizeof(RBBIStateTableRow) + sizeof(uint16_t)*(numCols-2); in getTableSize()
1079 size += numRows * rowSize; in getTableSize()
/external/mesa3d/src/mesa/drivers/windows/gdi/
Dwmesa.c288 int i, rowSize; in clear() local
388 rowSize = width * bytesPerPixel; in clear()
390 memcpy(lpb, clearRow, rowSize); in clear()
/external/deqp/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()
/external/libvncserver/webclients/novnc/include/
Drfb.js1660 var rowSize = Math.floor((this._FBU.width * bpp + 7) / 8);
1662 if (rowSize * this._FBU.height < 12) {
1664 clength = [0, rowSize * this._FBU.height];
/external/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()
/external/skia/src/core/
DSkAAClip.cpp99 size_t rowSize = ComputeRowSizeForWidth(width); in AllocRect() local
100 RunHead* head = RunHead::Alloc(1, rowSize); in AllocRect()