Searched defs:ox (Results 1 - 19 of 19) sorted by last modified time

/external/valgrind/main/memcheck/
H A Dmc_machine.c159 by testing ox instead of o, and setting ox back 4 bytes when sz == 4.
161 Int ox = sz == 8 ? o : (o - 4); local
162 if (ox == GOF(GPR0)) return ox;
163 if (ox == GOF(GPR1)) return ox;
164 if (ox == GOF(GPR2)) return ox;
165 if (ox
[all...]
/external/skia/include/gpu/
H A DGrTexture.h199 void setOffset(int ox, int oy) { fOffset.set(ox, oy); } argument
/external/skia/src/effects/
H A DSkBlurMask.cpp712 int ox = dx >> 1; local
713 if (ox < 0) {
714 ox = 0;
717 return profile[ox];
/external/mesa3d/src/mesa/math/
H A Dm_xform_tmp.h88 const GLfloat ox = from[0]; local
89 to[i][0] = m0 * ox + m12;
90 to[i][1] = m1 * ox + m13;
91 to[i][2] = m2 * ox + m14;
92 to[i][3] = m3 * ox + m15;
132 const GLfloat ox = from[0]; local
133 to[i][0] = m0 * ox + m12;
134 to[i][1] = m1 * ox + m13;
153 const GLfloat ox = from[0]; local
154 to[i][0] = m0 * ox
175 const GLfloat ox = from[0]; local
199 const GLfloat ox = from[0]; local
221 const GLfloat ox = from[0]; local
254 const GLfloat ox = from[0], oy = from[1]; local
299 const GLfloat ox = from[0], oy = from[1]; local
320 const GLfloat ox = from[0], oy = from[1]; local
342 const GLfloat ox = from[0], oy = from[1]; local
369 const GLfloat ox = from[0], oy = from[1]; local
397 const GLfloat ox = from[0], oy = from[1]; local
425 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
471 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
493 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
517 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
542 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
565 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
593 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
640 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
663 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
688 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
712 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
736 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath.c277 static INLINE void map_if_relative(VGfloat ox, VGfloat oy, argument
283 *x += ox;
291 VGfloat ox, VGfloat oy,
294 if (!floatsEqual(sx, ox) ||
364 VGfloat sx, sy, px, py, ox, oy; local
388 sx = sy = px = py = ox = oy = 0.f;
400 close_polygon(current, sx, sy, ox, oy, matrix);
401 ox = sx;
407 close_polygon(current, sx, sy, ox, oy, matrix);
414 map_if_relative(ox, o
289 close_polygon(struct polygon *current, VGfloat sx, VGfloat sy, VGfloat ox, VGfloat oy, struct matrix *matrix) argument
952 VGfloat px, py, ox, oy, sx, sy; member in struct:path_iter_data
1233 VGfloat sx, sy, px, py, ox, oy; local
1719 VGfloat ox, oy; local
1802 VGfloat ox, oy; local
[all...]
H A Dpath.h46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
/external/freetype/src/autofit/
H A Dafhints.h256 FT_Pos ox, oy; /* original, scaled position */ member in struct:AF_PointRec_
/external/freetype/src/cff/
H A Dcffobjs.h108 FT_F26Dot6 ox, oy; /* offsets */ member in struct:CFF_Transform_
/external/freetype/src/truetype/
H A Dttobjs.h195 FT_F26Dot6 ox, oy; /* offsets */ member in struct:TT_Transform_
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc2533 U4 ox = rand(); //NOLINT local
2535 T *x = GetPoisonedO<T>(0, ox, 0);
2542 EXPECT_EQ(true, origin == ox || origin == oy);
2554 *x = *GetPoisonedO<T>(0, ox);
2559 EXPECT_POISONED_O(*z, ox);
2560 EXPECT_EQ(__msan_get_origin(z), ox); local
2636 int ox = __LINE__; local
2642 __msan_set_origin(x, N * sizeof(T), ox);
2647 EXPECT_POISONED_O(y[0], ox);
2648 EXPECT_POISONED_O(y[N/2], ox);
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMask.cpp712 int ox = dx >> 1; local
713 if (ox < 0) {
714 ox = 0;
717 return profile[ox];
/external/chromium_org/third_party/skia/include/gpu/
H A DGrTexture.h199 void setOffset(int ox, int oy) { fOffset.set(ox, oy); } argument
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_xform_tmp.h88 const GLfloat ox = from[0]; local
89 to[i][0] = m0 * ox + m12;
90 to[i][1] = m1 * ox + m13;
91 to[i][2] = m2 * ox + m14;
92 to[i][3] = m3 * ox + m15;
132 const GLfloat ox = from[0]; local
133 to[i][0] = m0 * ox + m12;
134 to[i][1] = m1 * ox + m13;
153 const GLfloat ox = from[0]; local
154 to[i][0] = m0 * ox
175 const GLfloat ox = from[0]; local
199 const GLfloat ox = from[0]; local
221 const GLfloat ox = from[0]; local
254 const GLfloat ox = from[0], oy = from[1]; local
299 const GLfloat ox = from[0], oy = from[1]; local
320 const GLfloat ox = from[0], oy = from[1]; local
342 const GLfloat ox = from[0], oy = from[1]; local
369 const GLfloat ox = from[0], oy = from[1]; local
397 const GLfloat ox = from[0], oy = from[1]; local
425 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
471 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
493 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
517 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
542 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
565 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
593 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
640 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
663 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
688 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
712 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
736 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpath.c277 static INLINE void map_if_relative(VGfloat ox, VGfloat oy, argument
283 *x += ox;
291 VGfloat ox, VGfloat oy,
294 if (!floatsEqual(sx, ox) ||
364 VGfloat sx, sy, px, py, ox, oy; local
388 sx = sy = px = py = ox = oy = 0.f;
400 close_polygon(current, sx, sy, ox, oy, matrix);
401 ox = sx;
407 close_polygon(current, sx, sy, ox, oy, matrix);
414 map_if_relative(ox, o
289 close_polygon(struct polygon *current, VGfloat sx, VGfloat sy, VGfloat ox, VGfloat oy, struct matrix *matrix) argument
952 VGfloat px, py, ox, oy, sx, sy; member in struct:path_iter_data
1233 VGfloat sx, sy, px, py, ox, oy; local
1719 VGfloat ox, oy; local
1802 VGfloat ox, oy; local
[all...]
H A Dpath.h46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafhints.h256 FT_Pos ox, oy; /* original, scaled position */ member in struct:AF_PointRec_
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffobjs.h108 FT_F26Dot6 ox, oy; /* offsets */ member in struct:CFF_Transform_
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttobjs.h195 FT_F26Dot6 ox, oy; /* offsets */ member in struct:TT_Transform_

Completed in 1058 milliseconds