HomeSort by relevance Sort by last modified time
    Searched defs:vz (Results 1 - 8 of 8) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_lgammaf_r.c 87 volatile float vz; local
93 vz = y+0x1p23F; /* depend on 0 <= y < 0x1p23 */
94 z = vz-0x1p23F; /* rintf(y) for the above range */
98 vz = y+0x1p21F;
99 GET_FLOAT_WORD(n,vz); /* bits for rounded y (units 0.25) */
100 z = vz-0x1p21F; /* y rounded to a multiple of 0.25 */
e_lgamma_r.c 166 volatile double vz; local
172 vz = y+0x1p52; /* depend on 0 <= y < 0x1p52 */
173 z = vz-0x1p52; /* rint(y) for the above range */
177 vz = y+0x1p50;
178 GET_LOW_WORD(n,vz); /* bits for rounded y (units 0.25) */
179 z = vz-0x1p50; /* y rounded to a multiple of 0.25 */
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c 236 float vz = x1 * y2 - y1 * x2; local
238 return (vx*vx + vy*vy + vz*vz) == 0.f;
  /art/test/710-varhandle-creation/src/
Main.java 61 static final VarHandle vz; field in class:Main
129 vz = MethodHandles.lookup().findVarHandle(Main.class, "z", boolean.class);
273 System.out.print("vz...");
274 checkNotNull(vz);
275 checkVarType(vz, boolean.class);
276 checkCoordinateTypes(vz, "[class Main]");
277 checkVarHandleAccessMode(vz, VarHandle.AccessMode.GET, true, "(Main)boolean");
278 checkVarHandleAccessMode(vz, VarHandle.AccessMode.SET, true, "(Main,boolean)void");
279 checkVarHandleAccessMode(vz, VarHandle.AccessMode.GET_VOLATILE, true, "(Main)boolean");
280 checkVarHandleAccessMode(vz, VarHandle.AccessMode.SET_VOLATILE, true, "(Main,boolean)void")
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
e_lgammal_r.c 189 volatile long double vz; local
196 vz = y+0x1.p112;
197 z = vz-0x1.p112;
201 vz = y+0x1.p110;
202 EXTRACT_LDBL128_WORDS(hx,lx,n,vz);
203 z = vz-0x1.p110;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 536 double vz = 1; local
540 vy = temp * Math.cos(tilt) - vz * Math.sin(tilt);
541 vz = temp * Math.sin(tilt) + vz * Math.cos(tilt);
549 if (vz < 0.05) {
552 float pd = (float) (z / vz);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
LongArray.java 2072 LongArray vz = new LongArray(t); local
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 855 milliseconds