HomeSort by relevance Sort by last modified time
    Searched refs:x2 (Results 126 - 150 of 4855) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/openssl/crypto/rc2/
rc2_cbc.c 140 register RC2_INT x0,x1,x2,x3,t; local
147 x2=(RC2_INT)l&0xffff;
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
161 x2=(t<<3)|(t>>13);
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
172 x2+=p1[x1&0x3f];
173 x3+=p1[x2&0x3f]
185 register RC2_INT x0,x1,x2,x3,t; local
    [all...]
  /external/skia/src/utils/
SkCubicInterval.cpp 50 SkScalar x2, SkScalar y2,
53 x2 = SkScalarPin(x2, 0, SK_Scalar1);
58 x2 *= 3;
61 SkScalar t = find_cubic_t(x1, x2 - 2*x1, x1 - x2 + SK_Scalar1, unitX);
  /frameworks/av/media/libeffects/loudness/common/core/
math.h 58 const T x2 = x * x; local
59 const T x3 = x2 * x;
60 const T x4 = x2 * x2;
61 const T x5 = x3 * x2;
62 return 1.0f + x + 0.5f * x2 +
  /external/libhevc/common/arm64/
ihevc_deblk_chroma_horz.s 77 add x1,x2,x3
80 add x2,x1,#1
83 adds x1,x10,x2,asr #1
95 adds x2,x7,x2,asr #1
98 cmp x2,#0x39
100 ldr w2, [x3,x2,lsl #2]
102 sub x20,x2,#6
103 csel x2, x20, x2,g
    [all...]
ihevc_inter_pred_luma_copy.s 69 // x2 => src_strd
102 add x9,x0,x2 //pu1_src_tmp += src_strd
105 ld1 {v0.s}[0],[x9],x2 //vld1_lane_u32((uint32_t *)pu1_src_tmp, src_tmp, 0)
108 ld1 {v0.s}[0],[x9],x2 //vld1_lane_u32((uint32_t *)pu1_src_tmp, src_tmp, 0)
111 ld1 {v0.s}[0],[x9],x2 //vld1_lane_u32((uint32_t *)pu1_src_tmp, src_tmp, 0)
139 add x9,x0,x2 //pu1_src_tmp += src_strd
143 ld1 {v1.8b},[x9],x2 //vld1_u8(pu1_src_tmp)
146 ld1 {v2.8b},[x9],x2 //vld1_u8(pu1_src_tmp)
148 ld1 {v3.8b},[x9],x2 //vld1_u8(pu1_src_tmp)
172 add x9,x0,x2 //pu1_src_tmp += src_str
    [all...]
  /external/chromium_org/third_party/opus/src/silk/
stereo_MS_to_LR.c 38 opus_int16 x2[], /* I/O Right input signal, becomes side signal */
49 silk_memcpy( x2, state->sSide, 2 * sizeof( opus_int16 ) );
51 silk_memcpy( state->sSide, &x2[ frame_length ], 2 * sizeof( opus_int16 ) );
63 sum = silk_SMLAWB( silk_LSHIFT( (opus_int32)x2[ n + 1 ], 8 ), sum, pred0_Q13 ); /* Q8 */
65 x2[ n + 1 ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( sum, 8 ) );
71 sum = silk_SMLAWB( silk_LSHIFT( (opus_int32)x2[ n + 1 ], 8 ), sum, pred0_Q13 ); /* Q8 */
73 x2[ n + 1 ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( sum, 8 ) );
80 sum = x1[ n + 1 ] + (opus_int32)x2[ n + 1 ];
81 diff = x1[ n + 1 ] - (opus_int32)x2[ n + 1 ];
83 x2[ n + 1 ] = (opus_int16)silk_SAT16( diff )
    [all...]
  /external/libopus/silk/
stereo_MS_to_LR.c 38 opus_int16 x2[], /* I/O Right input signal, becomes side signal */
49 silk_memcpy( x2, state->sSide, 2 * sizeof( opus_int16 ) );
51 silk_memcpy( state->sSide, &x2[ frame_length ], 2 * sizeof( opus_int16 ) );
63 sum = silk_SMLAWB( silk_LSHIFT( (opus_int32)x2[ n + 1 ], 8 ), sum, pred0_Q13 ); /* Q8 */
65 x2[ n + 1 ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( sum, 8 ) );
71 sum = silk_SMLAWB( silk_LSHIFT( (opus_int32)x2[ n + 1 ], 8 ), sum, pred0_Q13 ); /* Q8 */
73 x2[ n + 1 ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( sum, 8 ) );
80 sum = x1[ n + 1 ] + (opus_int32)x2[ n + 1 ];
81 diff = x1[ n + 1 ] - (opus_int32)x2[ n + 1 ];
83 x2[ n + 1 ] = (opus_int16)silk_SAT16( diff )
    [all...]
  /external/pdfium/core/src/fxge/agg/agg23/
agg_renderer_base.h 78 return m_clip_box.x2;
98 return m_clip_box.x2;
104 void blend_hline(int x1, int y, int x2,
107 if(x1 > x2) {
108 int t = x2;
109 x2 = x1;
121 if(x2 < xmin()) {
127 if(x2 > xmax()) {
128 x2 = xmax();
130 m_ren->blend_hline(x1, y, x2 - x1 + 1, c, cover)
    [all...]
agg_basics.h 65 T x2; member in struct:agg::rect_base
69 x1(x1_), y1(y1_), x2(x2_), y2(y2_) {}
73 if(x1 > x2) {
75 x1 = x2;
76 x2 = t;
87 if(x2 > r.x2) {
88 x2 = r.x2;
99 return x1 <= x2 && y1 <= y2
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlend.cpp 122 uint32_t x2 = xend; local
126 if (rsdIntrinsicBlend_K(out, in, p->slot, x1, x2) >= 0)
132 for (;x1 < x2; x1++, out++) {
137 for (;x1 < x2; x1++, out++, in++) {
147 if ((x1 + 8) < x2) {
148 uint32_t len = (x2 - x1) >> 3;
156 for (;x1 < x2; x1++, out++, in++) {
166 if ((x1 + 8) < x2) {
167 uint32_t len = (x2 - x1) >> 3;
175 for (;x1 < x2; x1++, out++, in++)
    [all...]
  /external/llvm/test/MC/AArch64/
arm64-logical-encoding.s 11 and x1, x2, #15
16 ands x1, x2, #15
21 ; CHECK: and x1, x2, #0xf ; encoding: [0x41,0x0c,0x40,0x92]
26 ; CHECK: ands x1, x2, #0xf ; encoding: [0x41,0x0c,0x40,0xf2]
29 eor x1, x2, #0x8000
32 ; CHECK: eor x1, x2, #0x8000 ; encoding: [0x41,0x00,0x71,0xd2]
35 orr x1, x2, #0x8000
38 ; CHECK: orr x1, x2, #0x8000 ; encoding: [0x41,0x00,0x71,0xb2]
51 and x1, x2, x3
53 and x1, x2, x3, lsl #
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
UnitBezier.h 103 double x2; local
109 x2 = sampleCurveX(t2) - x;
110 if (fabs (x2) < epsilon)
115 t2 = t2 - x2 / d2;
124 x2 = sampleCurveX(t2);
125 if (fabs(x2 - x) < epsilon)
127 if (x > x2)
  /external/eigen/test/
array_replicate.cpp 31 MatrixX x1, x2; local
43 x2.resize(2*rows,3*cols);
44 x2 << m2, m2, m2,
46 VERIFY_IS_APPROX(x2, (m2.template replicate<2,3>()));
48 x2.resize(rows,f1);
50 x2.col(j) = v1;
51 VERIFY_IS_APPROX(x2, v1.rowwise().replicate(f1));
smallvectors.cpp 20 x2 = internal::random<Scalar>(), local
23 V2 v2(x1, x2);
24 V3 v3(x1, x2, x3);
25 V4 v4(x1, x2, x3, x4);
29 VERIFY_IS_APPROX(x2, v2.y());
30 VERIFY_IS_APPROX(x2, v3.y());
31 VERIFY_IS_APPROX(x2, v4.y());
  /external/libvorbis/lib/
mdct.c 222 DATA_TYPE *x2 = x + (points>>1) - 8; local
228 r0 = x1[6] - x2[6];
229 r1 = x1[7] - x2[7];
230 x1[6] += x2[6];
231 x1[7] += x2[7];
232 x2[6] = MULT_NORM(r1 * T[1] + r0 * T[0]);
233 x2[7] = MULT_NORM(r1 * T[0] - r0 * T[1]);
235 r0 = x1[4] - x2[4];
236 r1 = x1[5] - x2[5];
237 x1[4] += x2[4]
270 DATA_TYPE *x2 = x + (points>>1) - 8; local
    [all...]
  /external/valgrind/main/coregrind/m_dispatch/
dispatch-arm64-linux.S 62 x2 holds host_addr
89 br x2
129 str x2, [x0, #8]
144 mov x2, x30 // 30 == LR
151 sub x2, x2, #4+4+4+4+4
162 mov x2, x30 // 30 == LR
169 sub x2, x2, #4+4+4+4+4
186 // x0 = next guest, x1,x2,x3,x4 scratc
    [all...]
  /development/perftests/panorama/feature_stab/db_vlvm/
db_image_homography.h 38 \param x2 image 1 point 2
47 double x1[3],double x2[3],double x3[3],double x4[3],
55 \param x2 image 1 point 2
62 double x1[3],double x2[3],double x3[3],
70 \param x2 image 1 point 2
77 double x1[3],double x2[3],
85 x[1]=x2;
96 is required, although it could be desirable to keep x1,x2,xp1 and xp2 of reasonable magnitude.
100 DB_API int db_StitchRotationCommonFocalLength_3Points(double H[9],double x1[3],double x2[3],double x3[3],
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTimingFunctionValue.h 37 static PassRefPtrWillBeRawPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2)
39 return adoptRefWillBeNoop(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
46 double x2() const { return m_x2; } function in class:blink::CSSCubicBezierTimingFunctionValue
54 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2)
58 , m_x2(x2)
  /external/chromium_org/third_party/WebKit/Source/core/paint/
ObjectPainter.h 27 static void drawLineForBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2, BoxSide, Color, EBorderStyle, int adjbw1, int adjbw2, bool antialias = false);
28 static void drawDashedOrDottedBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
30 static void drawDoubleBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
32 static void drawRidgeOrGrooveBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
34 static void drawSolidBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_image_homography.h 38 \param x2 image 1 point 2
47 double x1[3],double x2[3],double x3[3],double x4[3],
55 \param x2 image 1 point 2
62 double x1[3],double x2[3],double x3[3],
70 \param x2 image 1 point 2
77 double x1[3],double x2[3],
85 x[1]=x2;
96 is required, although it could be desirable to keep x1,x2,xp1 and xp2 of reasonable magnitude.
100 DB_API int db_StitchRotationCommonFocalLength_3Points(double H[9],double x1[3],double x2[3],double x3[3],
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_image_homography.h 38 \param x2 image 1 point 2
47 double x1[3],double x2[3],double x3[3],double x4[3],
55 \param x2 image 1 point 2
62 double x1[3],double x2[3],double x3[3],
70 \param x2 image 1 point 2
77 double x1[3],double x2[3],
85 x[1]=x2;
96 is required, although it could be desirable to keep x1,x2,xp1 and xp2 of reasonable magnitude.
100 DB_API int db_StitchRotationCommonFocalLength_3Points(double H[9],double x1[3],double x2[3],double x3[3],
  /external/fio/os/windows/posix/include/sys/
mman.h 7 #define PROT_READ 0x2
12 #define MAP_FIXED 0x2
25 #define MS_SYNC 0x2
  /external/bluetooth/bluedroid/gki/ulinux/
data_types.h 53 #define BCM_STRCPY_S(x1,x2,x3) strcpy((x1),(x3))
54 #define BCM_STRNCPY_S(x1,x2,x3,x4) strncpy((x1),(x3),(x4))
  /external/ceres-solver/internal/ceres/
numeric_diff_test_utils.h 41 // y1 = x1'x2 -> dy1/dx1 = x2, dy1/dx2 = x1
42 // y2 = (x1'x2)^2 -> dy2/dx1 = 2 * x2 * (x1'x2), dy2/dx2 = 2 * x1 * (x1'x2)
43 // y3 = x2'x2 -> dy3/dx1 = 0, dy3/dx2 = 2 * x2
46 bool operator()(const double* x1, const double* x2, double* residuals) const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.cpp 75 float x2 = rect.x(); local
83 x2 = rect.maxX();
87 x2 = std::max<float>(x2, maxXIntercept);
92 x2 = std::max<float>(x2, maxXIntercept);
95 ASSERT(x2 >= x1);
96 return LineSegment(x1, x2);

Completed in 4441 milliseconds

1 2 3 4 56 7 8 91011>>