/external/mesa3d/src/glx/ |
D | pixel.c | 87 GLint rowLength = state->storeUnpack.rowLength; in FillBitmap() local 97 if (rowLength > 0) { in FillBitmap() 98 groupsPerRow = rowLength; in FillBitmap() 169 GLint rowLength = state->storeUnpack.rowLength; in __glFillImage() local 186 if (rowLength > 0) { in __glFillImage() 187 groupsPerRow = rowLength; in __glFillImage() 275 GLint rowLength = state->storePack.rowLength; in EmptyBitmap() local 288 if (rowLength > 0) { in EmptyBitmap() 289 groupsPerRow = rowLength; in EmptyBitmap() 396 GLint rowLength = state->storePack.rowLength; in __glEmptyImage() local [all …]
|
D | pixelstore.c | 85 state->storePack.rowLength = a; in __indirect_glPixelStoref() 146 state->storeUnpack.rowLength = a; in __indirect_glPixelStoref() 233 state->storePack.rowLength = param; in __indirect_glPixelStorei() 288 state->storeUnpack.rowLength = param; in __indirect_glPixelStorei()
|
D | single2.c | 251 *data = (GLintptr) state->storePack.rowLength; in get_client_data() 275 *data = (GLintptr) state->storeUnpack.rowLength; in get_client_data()
|
D | glxclient.h | 172 GLuint rowLength; member
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_pixel_read.c | 80 GLuint rowLength; in do_blit_readpixels() local 111 rowLength = pack->RowLength; in do_blit_readpixels() 113 rowLength = width; in do_blit_readpixels() 121 rowLength = -rowLength; in do_blit_readpixels() 155 rowLength, dst_buffer, dst_offset, false, in do_blit_readpixels()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_pixel_read.c | 80 GLuint rowLength; in do_blit_readpixels() local 111 rowLength = pack->RowLength; in do_blit_readpixels() 113 rowLength = width; in do_blit_readpixels() 121 rowLength = -rowLength; in do_blit_readpixels() 155 rowLength, dst_buffer, dst_offset, false, in do_blit_readpixels()
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_pixel_read.c | 80 GLuint rowLength; in do_blit_readpixels() local 111 rowLength = pack->RowLength; in do_blit_readpixels() 113 rowLength = width; in do_blit_readpixels() 121 rowLength = -rowLength; in do_blit_readpixels() 155 rowLength, dst_buffer, dst_offset, false, in do_blit_readpixels()
|
/external/deqp/modules/gles3/functional/ |
D | es3fTextureSpecificationTests.cpp | 1066 …, const char* desc, deUint32 internalFormat, int width, int height, int rowLength, int skipRows, i… in TexImage2DParamsCase() argument 1069 , m_rowLength (rowLength) in TexImage2DParamsCase() 1081 int rowLength = m_rowLength > 0 ? m_rowLength : m_width; in createTexture() local 1082 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); in createTexture() 1129 int rowLength, in TexImage3DParamsCase() argument 1137 , m_rowLength (rowLength) in TexImage3DParamsCase() 1150 int rowLength = m_rowLength > 0 ? m_rowLength : m_width; in createTexture() local 1151 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); in createTexture() 1360 int rowLength, in TexSubImage2DParamsCase() argument 1370 , m_rowLength (rowLength) in TexSubImage2DParamsCase() [all …]
|
D | es3fReadPixelsTests.cpp | 69 …st char* name, const char* description, int flags, int alignment, GLint rowLength, GLint skipRows,… 92 …st char* name, const char* description, int flags, int alignment, GLint rowLength, GLint skipRows,… in ReadPixelsTest() argument 98 , m_rowLength (rowLength) in ReadPixelsTest()
|
/external/deqp/modules/gles31/functional/ |
D | es31fTextureSpecificationTests.cpp | 406 int rowLength, in TexImageCubeArrayBufferCase() argument 415 , m_rowLength (rowLength) in TexImageCubeArrayBufferCase() 429 int rowLength = m_rowLength > 0 ? m_rowLength : m_size; in createTexture() local 430 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); in createTexture() 493 int rowLength, in TexSubImageCubeArrayBufferCase() argument 508 , m_rowLength (rowLength) in TexSubImageCubeArrayBufferCase() 544 int rowLength = m_rowLength > 0 ? m_rowLength : m_subW; in createTexture() local 545 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); in createTexture() 722 int rowLength = m_size; in createTexture() local 724 int rowPitch = deAlign32(rowLength*pixelSize, alignment); in createTexture() [all …]
|
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
D | VDUBuffer.java | 840 int rowLength; local 843 rowLength = charArray[i].length; 844 System.arraycopy(charArray[i], 0, cbuf[i], 0, w < rowLength ? w : rowLength); 845 System.arraycopy(charAttributes[i], 0, abuf[i], 0, w < rowLength ? w : rowLength);
|
/external/deqp/modules/gles2/functional/ |
D | es2fBufferTestUtil.cpp | 370 static void renderQuadGridReference (tcu::Surface& dst, int numQuads, int rowLength, const deUint8*… in renderQuadGridReference() argument 374 …dst.setSize(rowLength*VERIFY_QUAD_SIZE, (numQuads/rowLength + (numQuads%rowLength != 0 ? 1 : 0))*V… in renderQuadGridReference() 381 int x0 = (quadNdx%rowLength)*VERIFY_QUAD_SIZE; in renderQuadGridReference() 382 int y0 = (quadNdx/rowLength)*VERIFY_QUAD_SIZE; in renderQuadGridReference()
|
/external/mesa3d/src/mesa/drivers/x11/ |
D | xm_dd.c | 388 const int rowLength = clippedUnpack.RowLength; in xmesa_DrawPixels_8R8G8B() local 405 + ((srcY + h - 1) * rowLength + srcX) * 4; in xmesa_DrawPixels_8R8G8B() 412 ximage.bytes_per_line = -rowLength * 4; /* negative to flip image */ in xmesa_DrawPixels_8R8G8B() 522 const int rowLength = clippedUnpack.RowLength; in xmesa_DrawPixels_5R6G5B() local 538 + ((srcY + h - 1) * rowLength + srcX) * 2; in xmesa_DrawPixels_5R6G5B() 545 ximage.bytes_per_line = -rowLength * 2; /* negative to flip image */ in xmesa_DrawPixels_5R6G5B()
|
/external/deqp/modules/glshared/ |
D | glsBufferTestUtil.cpp | 531 static void renderQuadGridReference (tcu::Surface& dst, int numQuads, int rowLength, const deUint8*… in renderQuadGridReference() argument 535 …dst.setSize(rowLength*VERIFY_QUAD_SIZE, (numQuads/rowLength + (numQuads%rowLength != 0 ? 1 : 0))*V… in renderQuadGridReference() 542 int x0 = (quadNdx%rowLength)*VERIFY_QUAD_SIZE; in renderQuadGridReference() 543 int y0 = (quadNdx/rowLength)*VERIFY_QUAD_SIZE; in renderQuadGridReference()
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiCopiesAndBlittingTests.cpp | 1198 deUint32 rowLength = region.bufferImageCopy.bufferRowLength; in copyRegionToTextureLevel() local 1199 if (!rowLength) in copyRegionToTextureLevel() 1200 rowLength = region.bufferImageCopy.imageExtent.width; in copyRegionToTextureLevel() 1215 int texelIndex = texelOffset + (z * imageHeight + y) * rowLength; in copyRegionToTextureLevel() 1407 deUint32 rowLength = region.bufferImageCopy.bufferRowLength; in copyRegionToTextureLevel() local 1408 if (!rowLength) in copyRegionToTextureLevel() 1409 rowLength = region.bufferImageCopy.imageExtent.width; in copyRegionToTextureLevel() 1424 int texelIndex = texelOffset + (z * imageHeight + y) * rowLength; in copyRegionToTextureLevel()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_drawpix.c | 159 const GLint rowLength = width * _mesa_get_format_bytes(rb->Format); in fast_draw_generic_pixels() local 178 memcpy(dst, src, rowLength); in fast_draw_generic_pixels()
|
/external/skia/src/core/ |
D | SkAAClip.cpp | 214 size_t rowLength = compute_row_length(row, fBounds.width()); in validate() local 215 SkASSERT(yoff->fOffset + rowLength <= head->fDataSize); in validate()
|
/external/skia/src/gpu/gl/ |
D | GrGLGpu.cpp | 963 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp); in uploadTexData() local 964 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength)); in uploadTexData()
|
/external/robolectric/v3/runtime/ |
D | android-all-4.3_r2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-4.4_r1-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |