HomeSort by relevance Sort by last modified time
    Searched refs:XY (Results 1 - 24 of 24) sorted by null

  /external/skia/legacy/src/core/
SkBitmapProcState_sample.h 27 const uint32_t* SK_RESTRICT xy,
39 uint32_t XY;
43 XY = *xy++;
44 SkASSERT((XY >> 16) < (unsigned)s.fBitmap->height() &&
45 (XY & 0xFFFF) < (unsigned)s.fBitmap->width());
46 src = ((const SRCTYPE*)(srcAddr + (XY >> 16) * rb))[XY & 0xFFFF];
49 XY = *xy++
    [all...]
  /external/skia/src/core/
SkBitmapProcState_sample.h 29 const uint32_t* SK_RESTRICT xy,
32 const uint32_t* SK_RESTRICT xy,
35 const uint32_t* SK_RESTRICT xy,
38 const uint32_t* SK_RESTRICT xy,
42 const uint32_t* SK_RESTRICT xy,
54 uint32_t XY;
58 XY = *xy++;
59 SkASSERT((XY >> 16) < (unsigned)s.fBitmap->height() &&
60 (XY & 0xFFFF) < (unsigned)s.fBitmap->width())
    [all...]
SkBitmapProcState.cpp 442 uint32_t xy[2]; local
444 mproc(s, xy, 1, x, y);
446 iY0 = xy[0] >> 18;
447 iY1 = xy[0] & 0x3FFF;
448 iSubY = (xy[0] >> 14) & 0xF;
648 uint32_t XY = bitmapXY[i];
649 unsigned x = XY & 0xFFFF;
650 unsigned y = XY >> 16;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.s 113 XY RN 8
159 LDR XY,=LOOP_COUNT
163 M_STRD XY, pBS, pXYBS
252 M_LDRD XY, pBS, pXYBS
256 ADDS XY, XY, XY
257 M_STR XY, pXYBS
269 M_LDRD XY, pBS, pXYBS
274 ADDS XY, XY, X
    [all...]
omxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.s 86 XY RN 8
127 LDR XY,=LOOP_COUNT
128 M_STRD XY, pBS, pXYBS
227 M_LDRD XY, pBS, pXYBS
232 ADDS XY, XY, XY
233 M_STR XY, pXYBS
307 M_LDRD XY, pBS, pXYBS
312 ADDS XY, XY, X
    [all...]
omxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s 110 XY RN 8
151 LDR XY,=LOOP_COUNT
152 M_STRD XY, pBS, pXYBS
307 M_LDRD XY, pBS, pXYBS
312 ADDS XY, XY, XY
313 M_STR XY, pXYBS
403 M_LDRD XY, pBS, pXYBS
409 ADDS XY, XY, X
    [all...]
omxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.s 139 XY RN 8
184 LDR XY,=LOOP_COUNT
188 M_STRD XY, pBS, pXYBS
423 M_LDRD XY, pBS, pXYBS
427 ADDS XY, XY, XY
430 M_STR XY, pXYBS
441 M_LDRD XY, pBS, pXYBS
446 ADDS XY, XY, X
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.s 47 XY RN 9
178 LDR XY,=LOOP_COUNT
236 ADDS XY, XY, XY
245 ADDS XY, XY, XY
261 ADDS XY,XY,X
    [all...]
omxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.s 41 XY RN 7
114 LDR XY, =LOOP_COUNT
176 ADDS XY, XY, XY
189 ADDS XY, XY, XY
omxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.s 48 XY RN 9
222 LDR XY,=LOOP_COUNT
353 ADDS XY, XY, XY
368 ADDS XY, XY, XY
406 ADDS XY,XY,X
    [all...]
omxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s 46 XY RN 7
133 LDR XY, =LOOP_COUNT
233 ADDS XY, XY, XY
268 ADDS XY, XY, XY
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/String/
regress-189898.js 55 actual = 'XaXY'.replace('XY', '--')
84 actual = 'XaXY'.replace(/XY/, '--')
89 actual = 'XaXY'.replace(/XY/g, '--')
  /external/skia/legacy/src/opts/
SkBitmapProcState_opts_SSE2.cpp 15 const uint32_t* xy,
24 uint32_t XY = *xy++;
25 unsigned y0 = XY >> 14;
27 const uint32_t* row1 = reinterpret_cast<const uint32_t*>(srcAddr + (XY & 0x3FFF) * rb);
54 uint32_t XX = *xy++; // x0:14 | 4 | x1:14
121 const uint32_t* xy,
130 uint32_t XY = *xy++;
131 unsigned y0 = XY >> 14
    [all...]
SkBitmapProcState_opts_SSSE3.cpp 26 // @param xy is the location where the xy parameters for four pixels should be
30 // suitable to mask the bottom 14 bits of a XY value.
32 // suitable to mask the bottom 4 bits of a XY value.
40 inline void PrepareConstantsTwoPixelPairs(const uint32_t* xy,
49 const __m128i xx = _mm_loadu_si128(reinterpret_cast<const __m128i *>(xy));
301 const uint32_t* xy,
315 const uint32_t XY = *xy++;
316 const unsigned y0 = XY >> 14
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_opts_SSE2.cpp 15 const uint32_t* xy,
24 uint32_t XY = *xy++;
25 unsigned y0 = XY >> 14;
27 const uint32_t* row1 = reinterpret_cast<const uint32_t*>(srcAddr + (XY & 0x3FFF) * rb);
54 uint32_t XX = *xy++; // x0:14 | 4 | x1:14
121 const uint32_t* xy,
130 uint32_t XY = *xy++;
131 unsigned y0 = XY >> 14
    [all...]
SkBitmapProcState_opts_SSSE3.cpp 26 // @param xy is the location where the xy parameters for four pixels should be
30 // suitable to mask the bottom 14 bits of a XY value.
32 // suitable to mask the bottom 4 bits of a XY value.
40 inline void PrepareConstantsTwoPixelPairs(const uint32_t* xy,
49 const __m128i xx = _mm_loadu_si128(reinterpret_cast<const __m128i *>(xy));
72 // @param xy is the location where the xy parameters for four pixels should be
76 // suitable to mask the bottom 14 bits of a XY value.
78 // suitable to mask the bottom 4 bits of a XY value
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 43 typedef N4::BinOpOverload<N1::X, N2::Y>::type XY;
44 XY *xy = a1; local
  /external/v8/test/mjsunit/regress/
regress-95485.js 42 assertEquals('XY', Test());
  /external/clang/test/Sema/
designated-initializers.c 146 struct XY { int before; struct XX xx, *xp; float* after; } xy[] = { variable in typeref:struct:XY
147 0, 0, &xy[0].xx.a, &xy[0].xx, &global_float,
148 [1].xx = 0, &xy[1].xx.a, &xy[1].xx, &global_float,
153 &xy[2].xx.a, &xy[2].xx, &global_float
  /external/libvorbis/lib/
psy.c 554 float *XY=alloca(n*sizeof(*N));
581 XY[0] = tXY;
600 XY[i] = tXY;
613 tXY = XY[hi] - XY[-lo];
635 tXY = XY[hi] - XY[lo];
664 tXY = XY[hi] - XY[-lo];
684 tXY = XY[hi] - XY[lo]
    [all...]
  /external/valgrind/main/none/tests/s390x/
xor.h 129 asm volatile( XY(1,0,2,000,00) \
135 printf("xy %16.16lX ^ %16.16lX = %16.16lX (cc=%d)\n", s1, s2, tmp, cc); \
opcodes.h 314 #define XY(r1,x2,b2,dl2,dh2) RXY_RRRD(e3,r1,x2,b2,dl2,dh2,57)
  /external/chromium/third_party/libjingle/source/talk/session/phone/testdata/
video.rtpdump     [all...]
voice.rtpdump 17 ??pj??}??xpu~z{{sloz??|q}|ytsop??}z???yolq????su?????~?zyx}??|uv{v{??{wz??|qot??????????????????????????{ux???{qvvkgmtvuvmt??|????}}zwyx~?}rrp~??y}?~x{qx???qqw?????9??4???pjzxnr??????z?zuzy{|{???|z???|??????????~vu???yw|~?wooov????????|????yrtt????zw????xqz?yrtt???w~?}|??????xz???{hlo|z~{?zw|?~|wox???}?????~zv{|????{?????????????????9??4?J??pjwsponnnmmuwz{??????~yxz~?tyxvx???}}?}????}~?xx????{z{upyx???uv????{~{?????}~????vow????????????yz?xu}~|tt??vq~?~xx{ztnmtnljpy{{v????{}??????}x???zy}{|{~??????9??4???pj???????????yzqw?????||{x?~}zywzzyrvv????????????vt}???~y}???{~????xo{????|z}?zuz|||?{wu~}tokowy{y???y????~|??zu}??????~??????{v??tqry???{ry??to|??|?|wo|???|z???9??4???pj}z~~??}zyyz{}z{??~?????????}y~???yvv{z}yy}z}????}???~{}??}?|pno???x|???????{???vwz???????|~||}?{w{~??xy{||y{???????????}wwsx????w?????????zts|}?|???|yvuy?????9??4?*??pj???|~???snvvy~????????????????z{{}wvtno{??|???}|pw{y|yuvvuz??~}???yy}????|{v{}???|???????????tty??}t?????}?????{v{?{zy|~zvootwqmlwurz?zwy??????}????x}~}{xx????9??4???pj??{???xwu?pvx?????|~??????????????|????????|squ?z|qt??}ro{??ztu|???{wz????????uqtv~~sq{???sopy}vy}}~?}???????|y???|w??}~zy{s??????????z??????|vy?|uy?}?? ?9??4?j??pjxwx~??~???~?|w}?{uno{?xty?x|???no{???|???????????????~???|~{{?~wxvy??w|}??xu~???ww???zw???zty???xy}}{yv???vqw???zz??}{~????|??????????~{????|{|???|z}y|y~yy?? !?9??4?
18 ??pjz???{~??wwz~~?|z???|z????~z{???xqtz??||vy?????}???|{vvz{ttvvu|}??????????{??????|{???????????~y???????~{zvxtrw????}}?????~}}{z?~?xuwz???wu{???~zyz||yww{?~?? 5?9??4???pj|z~?????}?}|}z~?????????~}??~????xv?????}?|?|???~?x}{|}???????|??zvtz?}xy~???{{u~????????}{???????wz?{}????zoqs|??{{vz~?{v|???????{~????tv??zwz???~??|wyx????? K?9??4?J??pj?|???y{??~{z|~|}|?????wqy???}yy???{}y~yy{????}{??????}???????|?????zz??xoq~???yy???}w??|vy??}xvoprx|~x{z}zz?????{yz????|??????||y}}??????????~~?????|???wst|??? _?9??4???pj?~?}zsuwx~??wwyyvxy}?|wv|???}?????}???????????~xw???zy??????|}??????????|z~?~{tsz???rtvy????????????{{~|{u|????~????|tsz??xqox???tnp{yxu|????~vsy???{|~???{z?}y?? u?9??4???pj}??}?}??????{~????}????~xy?????z}??{vvxzyutx??|tqv|?{zz???????}???????}????????~?~{~?????}yt??{uqwzx}|?{ws?????????|zy~??????|xr|??xwx}z{????????zrsw??? ??9??4?*??pj|{u???????????{yz?yx{??????????}???????????}y}???zwuvvzxxx????xsx|}zvz}~}{~{}{|?~???~}???????????????????????{{?|ywxtrpyzxwqqtwutnou|~yu}??y?????????????????? ??9??4???pj????{wx???~{|~??????ullw??|{{~???????}??????~????z?~?|tqw}zzutty}}xsqrwzz}???|}~??????}??????????????????????}~|}}???zuspvxzxpnotonmqy|}xqu???????????????????? ??9??4?j??pj???????????~~}~??????tu{}~xzwusx{~|zs~???????????|rzt~}???~~{sz}??yw~~xx{?yxw|??~z{~?????}}zvwy{?????????}|???????????u{ruqqu?x|~??????~?????|uz}?{vw???????{?? ?9??4?
    [all...]

Completed in 366 milliseconds