/external/clang/test/SemaCXX/ |
copy-initialization.cpp | 13 X x2 = 0; local
|
default-constructor-initializers.cpp | 7 struct X2 : X1 { // expected-note 2 {{'X2' declared here}} 8 X2(int); 11 struct X3 : public X2 { // expected-error {{implicit default constructor for 'X3' must explicitly initialize the base class 'X2' which does not have a default constructor}} 16 struct X4 { // expected-error {{must explicitly initialize the member 'x2'}} \ 18 X2 x2; // expected-note {{member is declared here}} member in struct:X4 19 X2 & rx2; // expected-note {{declared here}}
|
warn-bad-memaccess.cpp | 25 struct X2 : virtual S1 {} x2; variable in typeref:struct:X2 31 memset(&x2, 0, sizeof x2); // \ 57 __builtin_memset(&x2, 0, sizeof x2); // \ 77 __builtin___memset_chk(&x2, 0, sizeof x2, sizeof x2); // \
|
/external/clang/test/SemaTemplate/ |
instantiate-expr-5.cpp | 21 A<HasM> x2; // expected-note{{in instantiation of}} member in namespace:PR5880
|
/external/compiler-rt/lib/asan/tests/ |
asan_mem_test.cc | 78 static bool AllocateTwoAdjacentArrays(char **x1, char **x2, size_t size) { 88 *x2 = v[j]; 98 if (res && v[i] == *x2) 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. 114 delete [] x2;
|
/external/freetype/src/autofit/ |
afwarp.h | 36 FT_Pos x1, x2; member in struct:AF_WarperRec_
|
/external/openssh/ |
jpake.h | 48 BIGNUM *x2; /* random in Z*q */ member in struct:jpake_ctx 58 BIGNUM *g_x2; /* g^x2 */ 67 BIGNUM *a; /* g^((x1+x3+x4)*x2*s) */ 70 BIGNUM *b; /* g^((x1+x2+x3)*x4*s) */
|
/external/openssl/crypto/ec/ |
ec2_mult.c | 109 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery 116 const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) 129 if (!group->meth->field_mul(group, z1, z1, x2, ctx)) goto err; 143 /* Compute the x, y affine coordinates from the point (x1, z1) (x2, z2) 153 BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) 160 BN_zero(x2); 167 if (!BN_copy(x2, x)) return 0; 187 if (!BN_GF2m_add(z2, z2, x2)) goto err; 198 if (!group->meth->field_mul(group, x2, x1, t3, ctx)) goto err 220 BIGNUM *x1, *x2, *z1, *z2; local [all...] |
/external/qemu/android/skin/ |
rect.h | 61 int x2, y2; member in struct:__anon24758 64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
|
/external/valgrind/main/memcheck/tests/ |
mempool.c | 115 char *x1, *x2, *x3, *x4, *x5; local 122 x2 = allocate(p, 20); 128 *x2 = 'b'; // valid 139 *x2 = 'f'; // valid
|
mempool2.c | 118 char *x1, *x2; local 131 x2 = allocate(p2, 20); 140 res += x2[-1]; // invalid 141 res += x2[20]; // invalid 150 VALGRIND_MEMPOOL_FREE(p2, x2); 151 res += x2[11]; 159 VALGRIND_MEMPOOL_FREE(p2, x2);
|
/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 | 35 x2 RN 11 label 76 LDM pSrc, {x0, x1, x2} 82 STM pDst!, {x0, x1, x2} ;// Store aligned output row 87 LDM pSrc, {x0, x1, x2} 96 ORR x1, x1, x2, LSL #24 97 MOV x2, x2, LSR #8 98 STM pDst!, {x0, x1, x2} ;// Store aligned output row 103 LDM pSrc, {x0, x1, x2} 112 ORR x1, x1, x2, LSL #1 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
armVCM4P10_InterpolateLuma_Align_unsafe_s.s | 35 x2 RN 11 label 76 LDM pSrc, {x0, x1, x2} 82 STM pDst!, {x0, x1, x2} ;// Store aligned output row 87 LDM pSrc, {x0, x1, x2} 96 ORR x1, x1, x2, LSL #24 97 MOV x2, x2, LSR #8 98 STM pDst!, {x0, x1, x2} ;// Store aligned output row 103 LDM pSrc, {x0, x1, x2} 112 ORR x1, x1, x2, LSL #1 [all...] |
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicLUT.cpp | 64 uint32_t x2 = xend; local 71 while (x1 < x2) {
|
/external/ceres-solver/examples/ |
bal_problem.cc | 55 double x1, x2, w; local 58 x2 = 2.0 * RandDouble() - 1.0; 59 w = x1 * x1 + x2 * x2;
|
/external/ceres-solver/internal/ceres/ |
evaluator_test.cc | 546 double x2 = parameters[0][1]; local 548 residuals[1] = x2 * x2; 556 jacobian[3] = 2.0 * x2;
|
/external/chromium/chrome/browser/ui/gtk/ |
nine_box.cc | 119 int x2 = images_[2] ? dst_width - gdk_pixbuf_get_width(images_[2]) : x1; local 122 if (x2 < x1 || y2 < y1) 143 TileImage(cr, images_[1], x1, 0, x2 - x1, y1, opacity); 145 DrawPixbuf(cr, images_[2], x2, 0, opacity); 151 TileImage(cr, images_[4], x1, y1, x2 - x1, y2 - y1, opacity); 153 TileImage(cr, images_[5], x2, y1, dst_width - x2, y2 - y1, opacity); 159 TileImage(cr, images_[7], x1, y2, x2 - x1, dst_height - y2, opacity); 161 DrawPixbuf(cr, images_[8], x2, y2, opacity); 206 int x2 = width - gdk_pixbuf_get_width(images_[2]) local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
AnimationTranslationUtil.cpp | 139 bool appendKeyframeWithCustomBezierTimingFunction(Curve* curve, double keyTime, const Value* value, const Value* lastValue, double x1, double y1, double x2, double y2, const FloatSize&) 141 curve->add(Keyframe(keyTime, value->value()), x1, y1, x2, y2); local 168 bool appendKeyframeWithCustomBezierTimingFunction<TransformAnimationValue, WebTransformKeyframe, WebTransformAnimationCurve>(WebTransformAnimationCurve* curve, double keyTime, const TransformAnimationValue* value, const TransformAnimationValue* lastValue, double x1, double y1, double x2, double y2, const FloatSize& boxSize) 183 curve->add(WebTransformKeyframe(keyTime, operations.release()), x1, y1, x2, y2); local 214 bool appendKeyframeWithCustomBezierTimingFunction<FilterAnimationValue, WebFilterKeyframe, WebFilterAnimationCurve>(WebFilterAnimationCurve* curve, double keyTime, const FilterAnimationValue* value, const FilterAnimationValue* lastValue, double x1, double y1, double x2, double y2, const FloatSize& boxSize) 226 curve->add(WebFilterKeyframe(keyTime, operations.release()), x1, y1, x2, y2); 263 double x2 = 1; local 281 x2 = originalBezierTimingFunction->x2(); 289 x1 = 1 - x2; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
RectangleShape.cpp | 89 float x2 = bounds.maxX(); local 99 x2 = bounds.maxX() - marginRadiusX + xi; 104 x2 = bounds.maxX() - marginRadiusX + xi; 108 result.append(LineSegment(x1, x2)); 124 float x2 = bounds.maxX(); local 152 x2 = bounds.maxX() - paddingRadiusX + xi; 156 result.append(LineSegment(x1, x2));
|
ShapeInterval.h | 41 ShapeInterval(T x1 = 0, T x2 = 0) 43 , m_x2(x2) 45 ASSERT(x2 >= x1); 49 T x2() const { return m_x2; } function in class:WebCore::ShapeInterval 59 void setX2(T x2) 61 ASSERT(x2 >= m_x1); 62 m_x2 = x2; 65 void set(T x1, T x2) 67 ASSERT(x2 >= x1); 69 m_x2 = x2; [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
SwapChain9.cpp | 325 float x2 = (x + width) - 0.5f; local 334 {x2, y1, 0.0f, 1.0f, u2, v2}, 335 {x2, y2, 0.0f, 1.0f, u2, v1},
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_state_dynamic.c | 271 unsigned x2 = i915->scissor.maxx - 1; local 277 sc[2] = (y2 << 16) | (x2 & 0xffff);
|
/external/chromium_org/third_party/openssl/openssl/crypto/poly1305/ |
poly1305_arm.c | 77 uint32_t x2 = r->v[4]; local 90 x2 += x1 >> 26; x1 &= 0x3ffffff; 91 x3 += x2 >> 26; x2 &= 0x3ffffff; 98 y2 = x2 + (y1 >> 26); y1 &= 0x3ffffff; 105 y2 ^= x2; 117 y2 ^= x2; 132 uint32_t x2 = x->v[4]; local 138 x2 += x1 >> 26; 140 x3 += x2 >> 26 [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
mdct.c | 301 kiss_fft_scalar x1, x2; local 303 x2 = *yp1; 304 *yp1++ = MULT16_32_Q15(*wp2, x2) - MULT16_32_Q15(*wp1, x1); 305 *xp1-- = MULT16_32_Q15(*wp1, x2) + MULT16_32_Q15(*wp2, x1);
|