/external/libvpx/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.c | 33 int16x8_t x0, x1, sz0, sz1, y0, y1; local 45 x1 = vabsq_s16(z1); 49 x1 = vaddq_s16(x1, round1); 53 y1 = vqdmulhq_s16(x1, quant1); 63 x1 = vsubq_s16(y1, sz1); 67 eob1 = vtstq_s16(x1, one_q); 82 vst1q_s16(d->qcoeff + 8, x1); 86 vst1q_s16(d->dqcoeff + 8, vmulq_s16(dequant1, x1));
|
/external/libvpx/libvpx/vp8/encoder/x86/ |
quantize_ssse3.c | 54 __m128i sz0, sz1, x, x0, x1, y0, y1, zeros, abs0, abs1; local 66 x1 = _mm_abs_epi16(z1); 70 x1 = _mm_add_epi16(x1, round1); 74 y1 = _mm_mulhi_epi16(x1, quant_fast1); 86 x1 = _mm_sub_epi16(y1, sz1); 90 _mm_store_si128((__m128i *)(d->qcoeff + 8), x1); 94 x1 = _mm_mullo_epi16(x1, dequant1); 98 _mm_store_si128((__m128i *)(d->dqcoeff + 8), x1); [all...] |
/external/mesa3d/src/mesa/drivers/x11/ |
xm_line.c | 428 int x1 = (GLint) vert1->attrib[FRAG_ATTRIB_WPOS][0]; local 434 XDrawLine(dpy, xrb->pixmap, gc, x0, y0, x1, y1);
|
/external/opencv3/modules/imgproc/src/ |
blend.cpp | 76 int x1 = x / cn; local 77 float w1 = weights1_row[x1], w2 = weights2_row[x1];
|
/external/opencv3/modules/stitching/src/ |
seam_finders.cpp | 127 int x1 = roi.x - tl1.x + x; local 128 if (y1 >= 0 && x1 >= 0 && y1 < img1.height && x1 < img1.width) 129 submask1.at<uchar>(y + gap, x + gap) = mask1.at<uchar>(y1, x1); 464 int x0 = tls_[c[i]].x, x1 = brs_[c[i]].x; 473 for (int x = x0; x < x1; ++x) 690 float diffL2Square3(const Mat &image1, int y1, int x1, const Mat &image2, int y2, int x2) 694 return static_cast<float>(sqr(r1[3*x1] - r2[3*x2]) + sqr(r1[3*x1+1] - r2[3*x2+1]) + 695 sqr(r1[3*x1+2] - r2[3*x2+2])) [all...] |
/external/opencv3/modules/videostab/src/ |
outlier_rejection.cpp | 107 float x1, y1; local 131 x1 = points0_[cell[i]].x + dx; 133 if (sqr(x1 - points1_[cell[i]].x) + sqr(y1 - points1_[cell[i]].y) < 155 x1 = points0_[cell[i]].x + dxBest; 157 if (sqr(x1 - points1_[cell[i]].x) + sqr(y1 - points1_[cell[i]].y) < 182 x1 = points0_[cell[i]].x + dxBest; 184 if (sqr(x1 - points1_[cell[i]].x) + sqr(y1 - points1_[cell[i]].y) <
|
/external/opencv3/samples/cpp/ |
drawing.cpp | 27 int x1 = -width/2, x2 = width*3/2, y1 = -height/2, y2 = height*3/2; local 37 pt1.x = rng.uniform(x1, x2); 39 pt2.x = rng.uniform(x1, x2); 52 pt1.x = rng.uniform(x1, x2); 54 pt2.x = rng.uniform(x1, x2); 68 center.x = rng.uniform(x1, x2); 86 pt[0][0].x = rng.uniform(x1, x2); 88 pt[0][1].x = rng.uniform(x1, x2); 90 pt[0][2].x = rng.uniform(x1, x2); 92 pt[1][0].x = rng.uniform(x1, x2) [all...] |
/external/pdfium/third_party/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/skia/experimental/ |
SkSetPoly3To3_A.cpp | 33 SkScalar x1 = pts1[i].fX - ave1.fX; local 35 op[0] += SkScalarMul(x0, x1); 37 op[2] += SkScalarMul(y0, 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;
|
/external/valgrind/memcheck/tests/ |
mempool.c | 115 char *x1, *x2, *x3, *x4, *x5; local 121 x1 = allocate(p, 10); 127 *x1 = 'a'; // valid 130 x1[-1] = 'h'; // invalid 131 x1[10] = 'i'; // invalid 138 *x1 = 'e'; // valid
|
mempool2.c | 118 char *x1, *x2; local 130 x1 = allocate(p1, 10); 135 res += x1[-1]; 136 res += x1[10]; 145 VALGRIND_MEMPOOL_FREE(p1, x1); 146 res += x1[5]; 155 VALGRIND_MEMPOOL_FREE(p1, x1);
|
/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 | 48 x1 RN 10 label 90 LDM pSrc, {x0, x1, x2} 96 STM pDst!, {x0, x1, x2} ;// Store aligned output row 101 LDM pSrc, {x0, x1, x2} 108 ORR x0, x0, x1, LSL #24 109 MOV x1, x1, LSR #8 110 ORR x1, x1, x2, LSL #24 112 STM pDst!, {x0, x1, x2} ;// Store aligned output ro [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
armVCM4P10_InterpolateLuma_Align_unsafe_s.s | 48 x1 RN 10 label 90 LDM pSrc, {x0, x1, x2} 96 STM pDst!, {x0, x1, x2} ;// Store aligned output row 101 LDM pSrc, {x0, x1, x2} 108 ORR x0, x0, x1, LSL #24 109 MOV x1, x1, LSR #8 110 ORR x1, x1, x2, LSL #24 112 STM pDst!, {x0, x1, x2} ;// Store aligned output ro [all...] |
/frameworks/base/libs/hwui/ |
ShadowTessellator.cpp | 130 double x1 = poly[p1].x; local 134 double a = (x1 * y2 - x2 * y1); 135 sumx += (x1 + x2) * a;
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/ |
Quad.java | 75 float x1 = Collections.max(xs); local 77 return new Rectangle(x0, y0, x1 - x0, y1 - y0);
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicLUT.cpp | 63 uint32_t x1 = xstart; local 71 while (x1 < x2) { 78 x1++;
|
/system/bt/embdrv/sbc/encoder/srce/ |
sbc_dct.c | 87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local 93 x1 = (pInVect[3] + pInVect[5]) >>1; 123 /* rearrangement of x1,x3,x5,x7 as in (15) */ 127 x1 -= x3 >>1 ; 129 /* two-dimensional IDCT of x1 and x5 */ 131 temp = x1 ; 132 x1 = x1 + x5 ; 145 /* 4-point IDCT of x1,x3,x5 and x7 and post multiplication by diagonal matrix as in (14) */ 146 SBC_IDCT_MULT((SBC_COS_PI_SUR_16), ( x1 + x3 ) , res_odd[0]); /*res_odd[ 0 ] = ( x1 + x3 ) * cos(1*pi/16) ; * [all...] |
/external/libvncserver/webclients/novnc/include/ |
display.js | 29 this._cleanRect = { 'x1': 0, 'y1': 0, 'x2': -1, 'y2': -1 }; 193 if (vp.x > cr.x1) { 194 cr.x1 = vp.x; 206 var x1, w; 209 x1 = 0; 213 x1 = vp.w - deltaX; 233 this._drawCtx.fillRect(x1, 0, w, vp.h); 251 var cleanBox = { 'x': cr.x1, 'y': cr.y1, 252 'w': cr.x2 - cr.x1 + 1, 'h': cr.y2 - cr.y1 + 1 }; 255 if (cr.x1 >= cr.x2 || cr.y1 >= cr.y2) [all...] |
/external/robolectric/v3/ |
robolectric-processor-3.1-SNAPSHOT.jar | |
/external/google-tv-pairing-protocol/java/jar/ |
protobuf-java-2.2.0-lite.jar | |
/prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/2.6.1/ |
protobuf-java-2.6.1.jar | |
/prebuilts/tools/common/offline-m2/com/google/protobuf/protobuf-java/2.6.1/ |
protobuf-java-2.6.1.jar | |
/device/google/contexthub/lib/nanohub/ |
aes.c | 206 uint32_t x0, x1, x2, x3; //we CAN use an array, but then GCC will not use registers. so we use separate vars. sigh... local 211 x1 = *src++ ^ *k++; 221 ror(FwdTab0[(x1 >> 16) & 0xff], 8) ^ 226 ror(FwdTab0[(x1 >> 24) & 0xff], 0) ^ 235 ror(FwdTab0[(x1 >> 0) & 0xff], 24); 240 ror(FwdTab0[(x1 >> 8) & 0xff], 16) ^ 244 x1 = t1; 251 (((uint32_t)(FwdSbox[(x1 >> 16) & 0xff])) << 16) ^ 256 (((uint32_t)(FwdSbox[(x1 >> 24) & 0xff])) << 24) ^ 265 (((uint32_t)(FwdSbox[(x1 >> 0) & 0xff])) << 0) 276 uint32_t x0, x1, x2, x3; local [all...] |