HomeSort by relevance Sort by last modified time
    Searched defs:xEnd (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
stats_scorer.cpp 49 int xEnd = static_cast<int>(width * right);
52 int numPixels = (xEnd - xStart) * (yEnd - yStart);
58 for (int x = xStart; x < xEnd; ++x) {
  /packages/apps/Terminal/src/com/android/terminal/
TerminalLineView.java 71 final int xEnd = x + (m.run.colSize * m.charWidth);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp 153 const int xEnd = std::min(static_cast<int>(frameContext->xOffset() + width), size().width());
155 if (!width || (xBegin < 0) || (yBegin < 0) || (xEnd <= xBegin) || (yEnd <= yBegin))
171 GIFRow::const_iterator rowEnd = rowBegin + (xEnd - xBegin);
208 buffer.copyRowNTimes(xBegin, xEnd, yBegin, yEnd);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_foreach_bounds.java 37 final int xEnd = 5;
49 s.set_xEnd(xEnd);
55 sc.setX(xStart, xEnd).setY(yStart, yEnd);
  /frameworks/rs/cpu_ref/
rsCpuCore.cpp 173 if (mtls && mtls->fep.dimY <= 1 && mtls->xEnd <= mtls->xStart + mtls->mSliceSize) {
371 //ALOGE("usr idx %i, x %i,%i y %i,%i", idx, mtls->xStart, mtls->xEnd, yStart, yEnd);
379 fn(&p, mtls->xStart, mtls->xEnd, mtls->fep.eStrideIn, mtls->fep.eStrideOut);
395 uint32_t xEnd = xStart + mtls->mSliceSize;
396 xEnd = rsMin(xEnd, mtls->xEnd);
397 if (xEnd <= xStart) {
401 //ALOGE("usr slice %i idx %i, x %i,%i", slice, idx, xStart, xEnd);
406 fn(&p, xStart, xEnd, mtls->fep.eStrideIn, mtls->fep.eStrideOut)
    [all...]
rsCpuCore.h 107 uint32_t xEnd;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterEffect.cpp 337 int xEnd = rect.maxX();
338 if (xEnd > m_absolutePaintRect.width())
339 xEnd = m_absolutePaintRect.width();
351 int size = (xEnd - xOrigin) * 4;
  /external/replicaisland/src/com/replica/replicaisland/
BackgroundCollisionComponent.java 251 float xEnd = right;
254 xEnd = left;
261 mRayEnd.set(xEnd, centerOffsetY);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
TwoPaneLayout.java 144 * @param xEnd the ending x coordinate of the list view
147 void onConversationListLayout(int xEnd, boolean drawerOpen);
452 final int xEnd = mIsRtl ? mListLeft : mListRight;
453 if (mShouldShowPreviewPanel && xEnd != 0) {
457 listener.onConversationListLayout(xEnd, isDrawerOpen());
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 344 final int xEnd = Math.min(lastPixelXCoordinate, keyX + key.getWidth() + threshold);
349 for (int centerX = xStart; centerX <= xEnd; centerX += mCellWidth) {
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 500 float xEnd = Float.parseFloat(args[2]);
510 float xStep = (xEnd - xStart) / stepCount;
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 349 const int xBegin = -15, xEnd = 15;
350 const long triangleCount = (yEnd - yBegin) * (xEnd - xBegin) * 2;
365 for (x = xBegin; x < xEnd; ++x)
  /external/chromium_org/third_party/android_opengl/etc1/
etc1.cpp 557 etc1_uint32 xEnd = outWidth - x;
558 if (xEnd > 4) {
559 xEnd = 4;
561 const int mask = ymask & kXMask[xEnd];
569 for (etc1_uint32 cx = 0; cx < xEnd; cx++) {
613 for (etc1_uint32 cx = 0; cx < xEnd; cx++) {
635 for (etc1_uint32 cx = 0; cx < xEnd; cx++) {
688 etc1_uint32 xEnd = width - x;
689 if (xEnd > 4) {
690 xEnd = 4
    [all...]
  /external/chromium_org/third_party/skia/third_party/etc1/
etc1.cpp 541 etc1_uint32 xEnd = width - x;
542 if (xEnd > 4) {
543 xEnd = 4;
545 int mask = ymask & kXMask[xEnd];
550 memcpy(q, p, xEnd * 3);
552 for (etc1_uint32 cx = 0; cx < xEnd; cx++) {
593 etc1_uint32 xEnd = width - x;
594 if (xEnd > 4) {
595 xEnd = 4;
603 memcpy(p, q, xEnd * 3)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fInstancedRenderingTests.cpp 564 int xEnd = (instanceNdx + 1) * wid / m_numInstances;
606 for (int x = xStart; x < xEnd; x++)
  /external/skia/third_party/etc1/
etc1.cpp 541 etc1_uint32 xEnd = width - x;
542 if (xEnd > 4) {
543 xEnd = 4;
545 int mask = ymask & kXMask[xEnd];
550 memcpy(q, p, xEnd * 3);
552 for (etc1_uint32 cx = 0; cx < xEnd; cx++) {
593 etc1_uint32 xEnd = width - x;
594 if (xEnd > 4) {
595 xEnd = 4;
603 memcpy(p, q, xEnd * 3)
    [all...]
  /frameworks/native/opengl/libs/ETC1/
etc1.cpp 533 etc1_uint32 xEnd = width - x;
534 if (xEnd > 4) {
535 xEnd = 4;
537 int mask = ymask & kXMask[xEnd];
542 memcpy(q, p, xEnd * 3);
544 for (etc1_uint32 cx = 0; cx < xEnd; cx++) {
585 etc1_uint32 xEnd = width - x;
586 if (xEnd > 4) {
587 xEnd = 4;
595 memcpy(p, q, xEnd * 3)
    [all...]
  /frameworks/native/opengl/tests/angeles/
demo.c 349 const int xBegin = -15, xEnd = 15;
350 const long triangleCount = (yEnd - yBegin) * (xEnd - xBegin) * 2;
365 for (x = xBegin; x < xEnd; ++x)
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
etc1.cpp 533 etc1_uint32 xEnd = width - x;
534 if (xEnd > 4) {
535 xEnd = 4;
537 int mask = ymask & kXMask[xEnd];
542 memcpy(q, p, xEnd * 3);
544 for (etc1_uint32 cx = 0; cx < xEnd; cx++) {
585 etc1_uint32 xEnd = width - x;
586 if (xEnd > 4) {
587 xEnd = 4;
595 memcpy(p, q, xEnd * 3)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureGatherTests.cpp 99 const int xEnd = (col+1)*dst.getWidth()/numCols;
103 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd-xBegin, yEnd-yBegin, 1), color);
    [all...]
  /frameworks/rs/
rsDefines.h 390 uint32_t xEnd;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsDefines.h 388 uint32_t xEnd;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsDefines.h 388 uint32_t xEnd;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsDefines.h 388 uint32_t xEnd;
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 

Completed in 1130 milliseconds

1 2