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

1 2 3

  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BView.h 40 xoff = yoff = 0;
50 yoff = y;
54 y = yoff;
58 y = (float)yoff;
86 if(xoff || yoff) {
88 dest.top = updateRect.top + yoff;
90 dest.bottom = updateRect.bottom + yoff;
99 if(xoff || yoff) {
101 dest.top = updateRect.top + yoff;
103 dest.bottom = updateRect.bottom + yoff;
113 int xoff, yoff; member in class:SDL_BView
    [all...]
  /frameworks/rs/cpp/
Allocation.cpp 225 void Allocation::validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h) {
229 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
235 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
237 validate2DRange(xoff, yoff, w, h);
239 yoff, mSelectedLOD, mSelectedFace,
244 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
246 validate2DRange(xoff, yoff, w, h);
247 tryDispatch(mRS, RS::dispatch->AllocationCopy2DRange(mRS->getContext(), getIDSafe(), xoff, yoff,
253 void Allocation::copy2DRangeTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
255 validate2DRange(xoff, yoff, w, h)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 356 int xoff, yoff; local
365 yoff = 32 * (block >> twl);
366 src_diff = p->src_diff + 4 * bw * yoff + xoff;
380 yoff = 16 * (block >> twl);
381 src_diff = p->src_diff + 4 * bw * yoff + xoff;
392 yoff = 8 * (block >> twl);
393 src_diff = p->src_diff + 4 * bw * yoff + xoff;
403 yoff = 4 * (block >> twl);
404 src_diff = p->src_diff + 4 * bw * yoff + xoff;
537 int xoff, yoff; local
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java 966 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
975 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
984 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
993 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
1083 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local
1111 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local
1139 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1150 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1161 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1172 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1242 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
    [all...]
AllocationAdapter.java 78 public void subData2D(int xoff, int yoff, int w, int h, int[] d) {
79 super.copy2DRangeFrom(xoff, yoff, w, h, d);
84 public void subData2D(int xoff, int yoff, int w, int h, float[] d) {
85 super.copy2DRangeFrom(xoff, yoff, w, h, d);
RenderScript.java 436 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
437 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) {
439 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
441 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes);
442 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
444 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
446 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
447 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
449 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
451 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes)
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java 838 private void validate2DRange(int xoff, int yoff, int w, int h) {
843 if (xoff < 0 || yoff < 0) {
849 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
855 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, byte[] data) {
857 validate2DRange(xoff, yoff, w, h);
858 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
862 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, short[] data) {
864 validate2DRange(xoff, yoff, w, h);
865 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
869 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, int[] data)
872 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
879 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local
960 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local
986 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local
1013 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1024 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1035 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1046 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
1116 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, local
    [all...]
RenderScript.java 342 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
343 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) {
345 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
347 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes);
348 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
350 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
352 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
353 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
355 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
357 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes)
    [all...]
AllocationThunker.java 290 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
292 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
297 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) {
299 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
304 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) {
306 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
311 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) {
313 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
319 public void copy2DRangeFrom(int xoff, int yoff, int w, int h,
323 mN.copy2DRangeFrom(xoff, yoff, w, h, at.mN, dataXoff, dataYoff)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkAAClip.cpp 99 YOffset* yoff = head->yoffsets(); local
100 yoff->fY = bounds.height() - 1;
101 yoff->fOffset = 0;
198 const YOffset* yoff = head->yoffsets(); local
199 const YOffset* ystop = yoff + head->fRowCount;
205 while (yoff < ystop) {
206 SkASSERT(prevY < yoff->fY);
207 SkASSERT(yoff->fY <= lastY);
208 prevY = yoff->fY;
209 SkASSERT(prevOffset < (int32_t)yoff->fOffset)
405 YOffset* yoff = head->yoffsets(); local
481 YOffset* yoff = head->yoffsets(); local
561 const YOffset* yoff = head->yoffsets(); local
806 const YOffset* yoff = fRunHead->yoffsets(); local
    [all...]
  /external/skia/src/core/
SkAAClip.cpp 99 YOffset* yoff = head->yoffsets(); local
100 yoff->fY = bounds.height() - 1;
101 yoff->fOffset = 0;
198 const YOffset* yoff = head->yoffsets(); local
199 const YOffset* ystop = yoff + head->fRowCount;
205 while (yoff < ystop) {
206 SkASSERT(prevY < yoff->fY);
207 SkASSERT(yoff->fY <= lastY);
208 prevY = yoff->fY;
209 SkASSERT(prevOffset < (int32_t)yoff->fOffset)
405 YOffset* yoff = head->yoffsets(); local
481 YOffset* yoff = head->yoffsets(); local
561 const YOffset* yoff = head->yoffsets(); local
806 const YOffset* yoff = fRunHead->yoffsets(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFieldset.cpp 152 LayoutUnit yOff = (legend->y() > 0) ? LayoutUnit() : (legend->height() - borderTop()) / 2;
153 paintRect.setHeight(paintRect.height() - yOff);
154 paintRect.setY(paintRect.y() + yOff);
203 LayoutUnit yOff = (legend->y() > 0) ? LayoutUnit() : (legend->height() - borderTop()) / 2;
204 paintRect.expand(0, -yOff);
205 paintRect.move(0, yOff);
  /frameworks/support/v8/renderscript/jni/
android_renderscript_RenderScript.cpp 490 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
494 LOG_API("nAllocation2DData_s, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
496 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
501 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
505 LOG_API("nAllocation2DData_b, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
507 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
512 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
516 LOG_API("nAllocation2DData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len)
    [all...]
  /frameworks/rs/driver/
rsdAllocation.h 108 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
113 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
123 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
128 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rsdAllocation.cpp 93 uint32_t xoff, uint32_t yoff, uint32_t zoff,
98 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
105 uint32_t xoff, uint32_t yoff, uint32_t lod,
117 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
799 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
811 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
819 for (uint32_t line=yoff; line < (yoff+h); line++) {
841 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
843 for (uint32_t line=(yoff >> 1); line < ((yoff+h)>>1); line++)
    [all...]
  /frameworks/rs/
rsAllocation.h 115 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
121 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
rsAllocation.cpp 112 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
114 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
118 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff,
121 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
139 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
153 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
156 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
164 rsc->mHal.funcs.allocation.read3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
559 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
562 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes, stride)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
shapestr.h 79 INT16 yOff B16;
94 INT16 yOff B16;
109 INT16 yOff B16;
123 INT16 yOff B16;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
shapestr.h 79 INT16 yOff B16;
94 INT16 yOff B16;
109 INT16 yOff B16;
123 INT16 yOff B16;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
shapestr.h 79 INT16 yOff B16;
94 INT16 yOff B16;
109 INT16 yOff B16;
123 INT16 yOff B16;
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsCar.java 128 float yOff = 0.5f;
139 vehicle.addWheel(node1, new Vector3f(-xOff, yOff, zOff),
147 vehicle.addWheel(node2, new Vector3f(xOff, yOff, zOff),
155 vehicle.addWheel(node3, new Vector3f(-xOff, yOff, -zOff),
163 vehicle.addWheel(node4, new Vector3f(xOff, yOff, -zOff),
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPopupWindow.java 152 public void showAsDropDown(View anchor, int xoff, int yoff) {
154 yOffset = yoff;
  /external/skia/tests/
BlurTest.cpp 65 const int yOff = itest.fTop - iref.fTop;
74 int refY = y + yOff;
DrawTextTest.cpp 39 const int yOff = itest.fTop - iref.fTop;
48 int refY = y + yOff;
FontHostStreamTest.cpp 42 const int yOff = itest.fTop - iref.fTop;
51 int refY = y + yOff;

Completed in 6020 milliseconds

1 2 3