/external/compiler-rt/test/Unit/ |
fixunsdfdi_test.c | 77 if (test__fixunsdfdi(0x1.FFFFFEp+62, 0x7FFFFF8000000000LL)) 79 if (test__fixunsdfdi(0x1.FFFFFCp+62, 0x7FFFFF0000000000LL)) 83 if (test__fixunsdfdi(-0x1.FFFFFEp+62, 0)) 85 if (test__fixunsdfdi(-0x1.FFFFFCp+62, 0)) 89 if (test__fixunsdfdi(0x1.FFFFFFFFFFFFFp+63, 0xFFFFFFFFFFFFF800LL)) 91 if (test__fixunsdfdi(0x1.0000000000000p+63, 0x8000000000000000LL)) 93 if (test__fixunsdfdi(0x1.FFFFFFFFFFFFFp+62, 0x7FFFFFFFFFFFFC00LL)) 95 if (test__fixunsdfdi(0x1.FFFFFFFFFFFFEp+62, 0x7FFFFFFFFFFFF800LL)) 99 if (test__fixunsdfdi(-0x1.FFFFFFFFFFFFFp+62, 0)) 101 if (test__fixunsdfdi(-0x1.FFFFFFFFFFFFEp+62, 0) [all...] |
floatundixf_test.c | 56 if (test__floatundixf(0x7FFFFF8000000000ULL, 0x1.FFFFFEp+62)) 58 if (test__floatundixf(0x7FFFFFFFFFFFF800ULL, 0x1.FFFFFFFFFFFFEp+62)) 60 if (test__floatundixf(0x7FFFFF0000000000ULL, 0x1.FFFFFCp+62)) 62 if (test__floatundixf(0x7FFFFFFFFFFFF000ULL, 0x1.FFFFFFFFFFFFCp+62)) 85 if (test__floatundixf(0x0007FB72E8000000ULL, 0x1.FEDCBAp+50)) 88 if (test__floatundixf(0x0007FB72EA000000ULL, 0x1.FEDCBA8p+50)) 90 if (test__floatundixf(0x0007FB72EB000000ULL, 0x1.FEDCBACp+50)) 92 if (test__floatundixf(0x0007FB72EBFFFFFFULL, 0x1.FEDCBAFFFFFFCp+50)) 94 if (test__floatundixf(0x0007FB72EC000000ULL, 0x1.FEDCBBp+50)) 96 if (test__floatundixf(0x0007FB72E8000001ULL, 0x1.FEDCBA0000004p+50) [all...] |
fixunssfti_test.c | 89 if (test__fixunssfti(0x1.FFFFFEp+63F, 0xFFFFFF0000000000LL)) 91 if (test__fixunssfti(0x1.000000p+63F, 0x8000000000000000LL)) 93 if (test__fixunssfti(0x1.FFFFFEp+62F, 0x7FFFFF8000000000LL)) 95 if (test__fixunssfti(0x1.FFFFFCp+62F, 0x7FFFFF0000000000LL)) 98 if (test__fixunssfti(0x1.FFFFFEp+127F, make_ti(0xFFFFFF0000000000LL, 0))) 100 if (test__fixunssfti(0x1.000000p+127F, make_ti(0x8000000000000000LL, 0))) 102 if (test__fixunssfti(0x1.FFFFFEp+126F, make_ti(0x7FFFFF8000000000LL, 0))) 104 if (test__fixunssfti(0x1.FFFFFCp+126F, make_ti(0x7FFFFF0000000000LL, 0))) 108 if (test__fixunssfti(-0x1.FFFFFEp+62F, 0x0000000000000000LL)) 110 if (test__fixunssfti(-0x1.FFFFFCp+62F, 0x0000000000000000LL) [all...] |
/frameworks/base/graphics/java/android/graphics/ |
LinearGradient.java | 23 @param x1 The x-coordinate for the end of the gradient line 31 public LinearGradient(float x0, float y0, float x1, float y1, int colors[], float positions[], 39 native_instance = nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt); 40 native_shader = nativePostCreate1(native_instance, x0, y0, x1, y1, colors, positions, 47 @param x1 The x-coordinate for the end of the gradient line 53 public LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1, 55 native_instance = nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt); 56 native_shader = nativePostCreate2(native_instance, x0, y0, x1, y1, color0, color1, 60 private native int nativeCreate1(float x0, float y0, float x1, float y1, 62 private native int nativeCreate2(float x0, float y0, float x1, float y1 [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGPathSegCurvetoQuadratic.h | 31 SVGPathSegCurvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) 35 , m_x1(x1) 54 float x1() const { return m_x1; } function in class:WebCore::SVGPathSegCurvetoQuadratic 55 void setX1(float x1) 57 m_x1 = x1; 77 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) 79 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, role, x, y, x1, y1)); 83 SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) 84 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1) 94 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1 [all...] |
/external/skia/legacy/src/animator/ |
SkDrawLine.cpp | 18 SK_MEMBER(x1, Float), 28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) { 33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
|
/external/skia/src/animator/ |
SkDrawLine.cpp | 18 SK_MEMBER(x1, Float), 28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) { 33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicBlend.cpp | 116 uint32_t x1 = xstart; local 121 for (;x1 < x2; x1++, out++) { 126 for (;x1 < x2; x1++, out++, in++) { 135 if((x1 + 8) < x2) { 136 uint32_t len = (x2 - x1) >> 3; 138 x1 += len << 3; 143 for (;x1 < x2; x1++, out++, in++) [all...] |
/bootable/diskinstaller/ |
installer.h | 32 #define INSTALL_FLAG_RESIZE 0x1
|
/external/libvpx/libvpx/vpx_scale/ |
scale_mode.h | 22 SCALE_TO_FIT = 0x1,
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
armVCM4P10_InterpolateLuma_Align_unsafe_s.s | 34 x1 RN 10 label 76 LDM pSrc, {x0, x1, x2} 82 STM pDst!, {x0, x1, x2} ;// Store aligned output row 87 LDM pSrc, {x0, x1, x2} 94 ORR x0, x0, x1, LSL #24 95 MOV x1, x1, LSR #8 96 ORR x1, x1, x2, LSL #24 98 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 | 34 x1 RN 10 label 76 LDM pSrc, {x0, x1, x2} 82 STM pDst!, {x0, x1, x2} ;// Store aligned output row 87 LDM pSrc, {x0, x1, x2} 94 ORR x0, x0, x1, LSL #24 95 MOV x1, x1, LSR #8 96 ORR x1, x1, x2, LSL #24 98 STM pDst!, {x0, x1, x2} ;// Store aligned output ro [all...] |
/external/dropbear/libtommath/etc/ |
mersenne.c | 74 long x1, x2; local 78 x1 = x2; 79 x2 = x1 - ((x1 * x1) - x) / (2 * x1); 80 } while (x1 != x2); 82 if (x1 * x1 > x) { 83 --x1; [all...] |
/external/clang/test/Analysis/ |
stack-addr-ps.cpp | 33 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}} local 34 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} 45 int x1; local 46 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} 47 return &x2; // expected-warning{{Address of stack memory associated with local variable 'x1' returned}} expected-warning {{address of stack memory associated with local variable 'x1' returned}} 51 int x1; local 52 int *const &x2 = &x1; // expected-note {{binding reference variable 'x2' here}} 53 return x2; // expected-warning {{address of stack memory associated with local variable 'x1' returned}} expected-warning {{Address of stack memory associated with local variable 'x1' returne (…) 57 const int &x1 = get_value(); \/\/ expected-note {{binding reference variable 'x1' here}} local [all...] |
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.string/ |
p1.cpp | 4 char x1[]("hello"); 5 extern char x1[6];
|
/external/clang/test/CXX/temp/temp.res/temp.local/ |
p1.cpp | 18 template <int N1, const int& N2, const int* N3> struct X1 { 19 X1(); 20 ~X1(); 21 X1 f(const X1& x1a) { X1 x1b(x1a); return x1b; } 32 X1<42, i, &i> x1; (void)x1; local
|
/external/clang/test/Lexer/ |
hexfloat.cpp | 6 float g = 0x1.2p2; // expected-warning{{hexadecimal floating constants are a C99 feature}} 7 double h = 0x1.p2; // expected-warning{{hexadecimal floating constants are a C99 feature}}
|
/external/stlport/stlport/ |
algorithm | 29 # define _STLP_OUTERMOST_HEADER_ID 0x1 34 #if (_STLP_OUTERMOST_HEADER_ID == 0x1) 45 #if (_STLP_OUTERMOST_HEADER_ID != 0x1) || defined (_STLP_IMPORT_VENDOR_STD) 53 #if (_STLP_OUTERMOST_HEADER_ID == 0x1 )
|
/external/webkit/PerformanceTests/SunSpider/tests/ubench/ |
function-correct-args.js | 1 function f(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9)
|
function-missing-args.js | 1 function f(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9)
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
armVCM4P2_Clip8_s.s | 35 x1 RN 4 label 48 LDMIA pSrc!,{x0, x1} 52 USAT16 x1, #8, x1 ;// clip two samples to [0,255] 56 STRB x1, [pDst,#2] 57 MOV x1, x1, LSR #16 58 STRB x1, [pDst,#3]
|
/ndk/sources/cxx-stl/stlport/stlport/ |
algorithm | 29 # define _STLP_OUTERMOST_HEADER_ID 0x1 34 #if (_STLP_OUTERMOST_HEADER_ID == 0x1) 45 #if (_STLP_OUTERMOST_HEADER_ID != 0x1) || defined (_STLP_IMPORT_VENDOR_STD) 53 #if (_STLP_OUTERMOST_HEADER_ID == 0x1 )
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/ |
algorithm | 29 # define _STLP_OUTERMOST_HEADER_ID 0x1 34 #if (_STLP_OUTERMOST_HEADER_ID == 0x1) 45 #if (_STLP_OUTERMOST_HEADER_ID != 0x1) || defined (_STLP_IMPORT_VENDOR_STD) 53 #if (_STLP_OUTERMOST_HEADER_ID == 0x1 )
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/ |
algorithm | 29 # define _STLP_OUTERMOST_HEADER_ID 0x1 34 #if (_STLP_OUTERMOST_HEADER_ID == 0x1) 45 #if (_STLP_OUTERMOST_HEADER_ID != 0x1) || defined (_STLP_IMPORT_VENDOR_STD) 53 #if (_STLP_OUTERMOST_HEADER_ID == 0x1 )
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/ |
algorithm | 29 # define _STLP_OUTERMOST_HEADER_ID 0x1 34 #if (_STLP_OUTERMOST_HEADER_ID == 0x1) 45 #if (_STLP_OUTERMOST_HEADER_ID != 0x1) || defined (_STLP_IMPORT_VENDOR_STD) 53 #if (_STLP_OUTERMOST_HEADER_ID == 0x1 )
|