/external/clang/test/SemaCXX/ |
D | warn-bad-memaccess.cpp | 19 struct X1 { virtual void f(); } x1; variable 23 memset(&x1, 0, sizeof x1); // \ in test_warn() 30 memmove(&x1, 0, sizeof x1); // \ in test_warn() 33 memmove(0, &x1, sizeof x1); // \ in test_warn() 36 memcpy(&x1, 0, sizeof x1); // \ in test_warn() 39 memcpy(0, &x1, sizeof x1); // \ in test_warn() 42 memcmp(&x1, 0, sizeof x1); // \ in test_warn() 45 memcmp(0, &x1, sizeof x1); // \ in test_warn() 49 __builtin_memset(&x1, 0, sizeof x1); // \ in test_warn() 56 __builtin_memmove(&x1, 0, sizeof x1); // \ in test_warn() [all …]
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/ |
D | jquery.flot.dashes.js | 69 var x1 = points[i - ps], 74 if (x1 == null || x2 == null) continue; 80 x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1; 84 x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1; 91 x1 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1; 95 x2 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1; 100 if (x1 <= x2 && x1 < axisx.min) { 102 y1 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1; 103 x1 = axisx.min; 104 } else if (x2 <= x1 && x2 < axisx.min) { [all …]
|
/external/libvorbis/lib/ |
D | mdct.c | 221 DATA_TYPE *x1 = x + points - 8; in mdct_butterfly_first() local 228 r0 = x1[6] - x2[6]; in mdct_butterfly_first() 229 r1 = x1[7] - x2[7]; in mdct_butterfly_first() 230 x1[6] += x2[6]; in mdct_butterfly_first() 231 x1[7] += x2[7]; in mdct_butterfly_first() 235 r0 = x1[4] - x2[4]; in mdct_butterfly_first() 236 r1 = x1[5] - x2[5]; in mdct_butterfly_first() 237 x1[4] += x2[4]; in mdct_butterfly_first() 238 x1[5] += x2[5]; in mdct_butterfly_first() 242 r0 = x1[2] - x2[2]; in mdct_butterfly_first() [all …]
|
/external/openssl/crypto/rc2/ |
D | rc2_cbc.c | 140 register RC2_INT x0,x1,x2,x3,t; in RC2_encrypt() local 145 x1=(RC2_INT)(l>>16L); in RC2_encrypt() 156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff; in RC2_encrypt() 158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff; in RC2_encrypt() 159 x1=(t<<2)|(t>>14); in RC2_encrypt() 160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff; in RC2_encrypt() 162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff; in RC2_encrypt() 171 x1+=p1[x0&0x3f]; in RC2_encrypt() 172 x2+=p1[x1&0x3f]; in RC2_encrypt() 177 d[0]=(unsigned long)(x0&0xffff)|((unsigned long)(x1&0xffff)<<16L); in RC2_encrypt() [all …]
|
/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/ |
D | data_types.h | 63 #define BCM_STRCAT_S(x1,x2,x3) strcat((x1),(x3)) argument 64 #define BCM_STRNCAT_S(x1,x2,x3,x4) strncat((x1),(x3),(x4)) argument 65 #define BCM_STRCPY_S(x1,x2,x3) strcpy((x1),(x3)) argument 66 #define BCM_STRNCPY_S(x1,x2,x3,x4) strncpy((x1),(x3),(x4)) argument 67 #define BCM_SPRINTF_S(x1,x2,x3,x4) sprintf((x1),(x3),(x4)) argument 68 #define BCM_VSPRINTF_S(x1,x2,x3,x4) vsprintf((x1),(x3),(x4)) argument
|
/external/libnfc-nci/src/gki/ulinux/ |
D | data_types.h | 63 #define BCM_STRCAT_S(x1,x2,x3) strcat((x1),(x3)) argument 64 #define BCM_STRNCAT_S(x1,x2,x3,x4) strncat((x1),(x3),(x4)) argument 65 #define BCM_STRCPY_S(x1,x2,x3) strcpy((x1),(x3)) argument 66 #define BCM_STRNCPY_S(x1,x2,x3,x4) strncpy((x1),(x3),(x4)) argument 67 #define BCM_SPRINTF_S(x1,x2,x3,x4) sprintf((x1),(x3),(x4)) argument 68 #define BCM_VSPRINTF_S(x1,x2,x3,x4) vsprintf((x1),(x3),(x4)) argument
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_jpeg.cpp | 665 int x0 = src[5], x1 = src[3]; in aan_idct8x8() local 668 int x4 = x0 + x1; x0 -= x1; in aan_idct8x8() 670 x1 = x2 + x3; x2 -= x3; in aan_idct8x8() 671 x3 = x1 + x4; x1 -= x4; in aan_idct8x8() 676 x1 = descale( x1*C1_414, fixb); in aan_idct8x8() 679 x1 -= x0; in aan_idct8x8() 680 x2 += x1; in aan_idct8x8() 683 work[5] = x1; work[4] = x2; in aan_idct8x8() 687 x0 = src[0]; x1 = src[4]; in aan_idct8x8() 692 x3 = x0 + x1; x0 -= x1; in aan_idct8x8() [all …]
|
/external/webkit/Source/WebCore/svg/ |
D | SVGPathSegCurvetoQuadratic.h | 31 …urvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) in SVGPathSegCurvetoQuadratic() argument 35 , m_x1(x1) in SVGPathSegCurvetoQuadratic() 54 float x1() const { return m_x1; } in x1() function 55 void setX1(float x1) in setX1() argument 57 m_x1 = x1; in setX1() 77 …aticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) in create() argument 79 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, role, x, y, x1, y1)); in create() 83 …etoQuadraticAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) in SVGPathSegCurvetoQuadraticAbs() argument 84 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1) in SVGPathSegCurvetoQuadraticAbs() 94 …aticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) in create() argument [all …]
|
D | SVGPathSegCurvetoCubic.h | 31 …SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, f… in SVGPathSegCurvetoCubic() argument 35 , m_x1(x1) in SVGPathSegCurvetoCubic() 56 float x1() const { return m_x1; } in x1() function 57 void setX1(float x1) in setX1() argument 59 m_x1 = x1; in setX1() 95 …eate(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2,… in create() argument 97 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2)); in create() 101 …cAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2,… in SVGPathSegCurvetoCubicAbs() argument 102 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2) in SVGPathSegCurvetoCubicAbs() 112 …eate(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2,… in create() argument [all …]
|
/external/dropbear/libtommath/etc/ |
D | mersenne.c | 74 long x1, x2; in i_sqrt() local 78 x1 = x2; in i_sqrt() 79 x2 = x1 - ((x1 * x1) - x) / (2 * x1); in i_sqrt() 80 } while (x1 != x2); in i_sqrt() 82 if (x1 * x1 > x) { in i_sqrt() 83 --x1; in i_sqrt() 86 return x1; in i_sqrt()
|
/external/valgrind/main/none/tests/amd64/ |
D | insn_basic.def | 1 adcb eflags[0x1,0x0] : imm8[12] al.ub[34] => 1.ub[46] 2 adcb eflags[0x1,0x1] : imm8[12] al.ub[34] => 1.ub[47] 3 adcb eflags[0x1,0x0] : imm8[12] bl.ub[34] => 1.ub[46] 4 adcb eflags[0x1,0x1] : imm8[12] bl.ub[34] => 1.ub[47] 5 adcb eflags[0x1,0x0] : imm8[12] m8.ub[34] => 1.ub[46] 6 adcb eflags[0x1,0x1] : imm8[12] m8.ub[34] => 1.ub[47] 7 adcb eflags[0x1,0x0] : r8.ub[12] r8.ub[34] => 1.ub[46] 8 adcb eflags[0x1,0x1] : r8.ub[12] r8.ub[34] => 1.ub[47] 9 adcb eflags[0x1,0x0] : r8.ub[12] m8.ub[34] => 1.ub[46] 10 adcb eflags[0x1,0x1] : r8.ub[12] m8.ub[34] => 1.ub[47] [all …]
|
/external/bluetooth/bluedroid/gki/ulinux/ |
D | data_types.h | 63 #define BCM_STRCAT_S(x1,x2,x3) strcat((x1),(x3)) argument 64 #define BCM_STRNCAT_S(x1,x2,x3,x4) strncat((x1),(x3),(x4)) argument 65 #define BCM_STRCPY_S(x1,x2,x3) strcpy((x1),(x3)) argument 66 #define BCM_STRNCPY_S(x1,x2,x3,x4) strncpy((x1),(x3),(x4)) argument
|
/external/qemu/android/skin/ |
D | rect.c | 150 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) { in skin_rect_contains_rect() 154 if (b.x1 >= a.x1 && b.x2 <= a.x2 && b.y1 >= a.y1 && b.y2 <= a.y2) { in skin_rect_contains_rect() 170 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) { in skin_rect_intersect() 175 r.x1 = (a.x1 > b.x1) ? a.x1 : b.x1; in skin_rect_intersect() 196 box->x1 = box->y1 = INT_MAX; in skin_box_minmax_init() 207 if (b->x1 < a->x1) a->x1 = b->x1; in skin_box_minmax_update() 216 if (box->x1 > box->x2) { in skin_box_minmax_to_rect() 227 box->x1 = r->pos.x; in skin_box_from_rect() 229 box->x2 = r->size.w + box->x1; in skin_box_from_rect() 236 r->pos.x = box->x1; in skin_box_to_rect() [all …]
|
D | argb.h | 81 #define ARGB_DECL2(x1,x2) mmx_t x1, x2 argument 86 #define ARGB_SUM(x1,x2,x3) x1 = _mm_add_pi32(x2, x3) argument 94 #define ARGB_INTERP255(x1,x2,x3,alpha) \ argument 95 x1 = mmx_interp255( x2, x3, _zero, (alpha)) 97 #define ARGB_ADDW_11(x1,x2,x3) \ argument 98 ARGB_SUM(x1,x2,x3) 100 #define ARGB_ADDW_31(x1,x2,x3) \ argument 104 x1 = _mm_add_pi16(_t1, _t2); \ 107 #define ARGB_ADDW_13(x1,x2,x3) \ argument 111 x1 = _mm_add_pi16(_t1, _t2); \ [all …]
|
/external/valgrind/main/none/tests/x86/ |
D | insn_basic.def | 1 ###aaa eflags[0x11,0x01] al.ub[0x1] ah.ub[0x0] : => al.ub[0x1] ah.ub[0x00] eflags[0x11,0x00] 5 ###aaa eflags[0x11,0x10] al.ub[0x1] ah.ub[0x0] : => al.ub[0x7] ah.ub[0x01] eflags[0x11,0x11] 13 ###aas eflags[0x11,0x01] al.ub[0x1] ah.ub[0x2] : => al.ub[0x1] ah.ub[0x02] eflags[0x11,0x00] 17 ###aas eflags[0x11,0x10] al.ub[0x1] ah.ub[0x2] : => al.ub[0xb] ah.ub[0x00] eflags[0x11,0x11] 21 adcb eflags[0x1,0x0] : imm8[12] al.ub[34] => 1.ub[46] 22 adcb eflags[0x1,0x1] : imm8[12] al.ub[34] => 1.ub[47] 23 adcb eflags[0x1,0x0] : imm8[12] bl.ub[34] => 1.ub[46] 24 adcb eflags[0x1,0x1] : imm8[12] bl.ub[34] => 1.ub[47] 25 adcb eflags[0x1,0x0] : imm8[12] m8.ub[34] => 1.ub[46] 26 adcb eflags[0x1,0x1] : imm8[12] m8.ub[34] => 1.ub[47] [all …]
|
/external/clang/test/Analysis/ |
D | stack-addr-ps.cpp | 33 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}} in get_reference3() local 34 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} in get_reference3() 45 int x1; in f2() local 46 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} in f2() 51 int x1; in f3() local 52 int *const &x2 = &x1; // expected-note {{binding reference variable 'x2' here}} in f3() 57 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}} in f4() local 58 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} in f4()
|
/external/libvpx/vp8/common/ |
D | textblit.c | 61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch) in vp8_blit_line() argument 63 int steep = abs(y1 - y0) > abs(x1 - x0); in vp8_blit_line() 74 t = x1; in vp8_blit_line() 75 x1 = y1; in vp8_blit_line() 79 if (x0 > x1) in vp8_blit_line() 83 x0 = x1; in vp8_blit_line() 84 x1 = t; in vp8_blit_line() 91 deltax = x1 - x0; in vp8_blit_line() 104 for (x = x0; x <= x1; x++) in vp8_blit_line() 118 for (x = x0; x <= x1; x++) in vp8_blit_line()
|
/external/skia/src/opts/ |
D | SkBitmapProcState_opts_SSSE3.cpp | 48 int* x1) { in PrepareConstantsTwoPixelPairs() argument 58 _mm_storeu_si128(reinterpret_cast<__m128i *>(x1), x1_wide); in PrepareConstantsTwoPixelPairs() 231 const int* x1, in ProcessTwoPixelPairs() argument 237 row0[x0[0]], row0[x1[0]], row0[x0[1]], row0[x1[1]], in ProcessTwoPixelPairs() 240 row1[x0[0]], row1[x1[0]], row1[x0[1]], row1[x1[1]], in ProcessTwoPixelPairs() 345 int x1[4]; in S32_generic_D32_filter_DX_SSSE3() local 349 &all_x, &sixteen_minus_x, x0, x1); in S32_generic_D32_filter_DX_SSSE3() 358 row0[x0[0]], row0[x1[0]], row0[x0[1]], row0[x1[1]], in S32_generic_D32_filter_DX_SSSE3() 366 row0[x0[2]], row0[x1[2]], row0[x0[3]], row0[x1[3]], in S32_generic_D32_filter_DX_SSSE3() 382 unsigned x1 = xx & 0x3FFF; in S32_generic_D32_filter_DX_SSSE3() local [all …]
|
/external/clang/test/CodeGen/ |
D | regparm-struct.c | 10 int x1; member 20 int x1; member 37 int x1; member 55 int x1; member 74 float x1; member 84 float x1; member 95 float x1; member 107 float x1; member 118 float x1; member 130 double x1; member [all …]
|
/external/oprofile/events/ia64/itanium2/ |
D | unit_masks | 13 0x1 INT 20 0x1 FE 26 0x1 STG 33 0x1 GRALL 45 0x1 BRU 51 0x1 FPU 70 # 0x1 FEFLUSH 85 0x1 BANK_SWITCH 94 0x1 ALL.CORRECT_PRED 113 0x1 ALL.UKNOWN_PATH_CORRECT_PRED [all …]
|
/external/skia/src/core/ |
D | SkEdge.cpp | 30 SkFDot6 x0, y0, x1, y1; in setLine() local 37 x1 = int(p1.fX * scale); in setLine() 43 x1 = p1.fX >> shift; in setLine() 51 SkTSwap(x0, x1); in setLine() 68 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); in setLine() 85 int SkEdge::updateLine(SkFixed x0, SkFixed y0, SkFixed x1, SkFixed y1) in updateLine() argument 106 x1 >>= 10; in updateLine() 108 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); in updateLine() 171 SkFDot6 x0, y0, x1, y1, x2, y2; in setQuadratic() local 178 x1 = int(pts[1].fX * scale); in setQuadratic() [all …]
|
/external/v8/test/mjsunit/ |
D | top-level-assignments.js | 61 var x1 = new Object(); variable 63 x1.a = 7; 64 x1.b = function() { return 42; }; 67 x1.c = 88; 68 x1.d = "A Man Called Horse"; 72 assertEquals(7, x1.a); 73 assertEquals(42, x1.b()); 74 assertEquals(88, x1.c); 75 assertEquals("A Man Called Horse", x1.d);
|
/external/openssl/crypto/ec/ |
D | ec2_mult.c | 115 static int gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, in gf2m_Madd() argument 128 if (!group->meth->field_mul(group, x1, x1, z2, ctx)) goto err; in gf2m_Madd() 130 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err; in gf2m_Madd() 131 if (!BN_GF2m_add(z1, z1, x1)) goto err; in gf2m_Madd() 133 if (!group->meth->field_mul(group, x1, z1, t1, ctx)) goto err; in gf2m_Madd() 134 if (!BN_GF2m_add(x1, x1, t2)) goto err; in gf2m_Madd() 152 static int gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, in gf2m_Mxy() argument 184 if (!BN_GF2m_add(z1, z1, x1)) goto err; in gf2m_Mxy() 186 if (!group->meth->field_mul(group, x1, z2, x1, ctx)) goto err; in gf2m_Mxy() 198 if (!group->meth->field_mul(group, x2, x1, t3, ctx)) goto err; in gf2m_Mxy() [all …]
|
/external/eigen/test/eigen2/ |
D | eigen2_smallvectors.cpp | 17 Scalar x1 = ei_random<Scalar>(), in smallVectors() local 21 V2 v2(x1, x2); in smallVectors() 22 V3 v3(x1, x2, x3); in smallVectors() 23 V4 v4(x1, x2, x3, x4); in smallVectors() 24 VERIFY_IS_APPROX(x1, v2.x()); in smallVectors() 25 VERIFY_IS_APPROX(x1, v3.x()); in smallVectors() 26 VERIFY_IS_APPROX(x1, v4.x()); in smallVectors()
|
/external/tremolo/Tremolo/ |
D | asm_arm.h | 73 int x1, y1, l; in XPROD32() local 79 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a) in XPROD32() 82 *x = x1; in XPROD32() 92 int x1, y1, l; in XPROD31() local 98 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a) in XPROD31() 101 *x = x1 << 1; in XPROD31() 111 int x1, y1, l; in XNPROD31() local 117 : "=&r" (l), "=&r" (x1), "=&r" (y1) in XNPROD31() 120 *x = x1 << 1; in XNPROD31()
|