/external/skqp/third_party/etc1/ |
D | etc1.cpp | 543 etc1_uint32 xEnd = width - x; in etc1_encode_image() local 544 if (xEnd > 4) { in etc1_encode_image() 545 xEnd = 4; in etc1_encode_image() 547 int mask = ymask & kXMask[xEnd]; in etc1_encode_image() 552 memcpy(q, p, xEnd * 3); in etc1_encode_image() 554 for (etc1_uint32 cx = 0; cx < xEnd; cx++) { in etc1_encode_image() 595 etc1_uint32 xEnd = width - x; in etc1_decode_image() local 596 if (xEnd > 4) { in etc1_decode_image() 597 xEnd = 4; in etc1_decode_image() 605 memcpy(p, q, xEnd * 3); in etc1_decode_image() [all …]
|
/external/skia/third_party/etc1/ |
D | etc1.cpp | 543 etc1_uint32 xEnd = width - x; in etc1_encode_image() local 544 if (xEnd > 4) { in etc1_encode_image() 545 xEnd = 4; in etc1_encode_image() 547 int mask = ymask & kXMask[xEnd]; in etc1_encode_image() 552 memcpy(q, p, xEnd * 3); in etc1_encode_image() 554 for (etc1_uint32 cx = 0; cx < xEnd; cx++) { in etc1_encode_image() 595 etc1_uint32 xEnd = width - x; in etc1_decode_image() local 596 if (xEnd > 4) { in etc1_decode_image() 597 xEnd = 4; in etc1_decode_image() 605 memcpy(p, q, xEnd * 3); in etc1_decode_image() [all …]
|
/external/skia/src/codec/ |
D | SkGifCodec.cpp | 236 const int xEnd = std::min(frame->frameRect().right(), fReader->screenWidth()); in initializeSwizzler() local 240 SkIRect swizzleRect = SkIRect::MakeLTRB(xBegin, 0, xEnd, 0); in initializeSwizzler() 424 const int xEnd = std::min(xBegin + width, this->dimensions().width()); in haveDecodedRow() local 428 if (!width || (xBegin < 0) || (yBegin < 0) || (xEnd <= xBegin) || (yEnd <= yBegin)) in haveDecodedRow()
|
/external/skqp/src/codec/ |
D | SkGifCodec.cpp | 236 const int xEnd = std::min(frame->frameRect().right(), fReader->screenWidth()); in initializeSwizzler() local 240 SkIRect swizzleRect = SkIRect::MakeLTRB(xBegin, 0, xEnd, 0); in initializeSwizzler() 424 const int xEnd = std::min(xBegin + width, this->dimensions().width()); in haveDecodedRow() local 428 if (!width || (xBegin < 0) || (yBegin < 0) || (xEnd <= xBegin) || (yEnd <= yBegin)) in haveDecodedRow()
|
/external/perfetto/ui/src/frontend/ |
D | overview_timeline_panel.ts | 89 const xEnd = Math.ceil(this.timeScale.timeToPx(loads[i].endSec)); constant 93 ctx.fillRect(xStart, yOff, xEnd - xStart, Math.ceil(trackHeight));
|
/external/setupdesign/main/src/com/google/android/setupdesign/util/ |
D | LinkAccessibilityHelper.java | 265 final float xEnd = layout.getPrimaryHorizontal(spanEnd); in getBoundsForSpan() local 272 outRect.left = (int) Math.min(xStart, xEnd); in getBoundsForSpan() 273 outRect.right = (int) Math.max(xStart, xEnd); in getBoundsForSpan()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | BackgroundCollisionComponent.java | 251 float xEnd = right; in update() local 254 xEnd = left; in update() 261 mRayEnd.set(xEnd, centerOffsetY); in update()
|
/external/perfetto/ui/src/tracks/counter/ |
D | frontend.ts | 138 const xEnd = this.hoveredTsEnd === undefined ? constant 146 ctx.lineTo(xEnd, y);
|
/external/perfetto/ui/src/tracks/cpu_freq/ |
D | frontend.ts | 147 const xEnd = this.hoveredTsEnd === undefined ? constant 155 ctx.lineTo(xEnd, y);
|
/external/autotest/client/site_tests/graphics_SanAngeles/src/ |
D | demo.c | 487 const int xBegin = -15, xEnd = 15; in createGroundPlane() local 488 const long triangleCount = (yEnd - yBegin) * (xEnd - xBegin) * 2; in createGroundPlane() 503 for (x = xBegin; x < xEnd; ++x) in createGroundPlane()
|
/external/deqp/modules/gles3/functional/ |
D | es3fInstancedRenderingTests.cpp | 564 int xEnd = (instanceNdx + 1) * wid / m_numInstances; in computeReference() local 606 for (int x = xStart; x < xEnd; x++) in computeReference()
|
/external/deqp/external/vulkancts/modules/vulkan/multiview/ |
D | vktMultiViewRenderTests.cpp | 1246 int xEnd = 0; in fillQuarter() local 1252 case 0: xStart = 0u; xEnd = w2; yStart = 0u; yEnd = h2; break; in fillQuarter() 1253 case 1: xStart = 0u; xEnd = w2; yStart = h2; yEnd = h; break; in fillQuarter() 1254 case 2: xStart = w2; xEnd = w; yStart = 0u; yEnd = h2; break; in fillQuarter() 1255 case 3: xStart = w2; xEnd = w; yStart = h2; yEnd = h; break; in fillQuarter() 1269 xEnd = w2 + (xEnd - w2) / 2; in fillQuarter() 1276 for (int x = xStart; x < xEnd; ++x) in fillQuarter() 1283 for (int x = xStart; x < xEnd; ++x) in fillQuarter() 1295 for (int x = xStart; x < xEnd; ++x) in fillQuarter()
|
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/ |
D | vktProtectedMemUtils.cpp | 952 const int xEnd = (col + 1)*dst.getWidth() / numCols; in fillWithRandomColorTiles() local 956 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd - xBegin, yEnd - yBegin, 1), color); in fillWithRandomColorTiles()
|
/external/deqp/external/vulkancts/modules/vulkan/clipping/ |
D | vktClippingTests.cpp | 251 const int xEnd = regionOffset.x() + regionSize.x(); in countPixels() local 255 DE_ASSERT(xEnd <= pixels.getWidth()); in countPixels() 259 for (int x = regionOffset.x(); x < xEnd; ++x) in countPixels()
|
/external/deqp/modules/gles31/functional/ |
D | es31fTextureGatherTests.cpp | 115 const int xEnd = (col+1)*dst.getWidth()/numCols; in fillWithRandomColorTiles() local 119 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd-xBegin, yEnd-yBegin, 1), color); in fillWithRandomColorTiles()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderTextureGatherTests.cpp | 180 const int xEnd = (col+1)*dst.getWidth()/numCols; in fillWithRandomColorTiles() local 184 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd-xBegin, yEnd-yBegin, 1), color); in fillWithRandomColorTiles()
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiCopiesAndBlittingTests.cpp | 2055 const int xEnd = deMax32(blit.dstOffsets[0].x, blit.dstOffsets[1].x); in forEach() local 2064 for (int x = xStart; x < xEnd; x++) in forEach()
|
/external/syzkaller/sys/windows/ |
D | windows.txt | 1039 LineDDA(xStart int32, yStart int32, xEnd int32, yEnd int32, lpProc ptr[inout, intptr], data int64)
|