HomeSort by relevance Sort by last modified time
    Searched defs:x2 (Results 101 - 125 of 1474) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libopus/celt/
mathops.c 144 opus_val16 x2; local
146 x2 = MULT16_16_P15(x,x);
147 return ADD16(1,MIN16(32766,ADD32(SUB16(L1,x2), MULT16_16_P15(x2, ADD32(L2, MULT16_16_P15(x2, ADD32(L3, MULT16_16_P15(L4, x2
  /external/pdfium/core/src/fxge/agg/agg23/
agg_rendering_buffer.h 29 int x1, x2; member in struct:agg::rendering_buffer::row_data
33 x1(x1_), x2(x2_), ptr(ptr_) {}
  /external/valgrind/memcheck/tests/
mempool.c 115 char *x1, *x2, *x3, *x4, *x5; local
122 x2 = allocate(p, 20);
128 *x2 = 'b'; // valid
139 *x2 = 'f'; // valid
mempool2.c 118 char *x1, *x2; local
131 x2 = allocate(p2, 20);
140 res += x2[-1]; // invalid
141 res += x2[20]; // invalid
150 VALGRIND_MEMPOOL_FREE(p2, x2);
151 res += x2[11];
159 VALGRIND_MEMPOOL_FREE(p2, x2);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_adv_b_add.cpp 867 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Align_unsafe_s.s 49 x2 RN 11 label
90 LDM pSrc, {x0, x1, x2}
96 STM pDst!, {x0, x1, x2} ;// Store aligned output row
101 LDM pSrc, {x0, x1, x2}
110 ORR x1, x1, x2, LSL #24
111 MOV x2, x2, LSR #8
112 STM pDst!, {x0, x1, x2} ;// Store aligned output row
117 LDM pSrc, {x0, x1, x2}
126 ORR x1, x1, x2, LSL #1
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Align_unsafe_s.s 49 x2 RN 11 label
90 LDM pSrc, {x0, x1, x2}
96 STM pDst!, {x0, x1, x2} ;// Store aligned output row
101 LDM pSrc, {x0, x1, x2}
110 ORR x1, x1, x2, LSL #24
111 MOV x2, x2, LSR #8
112 STM pDst!, {x0, x1, x2} ;// Store aligned output row
117 LDM pSrc, {x0, x1, x2}
126 ORR x1, x1, x2, LSL #1
    [all...]
  /frameworks/base/libs/hwui/
ShadowTessellator.cpp 131 double x2 = poly[p2].x; local
133 double a = (x1 * y2 - x2 * y1);
134 sumx += (x1 + x2) * a;
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicLUT.cpp 64 uint32_t x2 = xend; local
71 while (x1 < x2) {
  /system/bt/embdrv/sbc/encoder/srce/
sbc_dct.c 87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local
94 x2 = (pInVect[2] + pInVect[6]) >>1;
106 /* rearrangement of x2 and x6 as in (15) */
107 x2 -=x6;
110 /* 2-point IDCT of x2 and x6 and post-multiplication as in (15) */
112 temp = x2 ;
113 SBC_IDCT_MULT(SBC_COS_PI_SUR_8,( x2 + x6 ), x2); /*x2 = ( x2 + x6 ) * cos(1*pi/8) ; *
209 SINT32 temp,x2; local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_tanhl.c 115 long double hi,lo,s,x2,x4,z; local
137 x2 = x*x;
139 x4 = x2*x2;
140 RETURNI(((T19*x2 + T17)*x4 + (T15*x2 + T13))*(x2*x*x2*x4*x4) +
141 ((T11*x2 + T9)*x4 + (T7*x2 + T5))*(x2*x*x2)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
MullerSolver.java 200 // [x0, x2] is the bracketing interval in each iteration
201 // x1 is the last approximation and an interpolation point in (x0, x2)
207 double x2 = max; local
208 double y2 = f.value(x2);
209 double x1 = 0.5 * (x0 + x2);
224 // x0, x1, x2 and x is the zero of the interpolating parabola.
226 // real roots and we choose one in [x0, x2] to be x.
228 final double d12 = (y2 - y1) / (x2 - x1);
229 final double d012 = (d12 - d01) / (x2 - x0);
235 // one of them should lie in (x0, x2)
352 double x2 = 0.5 * (x0 + x1); local
    [all...]
  /external/boringssl/src/crypto/poly1305/
poly1305_arm.c 43 uint32_t x2 = r->v[4]; local
56 x2 += x1 >> 26;
58 x3 += x2 >> 26;
59 x2 &= 0x3ffffff;
69 y2 = x2 + (y1 >> 26);
80 y2 ^= x2;
92 y2 ^= x2;
106 uint32_t x2 = x->v[4]; local
112 x2 += x1 >> 26;
114 x3 += x2 >> 26
    [all...]
  /external/ceres-solver/examples/
more_garbow_hillstrom.cc 86 const T x2 = x[1]; member in namespace:ceres::examples
87 residual[0] = T(10.0) * (x2 - x1 * x1);
101 const T x2 = x[1]; member in namespace:ceres::examples
102 residual[0] = T(-13.0) + x1 + ((T(5.0) - x2) * x2 - T(2.0)) * x2;
103 residual[1] = T(-29.0) + x1 + ((x2 + T(1.0)) * x2 - T(14.0)) * x2;
116 const T x2 = x[1] member in namespace:ceres::examples
130 const T x2 = x[1]; member in namespace:ceres::examples
145 const T x2 = x[1]; member in namespace:ceres::examples
160 const T x2 = x[1]; member in namespace:ceres::examples
178 const T x2 = x[1]; member in namespace:ceres::examples
196 const T x2 = x[1]; member in namespace:ceres::examples
223 const T x2 = x[1]; member in namespace:ceres::examples
245 const T x2 = x[1]; member in namespace:ceres::examples
    [all...]
  /external/clang/test/ASTMerge/Inputs/
enum1.c 13 } x2; variable in typeref:enum:E2
enum2.c 13 } x2; variable in typeref:enum:E2
struct1.c 21 struct S2 { int i; float f; } x2; variable in typeref:struct:S2
struct2.c 18 union S2 { int i; float f; } x2; variable in typeref:union:S2
  /external/clang/test/CodeGen/
decl.c 112 typedef struct x2 *x0;
114 struct x2 { struct
regparm-struct.c 21 int x2; member in struct:s2
38 int x2; member in struct:s3
56 int x2; member in struct:s4
85 int x2; member in struct:s6
96 int x2; member in struct:s7
108 float x2; member in struct:s8
119 float x2; member in struct:s9
141 double x2; member in struct:s11
152 float x2; member in struct:s12
  /external/clang/test/Lexer/
ms-extensions.c 6 __int16 x2 = 4i16; variable
  /external/clang/test/Sema/
function-redecl.c 121 a2 x2; // expected-note{{passing argument to parameter here}} variable
124 x2(5); // expected-warning{{incompatible integer to pointer conversion passing 'int' to parameter of type 'int *'}}
types.c 73 typedef int __attribute__ ((ext_vector_type(8192))) x2; // expected-error {{vector size too large}} typedef
  /external/clang/test/SemaCXX/
nullptr.cpp 176 struct X2 {};
178 X2<nullptr, nullptr, nullptr, nullptr> x2; member in namespace:templates
warn-bad-memaccess.cpp 25 struct X2 : virtual S1 {} x2; variable in typeref:struct:X2
40 memset(&x2, 0, sizeof x2); // \
66 __builtin_memset(&x2, 0, sizeof x2); // \
86 __builtin___memset_chk(&x2, 0, sizeof x2, sizeof x2); // \

Completed in 674 milliseconds

1 2 3 45 6 7 8 91011>>