HomeSort by relevance Sort by last modified time
    Searched defs:x1 (Results 126 - 150 of 753) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_zoom.c 44 * \param x0, x1 returned X bounds of zoomed region [x0, x1)
51 GLint *x0, GLint *x1, GLint *y0, GLint *y1)
94 *x1 = c1;
136 GLint x0, x1, y0, y1; local
140 &x0, &x1, &y0, &y1)) {
151 zoomedWidth = x1 - x0;
366 GLint x0, x1, y0, y1, y; local
370 &x0, &x1, &y0, &y1)) {
374 zoomedWidth = x1 - x0
411 GLint x0, x1, y0, y1, y; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/poly1305/
poly1305_arm.c 76 uint32_t x1 = r->v[2]; local
89 x1 += x0 >> 26; x0 &= 0x3ffffff;
90 x2 += x1 >> 26; x1 &= 0x3ffffff;
97 y1 = x1 + (y0 >> 26); y0 &= 0x3ffffff;
104 y1 ^= x1;
116 y1 ^= x1;
131 uint32_t x1 = x->v[2]; local
136 x1 += x0 >> 26;
138 x2 += x1 >> 26
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
mdct.c 301 kiss_fft_scalar x1, x2; local
302 x1 = *xp1;
304 *yp1++ = MULT16_32_Q15(*wp2, x2) - MULT16_32_Q15(*wp1, x1);
305 *xp1-- = MULT16_32_Q15(*wp1, x2) + MULT16_32_Q15(*wp2, x1);
  /external/chromium_org/third_party/opus/src/silk/fixed/
burg_modified_FIX.c 57 opus_int32 C0, num, nrg, rc_Q31, invGain_Q30, Atmp_QA, Atmp1, tmp1, tmp2, x1, x2; local
127 x1 = -silk_LSHIFT32( (opus_int32)x_ptr[ n ], 16 - rshifts ); /* Q(16-rshifts) */
132 C_first_row[ k ] = silk_SMLAWB( C_first_row[ k ], x1, x_ptr[ n - k - 1 ] ); /* Q( -rshifts ) */
148 x1 = -silk_LSHIFT32( (opus_int32)x_ptr[ n ], -rshifts ); /* Q( -rshifts ) */
153 C_first_row[ k ] = silk_MLA( C_first_row[ k ], x1, x_ptr[ n - k - 1 ] ); /* Q( -rshifts ) */
  /external/chromium_org/third_party/skia/src/animator/
SkPathParts.h 71 SkScalar x1; member in class:SkQuadTo
89 SkScalar x1; member in class:SkCubicTo
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState_shaderproc.h 61 unsigned x1 = TILEX_PROCF((fx + oneX), maxX); local
65 SRC_TO_FILTER(row0[x1]),
67 SRC_TO_FILTER(row1[x1]),
SkBlitter.cpp 299 int x1 = left + compute_anti_width(runs); local
301 if (x1 <= fClipRect.fLeft) {
305 SkASSERT(x0 < x1);
314 SkASSERT(x0 < x1 && runs[x1 - x0] == 0);
315 if (x1 > fClipRect.fRight) {
316 x1 = fClipRect.fRight;
317 SkAlphaRuns::BreakAt((int16_t*)runs, (uint8_t*)aa, x1 - x0);
318 ((int16_t*)runs)[x1 - x0] = 0;
321 SkASSERT(x0 < x1 && runs[x1 - x0] == 0)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
smi-ops-inlined.js 236 var x1 = 0x10000000; variable
239 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<1(1)");
243 x1 = 0x10000000
246 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<2(2)");
smi-ops.js 243 var x1 = 0x10000000; variable
246 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<1(1)");
250 x1 = 0x10000000
253 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<2(2)");
  /external/clang/test/ASTMerge/Inputs/
enum1.c 6 } x1; variable in typeref:enum:E1
enum2.c 6 } x1; variable in typeref:enum:E1
struct1.c 18 struct S1 x1; variable in typeref:struct:S1
struct2.c 15 struct S1 x1; variable in typeref:struct:S1
  /external/clang/test/CodeGen/
decl.c 113 typedef long (*x1)(x0 x0a, x5 x6); typedef
115 x1 x4;
regparm-struct.c 10 int x1; member in struct:s1
20 int x1; member in struct:s2
37 int x1; member in struct:s3
55 int x1; member in struct:s4
74 float x1; member in struct:s5
84 float x1; member in struct:s6
95 float x1; member in struct:s7
107 float x1; member in struct:s8
118 float x1; member in struct:s9
130 double x1; member in struct:s10
140 double x1; member in struct:s11
151 double x1; member in struct:s12
    [all...]
  /external/clang/test/CodeGenCXX/
anonymous-union-member-initializer.cpp 36 X x1; local
39 x1.l = 1;
42 X x2(x1);
46 x3 = x1;
  /external/clang/test/SemaTemplate/
instantiate-complete.cpp 49 struct X1 { };
54 void refbind_base(X2<X1<int> > &x2) {
55 X1<int> &x1 = x2; local
64 void enum_constructors(X1<float> &x1) {
65 X3<X1<float> > x3 = x1;
  /external/dropbear/libtommath/etc/
pprime.c 17 mp_word x1, x2; local
21 x1 = x2;
22 x2 = x1 - ((x1 * x1) - x) / (2 * x1);
23 } while (x1 != x2);
25 if (x1 * x1 > x) {
26 --x1;
    [all...]
  /external/libvorbis/lib/
mdct.c 221 DATA_TYPE *x1 = x + points - 8; local
228 r0 = x1[6] - x2[6];
229 r1 = x1[7] - x2[7];
230 x1[6] += x2[6];
231 x1[7] += x2[7];
235 r0 = x1[4] - x2[4];
236 r1 = x1[5] - x2[5];
237 x1[4] += x2[4];
238 x1[5] += x2[5];
242 r0 = x1[2] - x2[2]
269 DATA_TYPE *x1 = x + points - 8; local
357 DATA_TYPE *x1 = x+bit[1]; local
508 DATA_TYPE *x1=x0+1; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_sse2.c 44 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1; local
71 x1 = _mm_xor_si128(z1, sz1);
73 x1 = _mm_sub_epi16(x1, sz1);
83 x_minus_zbin1 = _mm_sub_epi16(x1, zbin1);
91 x1 = _mm_add_epi16(x1, round1);
94 y1 = _mm_mulhi_epi16(x1, quant1);
97 y1 = _mm_add_epi16(y1, x1);
159 __m128i sz0, sz1, x0, x1, y0, y1, xdq0, xdq1, zeros, ones local
    [all...]
  /external/lzma/Asm/x86/
7zAsm.asm 43 x1 equ ECX define
72 r1 equ x1
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_dynamic.c 269 unsigned x1 = i915->scissor.minx; local
276 sc[1] = (y1 << 16) | (x1 & 0xffff);
  /external/mesa3d/src/mesa/swrast/
s_zoom.c 44 * \param x0, x1 returned X bounds of zoomed region [x0, x1)
51 GLint *x0, GLint *x1, GLint *y0, GLint *y1)
94 *x1 = c1;
136 GLint x0, x1, y0, y1; local
140 &x0, &x1, &y0, &y1)) {
151 zoomedWidth = x1 - x0;
366 GLint x0, x1, y0, y1, y; local
370 &x0, &x1, &y0, &y1)) {
374 zoomedWidth = x1 - x0
411 GLint x0, x1, y0, y1, y; local
    [all...]
  /external/openfst/src/include/fst/
signed-log-weight.h 35 typedef TropicalWeight X1;
37 using PairWeight<X1, X2>::Value1;
38 using PairWeight<X1, X2>::Value2;
40 using PairWeight<X1, X2>::Reverse;
41 using PairWeight<X1, X2>::Quantize;
42 using PairWeight<X1, X2>::Member;
46 SignedLogWeightTpl() : PairWeight<X1, X2>() {}
49 : PairWeight<X1, X2> (w) { }
51 SignedLogWeightTpl(const PairWeight<X1, X2>& w)
52 : PairWeight<X1, X2> (w) {
295 TropicalWeight x1 = 1.0; local
304 TropicalWeight x1 = 1.0; local
313 TropicalWeight x1 = 1.0; local
322 TropicalWeight x1 = w.Value1(); local
332 TropicalWeight x1 = 1.0; local
341 TropicalWeight x1 = 1.0; local
350 TropicalWeight x1 = 1.0; local
359 TropicalWeight x1 = w.Value1(); local
    [all...]
  /external/pixman/demos/
radial-test.c 96 double x0, x1, radius0, radius1, left, right, center; local
99 x1 = 1;
104 left = MIN (x0 - radius0, x1 - radius1);
105 right = MAX (x0 + radius0, x1 + radius1);
108 x1 -= center;
110 /* scale to make it fit within a 1x1 rect centered in (0,0) */
112 x1 *= 0.25;
119 p1.x = pixman_double_to_fixed (x1);
156 * origin and whose interesting part fits a 1x1 square. We want to

Completed in 658 milliseconds

1 2 3 4 56 7 8 91011>>