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

  /external/e2fsprogs/lib/uuid/
uuid.h 56 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
57 static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
59 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
60 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
  /external/skia/tests/
UtilsTest.cpp 94 SkUnichar u0 = SkUTF8_ToUnichar(gTest[i].fUtf8); local
98 REPORTER_ASSERT(reporter, u0 == u1);
99 REPORTER_ASSERT(reporter, u0 == gTest[i].fUni);
  /external/quake/quake/src/QW/client/
r_draw.c 88 float scale, lzi0, u0, v0; local
93 u0 = r_u1;
113 u0 = (xcenter + scale*transformed[0]);
114 if (u0 < r_refdef.fvrectx_adj)
115 u0 = r_refdef.fvrectx_adj;
116 if (u0 > r_refdef.fvrectright_adj)
117 u0 = r_refdef.fvrectright_adj;
199 u_step = ((r_u1 - u0) / (r_v1 - v0));
200 u = u0 + ((float)v - v0) * u_step;
211 u_step = ((u0 - r_u1) / (v0 - r_v1))
    [all...]
  /external/quake/quake/src/WinQuake/
r_draw.cpp 88 float scale, lzi0, u0, v0; local
93 u0 = r_u1;
113 u0 = (xcenter + scale*transformed[0]);
114 if (u0 < r_refdef.fvrectx_adj)
115 u0 = r_refdef.fvrectx_adj;
116 if (u0 > r_refdef.fvrectright_adj)
117 u0 = r_refdef.fvrectright_adj;
199 u_step = ((r_u1 - u0) / (r_v1 - v0));
200 u = u0 + ((float)v - v0) * u_step;
211 u_step = ((u0 - r_u1) / (v0 - r_v1));
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_stdinc.h 244 int u0, u1, u2; \
248 : "=&D" (u0), "=&a" (u1), "=&c" (u2) \
276 int u0, u1, u2; \
287 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
324 int u0, u1, u2; \
332 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_stdinc.h 244 int u0, u1, u2; \
248 : "=&D" (u0), "=&a" (u1), "=&c" (u2) \
276 int u0, u1, u2; \
287 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
324 int u0, u1, u2; \
332 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_stdinc.h 244 int u0, u1, u2; \
248 : "=&D" (u0), "=&a" (u1), "=&c" (u2) \
276 int u0, u1, u2; \
287 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
324 int u0, u1, u2; \
332 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
  /prebuilt/windows/sdl/include/SDL/
SDL_stdinc.h 244 int u0, u1, u2; \
248 : "=&D" (u0), "=&a" (u1), "=&c" (u2) \
276 int u0, u1, u2; \
287 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
324 int u0, u1, u2; \
332 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
  /bionic/libm/src/
e_lgamma_r.c 125 u0 = -7.72156649015328655494e-02, /* 0xBFB3C467, 0xE37DB0C8 */ variable
264 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
e_lgammaf_r.c 59 u0 = -7.7215664089e-02, /* 0xbd9e233f */ variable
198 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
  /external/fdlibm/
e_lgamma_r.c 124 u0 = -7.72156649015328655494e-02, /* 0xBFB3C467, 0xE37DB0C8 */ variable
271 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));
  /external/stlport/src/
num_get_float.cpp 122 const uint64 u0 = u & low_mask; local
127 uint64 t = u0 * v0;
134 uint64 x = u0 * v1 + w1;
  /ndk/sources/android/stlport/src/
num_get_float.cpp 122 const uint64 u0 = u & low_mask; local
127 uint64 t = u0 * v0;
134 uint64 x = u0 * v1 + w1;
  /system/core/libpixelflinger/
scanline.cpp 601 int u0 = u >> 16; local
603 int u1 = u0 + 1;
606 if (u0<0) u0 += w;
608 if (u0>=w) u0 -= w;
611 if (u0<0) u0 = 0;
613 if (u0>=w) u0 = w-1
    [all...]
  /external/icu4c/i18n/
decNumberLocal.h 109 uInt u0, u1, v0, v1, w0, w1, w2, t; \
110 u0=u & 0xffff; u1=u>>16; \
112 w0=u0*v0; \
115 w1=u0*v1 + w1; \
    [all...]
  /external/v8/src/
json.js 90 else if (charCode < 4096) result = '\\u0';
  /external/v8/benchmarks/
crypto.js 588 // faster way of calculating u0 = x[i]*mp mod DV
590 var u0 = (j*this.mpl+(((j*this.mph+(x_array[i]>>15)*this.mpl)&this.um)<<15))&BI_DM;
593 x_array[j] += this.m.am(0,u0,x,i,0,this.m.t);
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-crypto.js 580 // faster way of calculating u0 = x[i]*mp mod DV
582 var u0 = (j*this.mpl+(((j*this.mph+(x_array[i]>>15)*this.mpl)&this.um)<<15))&BI_DM;
585 x_array[j] += this.m.am(0,u0,x,i,0,this.m.t);
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]

Completed in 413 milliseconds