Searched defs:dst2 (Results 1 - 14 of 14) sorted by relevance

/external/skia/gm/
H A Dpoly2poly.cpp78 const int dst2[] = { 32, 32, 64, 48 }; local
79 doDraw(canvas, &paint, src2, dst2, 2);
/external/skia/samplecode/
H A DSamplePolyToPoly.cpp140 const int dst2[] = { 32, 32, 64, 48 }; local
141 doDraw(canvas, &paint, src2, dst2, 2);
/external/clang/test/Analysis/
H A Dtaint-generic.c149 char *dst2 = (char*)malloc(ts*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}} local
150 strncat(dst2, dst, ts); // no-warning
H A Dstring.c634 char dst2[8] = "1234"; local
635 strncat(dst2, src, 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
643 char dst2[8] = "1234"; local
644 strncat(dst2, &src[offset], 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
/external/icu4c/i18n/
H A Dbasictz.cpp46 int32_t raw1, raw2, dst1, dst2; local
51 tz.getOffset(start, FALSE, raw2, dst2, status);
56 if ((raw1 + dst1 != raw2 + dst2)
57 || (dst1 != 0 && dst2 == 0)
58 || (dst1 == 0 && dst2 != 0)) {
62 if (raw1 != raw2 || dst1 != dst2) {
/external/libvpx/vp8/encoder/
H A Dtemporal_filter.c300 unsigned char *dst1, *dst2; local
430 dst2 = cpi->alt_ref_buffer.source_buffer.v_buffer;
449 dst2[byte] = (unsigned char)pval;
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_blit_A.c337 punpckhbw_r2r(mm5, mm6); /* high - 0A0R0G0B -> mm6(dst2) */
344 psubw_r2r(mm6, mm1);/* src2 - dst2 -> mm1 */
347 paddb_r2r(mm1, mm6); /* mm1 + mm6(dst2) -> mm6 */
457 __m64 src1, src2, dst1, dst2, lmask, hmask, dsta; local
475 dst2 = dst1; /* 2 x dst -> dst2(ARGBARGB) */
480 dst2 = _mm_and_si64(dst2, hmask); /* dst & mask -> dst2 */
482 src2 = _mm_add_pi32(src2, dst2); /* dst
521 __m64 src1, src2, dst1, dst2, mm_alpha, mm_zero, dsta; local
2173 __m64 src1, dst1, src2, dst2, gmask, bmask, mm_res, mm_alpha; local
2307 __m64 src1, dst1, src2, dst2, rmask, gmask, bmask, mm_res, mm_alpha; local
[all...]
/external/webkit/Source/JavaScriptCore/jit/
H A DJITInlineMethods.h675 ALWAYS_INLINE void JIT::emitGetVirtualRegisters(int src1, RegisterID dst1, int src2, RegisterID dst2) argument
678 emitGetVirtualRegister(src2, dst2);
682 emitGetVirtualRegister(src2, dst2);
/external/webp/src/dsp/
H A Ddec_sse2.c199 __m128i dst0, dst1, dst2, dst3; local
204 dst2 = _mm_loadl_epi64((__m128i*)&dst[2 * BPS]);
210 dst2 = _mm_cvtsi32_si128(*(int*)&dst[2 * BPS]);
216 dst2 = _mm_unpacklo_epi8(dst2, zero);
221 dst2 = _mm_add_epi16(dst2, T2);
226 dst2 = _mm_packus_epi16(dst2, dst2);
[all...]
/external/icu4c/test/intltest/
H A Dtzrulets.cpp567 int32_t offset2, dst2; local
575 ny->getOffset(times[i], FALSE, offset2, dst2, status);
579 if (offset1 != offset2 || dst1 != dst2) {
827 int32_t raw1, raw2, dst1, dst2; local
829 vtz_new->getOffset(startTime, FALSE, raw2, dst2, status);
833 if (raw1 + dst1 != raw2 + dst2) {
917 int32_t raw1, raw2, dst1, dst2; local
919 vtz_new->getOffset(startTime, FALSE, raw2, dst2, status);
923 if (raw1 + dst1 != raw2 + dst2) {
2535 int32_t raw1, raw2, dst1, dst2; local
[all...]
/external/v8/src/arm/
H A Dstub-cache-arm.cc3502 Register dst2 = r3; local
3510 dst2,
3514 __ str(dst2, FieldMemOperand(r0, HeapNumber::kExponentOffset));
3786 d0, r6, r7, // These are: double_dst, dst1, dst2.
H A Dcode-stubs-arm.cc573 Register dst2,
600 // Load the double from heap number to dst1 and dst2 in double format.
601 __ Ldrd(dst1, dst2, FieldMemOperand(object, HeapNumber::kValueOffset));
613 // Load the converted smi to dst1 and dst2 in double format.
614 __ vmov(dst1, dst2, dst);
618 // Write smi to dst1 and dst2 double format.
620 ConvertToDoubleStub stub(dst2, dst1, scratch1, scratch2);
676 Register dst2,
681 ASSERT(!int_scratch.is(dst2));
690 __ vmov(dst1, dst2, double_ds
568 LoadNumber(MacroAssembler* masm, Destination destination, Register object, DwVfpRegister dst, Register dst1, Register dst2, Register heap_number_map, Register scratch1, Register scratch2, Label* not_number) argument
671 ConvertIntToDouble(MacroAssembler* masm, Register int_scratch, Destination destination, DwVfpRegister double_dst, Register dst1, Register dst2, Register scratch2, SwVfpRegister single_scratch) argument
745 LoadNumberAsInt32Double(MacroAssembler* masm, Register object, Destination destination, DwVfpRegister double_dst, Register dst1, Register dst2, Register heap_number_map, Register scratch1, Register scratch2, SwVfpRegister single_scratch, Label* not_int32) argument
[all...]
/external/v8/src/mips/
H A Dstub-cache-mips.cc3504 Register dst2 = t3; local
3512 dst2,
3516 __ sw(dst2, FieldMemOperand(v0, HeapNumber::kExponentOffset));
3810 f0, t2, t3, // These are: double_dst, dst1, dst2.
H A Dcode-stubs-mips.cc573 Register dst2,
603 // Load the double from heap number to dst1 and dst2 in double format.
605 __ lw(dst2, FieldMemOperand(object,
618 // Load the converted smi to dst1 and dst2 in double format.
619 __ Move(dst1, dst2, dst);
623 // Write smi to dst1 and dst2 double format.
625 ConvertToDoubleStub stub(dst2, dst1, scratch1, scratch2);
681 Register dst2,
686 ASSERT(!int_scratch.is(dst2));
695 __ Move(dst1, dst2, double_ds
568 LoadNumber(MacroAssembler* masm, Destination destination, Register object, FPURegister dst, Register dst1, Register dst2, Register heap_number_map, Register scratch1, Register scratch2, Label* not_number) argument
676 ConvertIntToDouble(MacroAssembler* masm, Register int_scratch, Destination destination, FPURegister double_dst, Register dst1, Register dst2, Register scratch2, FPURegister single_scratch) argument
758 LoadNumberAsInt32Double(MacroAssembler* masm, Register object, Destination destination, DoubleRegister double_dst, Register dst1, Register dst2, Register heap_number_map, Register scratch1, Register scratch2, FPURegister single_scratch, Label* not_int32) argument
[all...]

Completed in 379 milliseconds