/frameworks/base/media/libstagefright/codecs/amrwbenc/src/ |
hp400.c | 64 Word16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local 72 x1 = *mem; 76 x2 = x1; 77 x1 = x0; 85 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2)* b[0] + x1 * b[1]) << 1; 96 *mem-- = x1;
|
hp50.c | 65 Word16 y2_hi, y2_lo, y1_hi, y1_lo, x0, x1; local 74 x1 = *mem; 78 x2 = x1; 79 x1 = x0; 87 L_tmp += (y1_hi * a[1] + y2_hi * a[2] + (x0 + x2) * b[0] + x1 * b[1]) << 1; 96 *mem-- = x1;
|
/frameworks/compile/libbcc/runtime/test/Unit/ |
fixunssfdi_test.c | 78 if (test__fixunssfdi(0x1.FFFFFEp+63F, 0xFFFFFF0000000000LL)) 80 if (test__fixunssfdi(0x1.000000p+63F, 0x8000000000000000LL)) 82 if (test__fixunssfdi(0x1.FFFFFEp+62F, 0x7FFFFF8000000000LL)) 84 if (test__fixunssfdi(0x1.FFFFFCp+62F, 0x7FFFFF0000000000LL)) 88 if (test__fixunssfdi(-0x1.FFFFFEp+62F, 0x0000000000000000LL)) 90 if (test__fixunssfdi(-0x1.FFFFFCp+62F, 0x0000000000000000LL))
|
fixunssfsi_test.c | 76 if (test__fixunssfsi(0x1.000000p+31F, 0x80000000)) 78 if (test__fixunssfsi(0x1.FFFFFEp+31F, 0xFFFFFF00)) 80 if (test__fixunssfsi(0x1.FFFFFEp+30F, 0x7FFFFF80)) 82 if (test__fixunssfsi(0x1.FFFFFCp+30F, 0x7FFFFF00)) 86 if (test__fixunssfsi(-0x1.FFFFFEp+30F, 0)) 88 if (test__fixunssfsi(-0x1.FFFFFCp+30F, 0))
|
/external/libvpx/vp8/common/ |
textblit.c | 61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch) 63 int steep = abs(y1 - y0) > abs(x1 - x0); 74 t = x1; 75 x1 = y1; 79 if (x0 > x1) 83 x0 = x1; 84 x1 = t; 91 deltax = x1 - x0; 104 for (x = x0; x <= x1; x++) 118 for (x = x0; x <= x1; x++ [all...] |
/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;
|
/frameworks/base/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));
|
/external/webkit/Source/WebCore/css/ |
CSSTimingFunctionValue.h | 69 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2) 71 return adoptRef(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2)); 74 double x1() const { return m_x1; } function in class:WebCore::CSSCubicBezierTimingFunctionValue 80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2) 81 : m_x1(x1)
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_image_homography.h | 37 \param x1 image 1 point 1 47 double x1[3],double x2[3],double x3[3],double x4[3], 54 \param x1 image 1 point 1 62 double x1[3],double x2[3],double x3[3], 69 \param x1 image 1 point 1 77 double x1[3],double x2[3], 84 x[0]=x1; 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],
|
/system/media/wilhelm/src/android/ |
android_defs.h | 130 #define ANDROID_MP2TSEVENT_EOS ((SLuint32) 0x1) 132 #define ANDROID_MP2TSEVENT_DISCONTINUITY ((SLuint32) 0x1 << 1) 135 #define ANDROID_MP2TSEVENT_DISCON_NEWPTS ((SLuint32) 0x1 << 2) 137 #define ANDROID_MP2TSEVENT_FORMAT_CHANGE ((SLuint32) 0x1 << 3) 151 kAndroidBufferTypeMpeg2Ts = ((SLuint16) 0x1),
|
/external/valgrind/main/exp-ptrcheck/tests/ |
ccc.cpp | 8 int* x1 = (int*)malloc(sizeof(int)); local 15 assert(NULL != x1 && NULL != x2 && NULL != x3 && NULL != x4 && 20 sum += x1[-1]; __asm__ __volatile__("":::"memory"); bar(1); 32 we're interested in -- x1[-1] through x6[-1] -- appear on different
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Geometry.h | 65 inline void FindTriangleCentroid(double x0, double y0, double x1, double y1, 70 centX = (x0 + x1 + x2) / 3.0; 76 if (x0 == x1) 82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b 87 if (x0 == x1) 93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a 96 else if (x1 == x2) 98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3 109 // Calculate the line that goes through x1,y1 and is perpendicular to 112 double b2 = y1 - m2 * x1; [all...] |
/bionic/libstdc++/src/ |
one_time_construction.cpp | 42 if (__atomic_cmpxchg(0x2, 0x1, gv) == 0) { 46 *gv = 0x1;
|
/external/clang/test/CXX/temp/temp.param/ |
p15-cxx0x.cpp | 5 X<X<int>> *x1; variable 20 X<X<int>> *x1; local 23 template<typename T = void> struct X1 { }; 24 X1<X1<>> x1a;
|
/external/clang/test/CodeGenCXX/ |
key-function-vtable.cpp | 37 struct X1 : X0 { 41 inline void X1::f() { } 43 void use_X1(X1 *x1) { x1->f(); }
|
/external/clang/test/Sema/ |
attr-regparm.c | 4 __attribute((regparm(1.0))) int x1(void); // expected-error{{'regparm' attribute requires integer constant}}
|
typeof-use-deprecated.c | 17 bar x1; // expected-warning {{'bar' is deprecated}} variable 19 int main() { typeof(x1) y; } // expected-warning {{'foo' is deprecated}}
|
/external/clang/test/SemaCXX/ |
converting-constructor.cpp | 43 struct X1 { X1(const char&); }; 44 void x1(X1); 46 x1(1);
|
/external/oprofile/gui/ |
oprof_start_util.h | 27 inline double ratio(double x1, double x2) 29 return fabs(((x1 - x2) / x2)) * 100;
|
/external/v8/test/mjsunit/compiler/ |
literals.js | 39 assertEquals("x1/", "\x1/"); 41 assertEquals("\\x1/", RegExp("\\x1/").source); 45 assertEquals("x1:", "\x1:"); 47 assertEquals("\\x1:", /\x1:/.source); 51 assertEquals("x1`", "\x1`"); [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGLineElement.idl | 34 readonly attribute SVGAnimatedLength x1;
|
SVGLinearGradientElement.idl | 29 readonly attribute SVGAnimatedLength x1;
|
SVGPathSegCurvetoCubicAbs.idl | 32 attribute [StrictTypeChecking] float x1;
|
SVGPathSegCurvetoCubicRel.idl | 32 attribute [StrictTypeChecking] float x1;
|
/frameworks/compile/libbcc/runtime/lib/ppc/ |
floatditf.c | 13 static const double twop32 = 0x1.0p32; 14 static const double twop52 = 0x1.0p52; 17 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */
|