HomeSort by relevance Sort by last modified time
    Searched refs:y3 (Results 1 - 25 of 192) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
HeadsUpAppearInterpolator.java 38 float y3 = 80f; local
41 x1 * 0.8f / xTot, y1 / y3,
42 x1 / xTot , y1 / y3);
43 path.cubicTo((x1 + x2 * 0.4f) / xTot, y1 / y3,
44 (x1 + x2 * 0.2f) / xTot, y2 / y3,
45 (x1 + x2) / xTot, y2 / y3);
46 path.cubicTo((x1 + x2 + x3 * 0.4f) / xTot, y2 / y3,
  /frameworks/av/media/libaudioprocessing/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon39763
56 p->y2 = p->y3;
57 p->y3 = in;
58 p->a = (3 * (p->y1 - p->y2) - p->y0 + p->y3) >> 1;
59 p->b = (p->y2 << 1) + p->y0 - (((5 * p->y1 + p->y3)) >> 1);
  /system/bt/stack/smp/
p_256_ecc_pp.cc 48 uint32_t* y3; local
61 y3 = q->y;
74 multiprecision_mersenns_squa_mod(y3, y1, keyLength); // y3=y1^2
75 multiprecision_lshift_mod(y3, y3, keyLength);
76 multiprecision_mersenns_mult_mod(t3, y3, x1, keyLength); // t3=y3*x1=x1*y1^2
78 multiprecision_mersenns_squa_mod(y3, y3, keyLength); // y3=y3^2=y1^
98 uint32_t* y3; local
    [all...]
  /external/pdfium/third_party/agg23/
agg_curves.cpp 32 FX_FLOAT x3, FX_FLOAT y3,
38 bezier(x1, y1, x2, y2, x3, y3, x4, y4);
43 FX_FLOAT x3, FX_FLOAT y3,
53 FX_FLOAT y23 = (y2 + y3) / 2;
55 FX_FLOAT y34 = (y3 + y4) / 2;
65 FX_FLOAT d3 = FXSYS_fabs(((x3 - x4) * dy) - ((y3 - y4) * dx));
70 FXSYS_fabs(y1 + y3 - y2 - y2) +
72 FXSYS_fabs(y2 + y4 - y3 - y3) <= m_distance_tolerance_manhattan) {
104 FX_FLOAT x3, FX_FLOAT y3,
    [all...]
agg_curves.h 27 FX_FLOAT x3, FX_FLOAT y3,
35 cp[5] = y3;
41 FX_FLOAT x3, FX_FLOAT y3,
49 cp[5] = y3;
70 FX_FLOAT x3, FX_FLOAT y3,
74 init(x1, y1, x2, y2, x3, y3, x4, y4);
88 FX_FLOAT x3, FX_FLOAT y3,
126 FX_FLOAT x3, FX_FLOAT y3,
130 FX_FLOAT x3, FX_FLOAT y3,
144 FX_FLOAT x3, FX_FLOAT y3,
    [all...]
  /bionic/libc/arch-mips/string/
memcmp.c 159 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; local
166 if (x3 != y3)
167 return do_by_bitfields (x3, y3);
171 y0 = b[4]; y1 = b[5]; y2 = b[6]; y3 = b[7];
178 if (x3 != y3)
179 return do_by_bitfields (x3, y3);
188 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; local
195 if (x3 != y3)
196 return do_by_bitfields (x3, y3);
247 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3] local
285 reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3]; local
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug193.go 14 y3 := string(1 << s) // ERROR "shift"
15 _, _, _, _, _ = s, ss, y1, y2, y3
issue12577.go 29 y3 float64 = z3
65 test64(y3)
28 y3 float64 = z3 var
  /prebuilts/go/linux-x86/test/fixedbugs/
bug193.go 14 y3 := string(1 << s) // ERROR "shift"
15 _, _, _, _, _ = s, ss, y1, y2, y3
issue12577.go 29 y3 float64 = z3
65 test64(y3)
28 y3 float64 = z3 var
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_convolve5x5.rs 36 uint32_t y3 = min((int32_t)y+1, gHeight-1);
57 float4 p3 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y3)) * gCoeffs[15]
58 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y3)) * gCoeffs[16]
59 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y3)) * gCoeffs[17]
60 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y3)) * gCoeffs[18]
61 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y3)) * gCoeffs[19];
83 uint32_t y3 = min((int32_t)y+1, gHeight-1);
104 float3 p3 = convert_float3(rsGetElementAt_uchar3(gIn, x0, y3)) * gCoeffs[15]
105 + convert_float3(rsGetElementAt_uchar3(gIn, x1, y3)) * gCoeffs[16]
106 + convert_float3(rsGetElementAt_uchar3(gIn, x2, y3)) * gCoeffs[17
    [all...]
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
convolve5x5.rs 36 uint32_t y3 = min((int32_t)y+1, gHeight-1);
57 + convert_float4(rsGetElementAt_uchar4(gIn, x0, y3)) * gCoeffs[15]
58 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y3)) * gCoeffs[16]
59 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y3)) * gCoeffs[17]
60 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y3)) * gCoeffs[18]
61 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y3)) * gCoeffs[19]
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
convolve5x5.rs 36 uint32_t y3 = min((int32_t)y+1, gHeight-1);
57 + convert_float4(rsGetElementAt_uchar4(gIn, x0, y3)) * gCoeffs[15]
58 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y3)) * gCoeffs[16]
59 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y3)) * gCoeffs[17]
60 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y3)) * gCoeffs[18]
61 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y3)) * gCoeffs[19]
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
convolve5x5.rs 36 uint32_t y3 = min((int32_t)y+1, gHeight-1);
57 + convert_float4(rsGetElementAt_uchar4(gIn, x0, y3)) * gCoeffs[15]
58 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y3)) * gCoeffs[16]
59 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y3)) * gCoeffs[17]
60 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y3)) * gCoeffs[18]
61 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y3)) * gCoeffs[19]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
RiddersSolver.java 197 final double y3 = f.value(x3); local
198 if (FastMath.abs(y3) <= functionValueAccuracy) {
202 final double delta = 1 - (y1 * y2) / (y3 * y3); // delta > 1 due to bracketing
203 final double correction = (MathUtils.sign(y2) * MathUtils.sign(y3)) *
229 y2 = y3;
238 y1 = y3;
  /external/mesa3d/src/amd/addrlib/r800/
siaddrlib.cpp 203 UINT_32 y3 = _BIT(ty,0); local
211 pipeBit0 = x3 ^ y3;
215 pipeBit0 = x4 ^ y3;
220 pipeBit0 = x3 ^ y3 ^ x4;
225 pipeBit0 = x3 ^ y3 ^ x4;
230 pipeBit0 = x3 ^ y3 ^ x5;
235 pipeBit0 = x4 ^ y3 ^ x5;
240 pipeBit0 = x4 ^ y3 ^ x5;
246 pipeBit0 = x3 ^ y3 ^ x4;
252 pipeBit0 = x4 ^ y3 ^ x5
352 UINT_32 y3 = 0; local
2048 UINT_32 y3 = _BIT(y, 3); local
    [all...]
  /external/speex/libspeex/
ltp_arm4.h 101 spx_word32_t y0, y1, y2, y3; local
105 y3=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),
  /external/clang/test/CodeGen/
mcu-struct-return.c 57 struct S1 y3 = bar3(x1); local
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 34 struct Y3 : public Y2 {
36 Y3 y3; variable
warn-literal-conversion.cpp 11 int y3 = 12E-1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2 to 1}} local
  /external/skia/bench/
CubicKLMBench.cpp 18 SkScalar x2, SkScalar y2, SkScalar x3, SkScalar y3) {
22 fPoints[3].set(x3, y3);
  /external/skia/experimental/docs/
interpolatorFunctions.js 28 var x3 = curve[4], y3 = curve[5], x4 = curve[6], y4 = curve[7];
31 var ay = interp_cubic_coords(y1, y2, y3, y4, t1);
33 var ey = interp_cubic_coords(y1, y2, y3, y4, (t1*2+t2)/3);
35 var fy = interp_cubic_coords(y1, y2, y3, y4, (t1+t2*2)/3);
37 var dy = interp_cubic_coords(y1, y2, y3, y4, t2);
  /external/libvncserver/examples/
zippy.c 98 int i,j,y3=(y1*2+y2)/3,y4=(y1+y2*2)/3; local
101 rfbDrawPixel(s,x1,y3,f.greenMax<<f.greenShift);
108 memcpy(ADDR(i,j+y3),ADDR(x1,y3),bpp);
116 int y3=(y1*2+y2)/3,y4=(y1+y2*2)/3; local
118 rfbFillRect(s,x1,y1,x2,y3,f.redMax<<f.redShift);
119 rfbFillRect(s,x1,y3,x2,y4,f.greenMax<<f.greenShift);
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
elliptic.go 112 x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
115 y3.Set(y2)
117 return x3, y3, z3
121 y3.Set(y1)
123 return x3, y3, z3
168 y3.Set(r)
170 y3.Mul(y3, v)
173 y3.Sub(y3, s1
    [all...]
  /prebuilts/go/linux-x86/src/crypto/elliptic/
elliptic.go 112 x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
115 y3.Set(y2)
117 return x3, y3, z3
121 y3.Set(y1)
123 return x3, y3, z3
168 y3.Set(r)
170 y3.Mul(y3, v)
173 y3.Sub(y3, s1
    [all...]

Completed in 745 milliseconds

1 2 3 4 5 6 7 8