HomeSort by relevance Sort by last modified time
    Searched refs:x1 (Results 51 - 75 of 982) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/openssl/crypto/rc2/
rc2_cbc.c 140 register RC2_INT x0,x1,x2,x3,t; local
145 x1=(RC2_INT)(l>>16L);
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
159 x1=(t<<2)|(t>>14);
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
171 x1+=p1[x0&0x3f];
172 x2+=p1[x1&0x3f]
185 register RC2_INT x0,x1,x2,x3,t; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
highpass_400hz_at_12k8.cpp 150 int16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
159 x1 = mem[5];
171 x2 = x1;
172 x1 = x0;
175 L_tmp2 = fxp_mac_16by16(x1, -1830, L_tmp2);
197 mem[5] = x1;
highpass_50hz_at_12k8.cpp 152 int16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
162 x1 = mem[5];
176 x2 = x1;
177 x1 = x0;
180 L_tmp2 = fxp_mac_16by16(x1, -16212, L_tmp2);
202 mem[5] = x1;
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
hp400.c 64 Word16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
72 x1 = *mem;
76 x2 = x1;
77 x1 = x0;
85 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2)* b[0] + x1 * b[1]) << 1;
96 *mem-- = x1;
hp50.c 65 Word16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local
74 x1 = *mem;
78 x2 = x1;
79 x1 = x0;
87 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2) * b[0] + x1 * b[1]) << 1;
96 *mem-- = x1;
  /external/tremolo/Tremolo/
asm_arm.h 73 int x1, y1, l; local
79 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
82 *x = x1;
92 int x1, y1, l; local
98 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
101 *x = x1 << 1;
111 int x1, y1, l; local
117 : "=&r" (l), "=&r" (x1), "=&r" (y1)
120 *x = x1 << 1;
  /frameworks/base/media/libstagefright/foundation/
base64.cpp 106 uint8_t x1 = data[i]; local
110 out->append(encode6Bit(x1 >> 2));
111 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
120 uint8_t x1 = data[i]; local
122 out->append(encode6Bit(x1 >> 2));
123 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
130 uint8_t x1 = data[i]; local
131 out->append(encode6Bit(x1 >> 2));
132 out->append(encode6Bit((x1 << 4) & 0x3f));
  /external/webkit/WebCore/platform/animation/
TimingFunction.h 42 TimingFunction(ETimingFunctionType timingFunction, double x1 = 0.0, double y1 = 0.0, double x2 = 1.0, double y2 = 1.0)
44 , m_x1(x1)
56 double x1() const { return m_x1; } function in struct:WebCore::TimingFunction
  /external/webkit/WebKit/chromium/public/
WebContextMenuData.h 77 MediaInError = 0x1,
102 CheckableMenuItemEnabled = 0x1,
115 CanUndo = 0x1,
  /frameworks/base/core/java/android/net/http/
SslError.java 99 mErrors |= (0x1 << error);
112 rval = ((mErrors & (0x1 << error)) != 0);
125 if ((mErrors & (0x1 << error)) != 0) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
IGraphics.java 100 void drawLine(int x1, int y1, int x2, int y2);
111 void drawRect(int x1, int y1, int x2, int y2);
127 void fillRect(int x1, int y1, int x2, int y2);
  /bionic/libstdc++/src/
one_time_construction.cpp 42 if (__atomic_cmpxchg(0x2, 0x1, gv) == 0) {
46 *gv = 0x1;
  /external/webkit/WebCore/svg/
SVGLineElement.idl 34 readonly attribute SVGAnimatedLength x1;
SVGLinearGradientElement.idl 29 readonly attribute SVGAnimatedLength x1;
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
fastidct.cpp 81 int32 x0, x1, x3, x5, x7;//, x8; local
83 x1 = blk[8];
87 x7 = W7 * x1;
88 x1 = W1 * x1;
91 x5 = (181 * (x1 - x7) + 128) >> 8;
92 x7 = (181 * (x1 + x7) + 128) >> 8;
94 blk[0] = (x0 + x1) >> 8;
98 blk[56] = (x0 - x1) >> 8;
107 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8 local
142 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
185 int32 x1, x3, x5, x7;\/\/, x8; local
235 int32 x1, x3, x5, x7; local
261 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
373 int32 x0, x1, x2, x4, x5; local
432 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
502 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
578 int32 x1, x2, x4, x5; local
691 int32 x1, x3, x5, x7; local
746 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
869 int32 x0, x1, x2, x4, x5; local
924 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
990 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1063 int32 x1, x2, x4, x5; local
1171 int32 x1, x3, x5, x7; local
1223 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1369 int32 x0, x1, x2, x4, x5; local
1429 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1500 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
1577 int32 x1, x2, x4, x5; local
1692 int32 x1, x3, x5, x7; local
1748 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
    [all...]
  /external/qemu/android/skin/
rect.c 150 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
154 if (b.x1 >= a.x1 && b.x2 <= a.x2 && b.y1 >= a.y1 && b.y2 <= a.y2) {
170 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
175 r.x1 = (a.x1 > b.x1) ? a.x1 : b.x1
    [all...]
  /external/kernel-headers/original/asm-generic/bitops/
__ffs.h 38 if ((word & 0x1) == 0)
  /frameworks/base/services/sensorservice/
SecondOrderLowPassFilter.cpp 54 x1 = x2 = x;
61 float y = (x + x2)*s.a0 + x1*s.a1 - y1*s.b1 - y2*s.b2;
62 x2 = x1;
64 x1 = x;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
FontSize.java 27 LARGE(0x1),
TextAlignment.java 27 CENTER(0x1),
  /external/dropbear/libtommath/
bn_mp_karatsuba_mul.c 49 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
64 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
67 goto X1;
81 x1.used = a->used - B;
101 tmpx = x1.dp;
113 * upper words x1/y1 must have a known number of digits
122 if (mp_mul (&x1, &y1, &x1y1) != MP_OKAY)
123 goto X1Y1; /* x1y1 = x1*y1 */
125 /* now calc x1+x0 and y1+y0 */
126 if (s_mp_add (&x1, &x0, &t1) != MP_OKAY
    [all...]
bn_mp_karatsuba_sqr.c 27 mp_int x0, x1, t1, t2, x0x0, x1x1; local
41 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
46 goto X1;
66 dst = x1.dp;
73 x1.used = a->used - B;
77 /* now calc the products x0*x0 and x1*x1 */
80 if (mp_sqr (&x1, &x1x1) != MP_OKAY)
81 goto X1X1; /* x1x1 = x1*x1 */
    [all...]
  /external/skia/src/core/
SkEdge.cpp 37 SkFDot6 x0, y0, x1, y1; local
44 x1 = int(p1.fX * scale);
50 x1 = p1.fX >> shift;
58 SkTSwap(x0, x1);
75 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
92 int SkEdge::updateLine(SkFixed x0, SkFixed y0, SkFixed x1, SkFixed y1)
113 x1 >>= 10;
115 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
178 SkFDot6 x0, y0, x1, y1, x2, y2; local
185 x1 = int(pts[1].fX * scale)
319 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
    [all...]
  /external/libgsm/src/
gsm_encode.c 362 | ((bc[0] >> 1) & 0x1);
363 *c++ = ((bc[0] & 0x1) << 7)
366 *c++ = ((xmaxc[0] & 0x1) << 7)
369 | ((xmc[2] >> 2) & 0x1);
376 *c++ = ((xmc[7] & 0x1) << 7)
379 | ((xmc[10] >> 2) & 0x1);
384 | ((bc[1] >> 1) & 0x1);
385 *c++ = ((bc[1] & 0x1) << 7)
388 *c++ = ((xmaxc[1] & 0x1) << 7)
391 | ((xmc[15] >> 2) & 0x1);
    [all...]
gsm_implode.c 390 | ((bc[0] >> 1) & 0x1);
391 *c++ = ((bc[0] & 0x1) << 7)
397 *c++ = ((xmaxc[0] & 0x1) << 7)
404 | ((xmc[2] >> 2) & 0x1);
411 *c++ = ((xmc[7] & 0x1) << 7)
414 | ((xmc[10] >> 2) & 0x1);
423 | ((bc[1] >> 1) & 0x1);
424 *c++ = ((bc[1] & 0x1) << 7)
431 *c++ = ((xmaxc[1] & 0x1) << 7)
438 | ((xmc[15] >> 2) & 0x1);
    [all...]

Completed in 385 milliseconds

1 23 4 5 6 7 8 91011>>