HomeSort by relevance Sort by last modified time
    Searched full:xend (Results 26 - 50 of 116) sorted by null

12 3 4 5

  /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...]
  /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...]
  /frameworks/rs/cpu_ref/
rsCpuScript.cpp 842 if (!sc || (sc->xEnd == 0)) {
843 mtls->xEnd = mtls->fep.dimX;
846 rsAssert(sc->xEnd <= mtls->fep.dimX);
847 rsAssert(sc->xStart < sc->xEnd);
849 mtls->xEnd = rsMin(mtls->fep.dimX, sc->xEnd);
850 if (mtls->xStart >= mtls->xEnd) return;
875 mtls->xEnd = rsMax((uint32_t)1, mtls->xEnd);
    [all...]
rsCpuIntrinsicBlur.cpp 48 uint32_t xstart, uint32_t xend,
51 uint32_t xstart, uint32_t xend,
282 uint32_t xstart, uint32_t xend,
297 uint32_t x2 = xend;
354 uint32_t xstart, uint32_t xend,
367 uint32_t x2 = xend;
rsCpuIntrinsic3DLUT.cpp 42 uint32_t xstart, uint32_t xend,
62 uint32_t xstart, uint32_t xend,
69 uint32_t x2 = xend;
rsCpuIntrinsics_neon_YuvToRGB.S 224 * size_t xend); // [sp+#4]
253 * size_t xend); // [sp]
279 * size_t xend); // [sp]
rsCpuScriptGroup.cpp 48 uint32_t xstart, uint32_t xend,
52 uint32_t xstart, uint32_t xend,
100 func(p, xstart, xend, istep, ostep);
rsCpuCore.h 107 uint32_t xEnd;
rsCpuIntrinsicBlend.cpp 37 uint32_t xstart, uint32_t xend,
95 uint32_t xstart, uint32_t xend);
114 uint32_t xstart, uint32_t xend,
122 uint32_t x2 = xend;
  /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...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MaterialSearchViewController.java 132 public void onConversationListLayout(int xEnd, boolean drawerOpen) {
134 if (mEndXCoordForTabletLandscape != xEnd) {
136 mEndXCoordForTabletLandscape = xEnd;
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...]
  /external/llvm/test/CodeGen/X86/
vec_compare-2.ll 9 define void @blackDespeckle_wrapper(i8** %args_list, i64* %gtid, i64 %xend) {
  /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/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/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/support/v8/renderscript/java/src/android/support/v8/renderscript/
Script.java 288 mRS.nScriptForEachClipped(getID(mRS), slot, in_id, out_id, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend);
474 private int xend = 0; field in class:Script.LaunchOptions
494 xend = xendArg;
549 return xend;
  /frameworks/base/rs/java/android/renderscript/
RenderScript.java 611 int xstart, int xend, int ystart, int yend, int zstart, int zend);
613 int xstart, int xend, int ystart, int yend, int zstart, int zend);
624 int xstart, int xend, int ystart, int yend, int zstart, int zend) {
627 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
629 rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend);
640 int xstart, int xend, int ystart, int yend, int zstart, int zend);
643 int xstart, int xend, int ystart, int yend, int zstart, int zend);
647 int xstart, int xend, int ystart, int yend, int zstart, int zend) {
650 rsnScriptForEachMultiClipped(mContext, id, slot, ains, aout, xstart, xend, ystart, yend, zstart, zend);
652 rsnScriptForEachMultiClipped(mContext, id, slot, ains, aout, params, xstart, xend, ystart, yend, zstart, zend)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/
streambuf 93 * end of the array (called @e xend here).
98 * - If @e xnext is not a null pointer, then @e xbeg and @e xend shall
100 * described above; otherwise, @e xbeg and @e xend shall also be null.
101 * - If @e xnext is not a null pointer and @e xnext < @e xend for an
110 * - If @e xnext is not a null pointer and @e xnext< @e xend for an
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
streambuf 90 * end of the array (called @e xend here).
95 * - If @e xnext is not a null pointer, then @e xbeg and @e xend shall
97 * described above; otherwise, @e xbeg and @e xend shall also be null.
98 * - If @e xnext is not a null pointer and @e xnext < @e xend for an
107 * - If @e xnext is not a null pointer and @e xnext< @e xend for an
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
streambuf 90 * end of the array (called @e xend here).
95 * - If @e xnext is not a null pointer, then @e xbeg and @e xend shall
97 * described above; otherwise, @e xbeg and @e xend shall also be null.
98 * - If @e xnext is not a null pointer and @e xnext < @e xend for an
107 * - If @e xnext is not a null pointer and @e xnext< @e xend for an
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
streambuf 90 * end of the array (called @e xend here).
95 * - If @e xnext is not a null pointer, then @e xbeg and @e xend shall
97 * described above; otherwise, @e xbeg and @e xend shall also be null.
98 * - If @e xnext is not a null pointer and @e xnext < @e xend for an
107 * - If @e xnext is not a null pointer and @e xnext< @e xend for an
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
streambuf 90 * end of the array (called @e xend here).
95 * - If @e xnext is not a null pointer, then @e xbeg and @e xend shall
97 * described above; otherwise, @e xbeg and @e xend shall also be null.
98 * - If @e xnext is not a null pointer and @e xnext < @e xend for an
107 * - If @e xnext is not a null pointer and @e xnext< @e xend for an
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
streambuf 93 * end of the array (called @e xend here).
98 * - If @e xnext is not a null pointer, then @e xbeg and @e xend shall
100 * described above; otherwise, @e xbeg and @e xend shall also be null.
101 * - If @e xnext is not a null pointer and @e xnext < @e xend for an
110 * - If @e xnext is not a null pointer and @e xnext< @e xend for an

Completed in 2526 milliseconds

12 3 4 5