/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/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));
|
/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],
|
/packages/apps/Gallery2/jni_mosaic/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],
|
/packages/apps/LegacyCamera/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],
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicBlur.cpp | 150 extern "C" void rsdIntrinsicBlurVFU4_K(void *dst, const void *pin, int stride, const void *gptr, int rct, int x1, int ct); 151 extern "C" void rsdIntrinsicBlurHFU4_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int ct); 152 extern "C" void rsdIntrinsicBlurHFU1_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int ct); 156 int x1, int x2) { 160 int t = (x2 - x1); 163 rsdIntrinsicBlurVFU4_K(out, ptrIn, iStride, gPtr, ct, x1, x1 + t); 165 x1 += t; 169 while(x2 > x1) { 181 x1++ 287 uint32_t x1 = xstart; local 344 uint32_t x1 = xstart; local [all...] |
/external/clang/test/CodeGen/ |
regparm-struct.c | 10 int x1; member in struct:s1 20 int x1; member in struct:s2 37 int x1; member in struct:s3 55 int x1; member in struct:s4 74 float x1; member in struct:s5 84 float x1; member in struct:s6 95 float x1; member in struct:s7 107 float x1; member in struct:s8 118 float x1; member in struct:s9 130 double x1; member in struct:s10 140 double x1; member in struct:s11 151 double x1; member in struct:s12 [all...] |
/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...] |
/packages/apps/Gallery2/jni_mosaic/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...] |
/packages/apps/LegacyCamera/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...] |
/external/clang/test/CodeGenCXX/ |
visibility-inlines-hidden.cpp | 18 struct X1 { 28 inline void X1<T>::f3() { } 31 inline void X1<int>::f4() { } 37 extern template struct X1<float>; 39 void use(X0 *x0, X1<int> *x1, X2 *x2, X1<float> *x3) { 51 x1->f1(); 53 x1->f2(); 55 x1->f3() [all...] |
key-function-vtable.cpp | 38 struct X1 : X0 { 42 inline void X1::f() { } 44 void use_X1(X1 *x1) { x1->f(); }
|
/external/clang/test/Index/ |
comment-to-html-xml-conversion.cpp | 199 void comment_to_html_conversion_12(int x1); 201 // CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_12:{{.*}} FullCommentAsHTML=[] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_12</Name><USR>c:@F@comment_to_html_conversion_12#I#</USR><Declaration>void comment_to_html_conversion_12(int x1)</Declaration></Function>] 209 /// \param x1 Aaa. 210 void comment_to_html_conversion_13(int x1); 212 // CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_13:{{.*}} FullCommentAsHTML=[<dl><dt class="param-name-index-0">x1</dt><dd class="param-descr-index-0"> Aaa.</dd></dl>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_13</Name><USR>c:@F@comment_to_html_conversion_13#I#</USR><Declaration>void comment_to_html_conversion_13(int x1)</Declaration><Parameters><Parameter><Name>x1</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Aaa.</Para></Discussion></Parameter></Parameters></Function>] 217 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0 222 void comment_to_html_conversion_14(int x1); 224 // CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_14:{{.*}} FullCommentAsHTML=[<dl><dt class="param-name-index-invalid">zzz</dt><dd class="param-descr-index-invalid"> Aaa.</dd></dl>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_14</Name><USR>c:@F@comment_to_html_conversion_14#I#</USR><Declaration>void comment_to_html_conversion_14(int x1)</Declaration><Parameters><Parameter><Name>zzz</Name><Direction isExplicit="0">in</Direction><Disc (…) [all...] |
/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);
|
warn-dangling-field.cpp | 27 X &x1, *x2; member in struct:S3 28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator
|
/external/compiler-rt/lib/ppc/ |
floatditf.c | 12 static const double twop32 = 0x1.0p32; 13 static const double twop52 = 0x1.0p52; 16 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */
|
/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;
|