HomeSort by relevance Sort by last modified time
    Searched refs:dst2 (Results 1 - 25 of 25) sorted by null

  /frameworks/base/libs/utils/tests/
String8_test.cpp 52 String8 dst2 = src1 + ssrc2; local
53 EXPECT_STREQ(dst2.string(), "Hello, world!");
  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 58 public int dst2; field in class:TimeTest.DateTest
62 int dst2) {
75 this.dst2 = dst2;
92 this.dst2 = -1;
228 if (test.dst2 == -1) test.dst2 = local.isDst;
233 || local.minute != test.minute2 || local.isDst != test.dst2) {
236 test.dst2);
249 if (test.dst2 == -1) test.dst2 = local.isDst
    [all...]
  /external/skia/gm/
poly2poly.cpp 77 const int dst2[] = { 32, 32, 64, 48 }; local
78 doDraw(canvas, &paint, src2, dst2, 2);
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_A.c 336 punpckhbw_r2r(mm5, mm6); /* high - 0A0R0G0B -> mm6(dst2) */
343 psubw_r2r(mm6, mm1);/* src2 - dst2 -> mm1 */
346 paddb_r2r(mm1, mm6); /* mm1 + mm6(dst2) -> mm6 */
456 __m64 src1, src2, dst1, dst2, lmask, hmask, dsta; local
474 dst2 = dst1; /* 2 x dst -> dst2(ARGBARGB) */
479 dst2 = _mm_and_si64(dst2, hmask); /* dst & mask -> dst2 */
481 src2 = _mm_add_pi32(src2, dst2); /* dst2 + src2 -> src2 *
520 __m64 src1, src2, dst1, dst2, mm_alpha, mm_zero, dsta; local
2172 __m64 src1, dst1, src2, dst2, gmask, bmask, mm_res, mm_alpha; local
2306 __m64 src1, dst1, src2, dst2, rmask, gmask, bmask, mm_res, mm_alpha; local
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 253 public int dst2; field in class:TimeTest.DateTest
257 int dst2) {
270 this.dst2 = dst2;
287 this.dst2 = -1;
439 if (test.dst2 == -1) test.dst2 = local.isDst;
444 || local.minute != test.minute2 || local.isDst != test.dst2) {
447 test.dst2);
460 if (test.dst2 == -1) test.dst2 = local.isDst
    [all...]
  /external/icu4c/i18n/
basictz.cpp 46 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/webp/src/dec/
dsp_sse2.c 197 __m128i dst0, dst1, dst2, dst3; local
202 dst2 = _mm_loadl_epi64((__m128i*)&dst[2 * BPS]);
208 dst2 = _mm_cvtsi32_si128(*(int*)&dst[2 * BPS]);
214 dst2 = _mm_unpacklo_epi8(dst2, zero);
219 dst2 = _mm_add_epi16(dst2, T2);
224 dst2 = _mm_packus_epi16(dst2, dst2);
    [all...]
  /external/skia/samplecode/
SamplePolyToPoly.cpp 132 const int dst2[] = { 32, 32, 64, 48 }; local
133 doDraw(canvas, &paint, src2, dst2, 2);
  /external/libvpx/vp8/encoder/
temporal_filter.c 300 unsigned char *dst1, *dst2; local
430 dst2 = cpi->alt_ref_buffer.source_buffer.v_buffer;
449 dst2[byte] = (unsigned char)pval;
  /external/clang/test/Analysis/
string.c 650 char dst2[8] = "1234"; local
651 strncat(dst2, src, 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
660 char dst2[8] = "1234"; local
661 strncat(dst2, &src[offset], 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
slice.cpp 514 uint32 *dst, *dst2, *src; local
532 dst2 = (uint32*)curCr;
539 *dst2++ = *src++;
540 *dst2++ = *src++;
543 dst2 += offset;
  /external/v8/src/mips/
code-stubs-mips.cc 163 Register dst2,
195 Register dst2,
  /external/icu4c/test/intltest/
tzrulets.cpp 567 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
2535 int32_t raw1, raw2, dst1, dst2; local
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c 99 NJ_UINT8 dst1, dst2, dst3; local
104 /* dst1 dst2 dst3 */
114 dst2 = ( ( src[ i + 1 ] & 0x3f ) << 4 ) | ( ( src[ i + 2 ] & 0x3f ) >> 2 );
118 dst_tmp[ 1 ] = ( ( dst1 & 0x03 ) << 6 ) | ( ( dst2 & 0xfc ) >> 2 );
119 dst_tmp[ 2 ] = 0xdc | ( ( dst2 & 0x03 ) );
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITInlineMethods.h 675 ALWAYS_INLINE void JIT::emitGetVirtualRegisters(int src1, RegisterID dst1, int src2, RegisterID dst2)
678 emitGetVirtualRegister(src2, dst2);
682 emitGetVirtualRegister(src2, dst2);
JIT.h 524 void emitGetVirtualRegisters(int src1, RegisterID dst1, int src2, RegisterID dst2);
    [all...]
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 172 final float dst2 = (atmp2 * src4 + atmp7 * src5 + atmp10 * src7) local
219 src0 * dst0 + src1 * dst1 + src2 * dst2 + src3 * dst3;
229 mInv[ 2 + mInvOffset] = dst2 * invdet;
  /external/v8/src/arm/
code-stubs-arm.cc 423 Register dst2,
489 Register dst2,
552 Register dst2,
577 // Load the double from heap number to dst1 and dst2 in double format.
578 __ Ldrd(dst1, dst2, FieldMemOperand(object, HeapNumber::kValueOffset));
591 // Load the converted smi to dst1 and dst2 in double format.
592 __ vmov(dst1, dst2, dst);
596 // Write smi to dst1 and dst2 double format.
598 ConvertToDoubleStub stub(dst2, dst1, scratch1, scratch2);
659 Register dst2,
    [all...]
macro-assembler-arm.cc 617 void MacroAssembler::Ldrd(Register dst1, Register dst2,
622 ASSERT_EQ(dst1.code() + 1, dst2.code());
627 ldrd(dst1, dst2, src, cond);
632 ldr(dst2, src2, cond);
636 ldr(dst2, src2, cond);
654 MemOperand dst2(dst);
655 dst2.set_offset(dst2.offset() + 4);
657 str(src2, dst2, cond);
    [all...]
assembler-arm.h 900 Register dst2,
    [all...]
assembler-arm.cc     [all...]
macro-assembler-arm.h 282 Register dst2,
    [all...]
  /external/opencv/cv/src/
cvpyramids.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/nio/
BufferTest.java 624 ByteBuffer dst2 = dst.put(src); local
625 assertSame(dst, dst2);
  /external/opencv/cxcore/include/
cxcore.h 456 CvArr* dst2, CvArr* dst3 );
    [all...]

Completed in 2160 milliseconds