HomeSort by relevance Sort by last modified time
    Searched full:yend (Results 1 - 25 of 41) sorted by null

1 2

  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
foreach_bounds.rs 8 int yEnd = 0;
33 if (i < xStart || i >= xEnd || j < yStart || j >= yEnd) {
59 rssc.yEnd = yEnd;
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
foreach_bounds.rs 8 int yEnd = 0;
32 if (i < xStart || i >= xEnd || j < yStart || j >= yEnd) {
UT_foreach_bounds.java 39 final int yEnd = 6;
51 s.set_yEnd(yEnd);
55 sc.setX(xStart, xEnd).setY(yStart, yEnd);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
stats_scorer.cpp 51 int yEnd = static_cast<int>(height * bottom);
52 int numPixels = (xEnd - xStart) * (yEnd - yStart);
56 for (int y = yStart; y < yEnd; y++) {
  /external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/
Fog.glsllib 12 // w == yend
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEConvolveMatrix.h 94 ALWAYS_INLINE void fastSetInteriorPixels(PaintingData&, int clipRight, int clipBottom, int yStart, int yEnd);
102 ALWAYS_INLINE void setInteriorPixels(PaintingData&, int clipRight, int clipBottom, int yStart, int yEnd);
117 int yEnd;
FEConvolveMatrix.cpp 258 ALWAYS_INLINE void FEConvolveMatrix::fastSetInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd)
270 // Skip the first '(clipBottom - yEnd)' lines
271 pixel += (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4);
272 int startKernelPixel = (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4);
274 for (int y = yEnd + 1; y > yStart; --y) {
398 ALWAYS_INLINE void FEConvolveMatrix::setInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd)
403 fastSetInteriorPixels<true>(paintingData, clipRight, clipBottom, yStart, yEnd);
405 fastSetInteriorPixels<false>(paintingData, clipRight, clipBottom, yStart, yEnd);
420 param->filter->setInteriorPixels(*param->paintingData, param->clipRight, param->clipBottom, param->yStart, param->yEnd);
476 param.yEnd = startY
    [all...]
FEMorphology.h 77 inline void platformApplyGeneric(PaintingData*, const int yStart, const int yEnd);
FELighting.h 86 int yEnd;
FilterEffect.cpp 299 int yEnd = rect.maxY();
300 if (yEnd > m_absolutePaintRect.height())
301 yEnd = m_absolutePaintRect.height();
309 while (yOrigin < yEnd) {
FEMorphology.cpp 116 void FEMorphology::platformApplyGeneric(PaintingData* paintingData, int yStart, int yEnd)
127 for (int y = yStart; y < yEnd; ++y) {
  /frameworks/rs/cpu_ref/
rsCpuCore.cpp 357 uint32_t yEnd = yStart + mtls->mSliceSize;
358 yEnd = rsMin(yEnd, mtls->yEnd);
359 if (yEnd <= yStart) {
363 //ALOGE("usr idx %i, x %i,%i y %i,%i", idx, mtls->xStart, mtls->xEnd, yStart, yEnd);
366 for (p.y = yStart; p.y < yEnd; p.y++) {
460 for (p.y = mtls->yStart; p.y < mtls->yEnd; p.y++) {
rsCpuCore.h 68 uint32_t yEnd;
rsCpuScript.cpp 786 if (!sc || (sc->yEnd == 0)) {
787 mtls->yEnd = mtls->fep.dimY;
790 rsAssert(sc->yEnd <= mtls->fep.dimY);
791 rsAssert(sc->yStart < sc->yEnd);
793 mtls->yEnd = rsMin(mtls->fep.dimY, sc->yEnd);
794 if (mtls->yStart >= mtls->yEnd) return;
809 mtls->yEnd = rsMax((uint32_t)1, mtls->yEnd);
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 224 int yend = jas_image_cmptbry( m_image, cmptlut[i] ); local
229 jas_matrix_t *buffer = jas_matrix_create( yend / ystep, xend / xstep );
232 if( !jas_image_readcmpt( m_image, cmptlut[i], 0, 0, xend / xstep, yend / ystep, buffer ))
268 int yend = jas_image_cmptbry( m_image, cmpt ); local
277 for( y = 0; y < yend - ystart; )
330 int yend = jas_image_cmptbry( m_image, cmpt ); local
339 for( y = 0; y < yend - ystart; )
  /frameworks/base/graphics/java/android/renderscript/
Script.java 176 mRS.nScriptForEachClipped(getID(mRS), slot, in_id, out_id, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend);
353 private int yend = 0; field in class:Script.LaunchOptions
390 yend = yendArg;
443 return yend;
  /frameworks/native/opengl/libs/ETC1/
etc1.cpp 527 etc1_uint32 yEnd = height - y;
528 if (yEnd > 4) {
529 yEnd = 4;
531 int ymask = kYMask[yEnd];
538 for (etc1_uint32 cy = 0; cy < yEnd; cy++) {
580 etc1_uint32 yEnd = height - y;
581 if (yEnd > 4) {
582 yEnd = 4;
591 for (etc1_uint32 cy = 0; cy < yEnd; cy++) {
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
etc1.cpp 527 etc1_uint32 yEnd = height - y;
528 if (yEnd > 4) {
529 yEnd = 4;
531 int ymask = kYMask[yEnd];
538 for (etc1_uint32 cy = 0; cy < yEnd; cy++) {
580 etc1_uint32 yEnd = height - y;
581 if (yEnd > 4) {
582 yEnd = 4;
591 for (etc1_uint32 cy = 0; cy < yEnd; cy++) {
  /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);
475 private int yend = 0; field in class:Script.LaunchOptions
512 yend = yendArg;
565 return yend;
RenderScript.java 463 int xstart, int xend, int ystart, int yend, int zstart, int zend);
465 int xstart, int xend, int ystart, int yend, int zstart, int zend);
476 int xstart, int xend, int ystart, int yend, int zstart, int zend) {
479 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
481 rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageDecoder.cpp 150 const int yEnd = std::min(static_cast<int>(frameContext->yOffset() + rowNumber + repeatCount), size().height());
151 if (rowBuffer.isEmpty() || (xBegin < 0) || (yBegin < 0) || (xEnd <= xBegin) || (yEnd <= yBegin))
205 buffer.copyRowNTimes(xBegin, xEnd, yBegin, yEnd);
  /frameworks/rs/
rsDefines.h 390 uint32_t yEnd;
  /frameworks/rs/scriptc/
rs_core.rsh 115 uint32_t yEnd;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 300 |---+---+---+---+---+-|________________________ yEnd | Since we only want to add the key to
323 bottomPixelWithinThreshold and call this yEnd right away.
332 final int yEnd = Math.min(lastPixelYCoordinate, keyY + key.getHeight() + threshold);
342 for (int centerY = yStart; centerY <= yEnd; centerY += mCellHeight) {
  /prebuilts/sdk/renderscript/include/
rs_core.rsh 115 uint32_t yEnd;

Completed in 858 milliseconds

1 2