/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_transfer.h | 15 unsigned x1; member in struct:nv30_rect
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
arc.h | 50 VGfloat x1, y1, x2, y2; member in struct:arc 57 VGfloat x1, VGfloat y1,
|
/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/av/media/libstagefright/codecs/amrwbenc/src/ |
hp_wsp.c | 87 Word16 x0, x1, x2, x3; local 98 x1 = mem[7]; 104 x2 = x1; 105 x1 = x0; 119 L_tmp += (x1 * b[1])<<1; 142 mem[7] = x1;
|
/frameworks/av/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));
|
/frameworks/native/services/sensorservice/ |
Fusion.h | 37 vec3_t x1; member in class:android::Fusion 74 enum { ACC=0x1, MAG=0x2, GYRO=0x4 };
|
/hardware/samsung_slsi/exynos5/include/ |
ExynosRect.h | 120 int x1; //!< Left (The x-coordinate value of upper-left corner) member in struct:ExynosRect2 129 x1 = _x1_; 138 x1 = other->x1; 147 x1 = other.x1; 157 return ( x1 == other.x1
|
/external/bluetooth/bluedroid/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/ceres-solver/internal/ceres/ |
runtime_numeric_diff_cost_function_test.cc | 54 // y1 = x1'x2 -> dy1/dx1 = x2, dy1/dx2 = x1 55 // y2 = (x1'x2)^2 -> dy2/dx1 = 2 * x2 * (x1'x2), dy2/dx2 = 2 * x1 * (x1'x2) 61 mutable_parameter_block_sizes()->push_back(5); // x1. 93 double x1[] = { 1.0, 2.0, 3.0, 4.0, 5.0 }; local 95 double *parameters[] = { &x1[0], &x2[0] }; 116 ExpectClose(x1[i], dydx2[5 * 0 + i], kEps) 166 double x1[5]; member in struct:ceres::internal::__anon1318 189 double *x1 = &(kTests[k].x1[0]); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
LinearGradientAttributes.h | 39 SVGLength x1() const { return m_x1; } function in struct:WebCore::LinearGradientAttributes
|
SVGPathSegCurvetoCubic.h | 30 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) 34 , m_x1(x1) 55 float x1() const { return m_x1; } function in class:WebCore::SVGPathSegCurvetoCubic 56 void setX1(float x1) 58 m_x1 = x1;
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afwarp.h | 36 FT_Pos x1, x2; member in struct:AF_WarperRec_
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/openssl/openssl/crypto/ec/ |
ec2_mult.c | 109 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery 115 static int gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, 128 if (!group->meth->field_mul(group, x1, x1, z2, ctx)) goto err; 130 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err; 131 if (!BN_GF2m_add(z1, z1, x1)) goto err; 133 if (!group->meth->field_mul(group, x1, z1, t1, ctx)) goto err; 134 if (!BN_GF2m_add(x1, x1, t2)) goto err 220 BIGNUM *x1, *x2, *z1, *z2; local [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
celt.c | 92 opus_val32 x0, x1, x2, x3, x4; local 97 x1 = x[-T+1]; 103 + MULT16_32_Q15(g11,ADD32(x1,x3)) 107 x2=x1; 108 x1=x0; 121 opus_val32 x0, x1, x2, x3, x4; local 140 x1 = x[-T1+1]; 154 + MULT16_32_Q15(MULT16_16_Q15(f,g11),ADD32(x1,x3)) 158 x2=x1; 159 x1=x0 [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkBitmapFilter.cpp | 45 int x1 = SkClampMax(SkScalarFloorToInt(srcPt.fX+s.getBitmapFilter()->width())+1, maxX); local 50 for (int srcX = x0; srcX < x1 ; srcX++) {
|
/external/clang/test/CodeGen/ |
stdcall-fastcall.c | 85 int x1; member in struct:S2
|
/external/clang/test/Lexer/ |
ms-extensions.c | 4 __int8 x1 = 3i8; variable
|
/external/clang/test/Sema/ |
struct-decl.c | 47 unsigned int x1; member in struct:x0
|
tentative-decls.c | 4 struct a x1; // expected-note 2{{forward declaration of 'struct a'}} variable in typeref:struct:a
|
types.c | 69 int __attribute__ ((vector_size(8192))) x1; // expected-error {{vector size too large}} variable
|
/external/clang/test/SemaCXX/ |
copy-initialization.cpp | 12 X x1 = y; // expected-error{{no matching constructor for initialization of 'X'}} local
|
warn-bad-memaccess.cpp | 24 struct X1 { virtual void f(); } x1; variable in typeref:struct:X1 28 memset(&x1, 0, sizeof x1); // \ 35 memmove(&x1, 0, sizeof x1); // \ 36 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be overwritten}} \ 38 memmove(0, &x1, sizeof x1); // \ 39 // expected-warning{{source of this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be moved}} [all...] |
/external/clang/test/SemaTemplate/ |
instantiate-template-template-parm.cpp | 35 struct X1 { }; 39 X1<TT> x1; // expected-error{{has different template parameters}} member in struct:X2 70 template<class T> struct X1 84 template<class T> template<class U> struct X1<T>::Inner 95 X1<double> simplex_;
|
/external/compiler-rt/lib/asan/tests/ |
asan_mem_test.cc | 78 static bool AllocateTwoAdjacentArrays(char **x1, char **x2, size_t size) { 89 *x1 = v[j-1]; 97 if (res && v[i] == *x1) continue; 106 char *x1, *x2; local 107 if (!Ident(AllocateTwoAdjacentArrays)(&x1, &x2, size)) 109 // fprintf(stderr, " large oob memset: %p %p %zd\n", x1, x2, size); 110 // Do a memset on x1 with huge out-of-bound access that will end up in x2. 111 EXPECT_DEATH(Ident(memset)(x1, 0, size * 2), 113 delete [] x1;
|