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

1 2

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tile.c 54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch + local
61 memcpy(dst2, src2, columns * sizeof(uint8_t));
62 dst2 += tile_width;
85 uint16_t *dst2 = (uint16_t *)dst + row * dst_pitch + local
92 memcpy(dst2, src2, columns * sizeof(uint16_t));
93 dst2 += tile_width;
116 uint16_t *dst2 = (uint16_t *)dst + row * dst_pitch + local
123 memcpy(dst2, src2, columns * sizeof(uint16_t));
124 dst2 += tile_width;
147 uint32_t *dst2 = (uint32_t *)dst + row * dst_pitch local
178 uint64_t *dst2 = (uint64_t *)dst + row * dst_pitch + local
271 uint8_t *dst2 = (uint8_t *)dst + dst_pitch * row + col; local
304 uint16_t *dst2 = (uint16_t *)dst + dst_pitch * row + col; local
337 uint16_t *dst2 = (uint16_t *)dst + dst_pitch * row + col; local
370 uint32_t *dst2 = (uint32_t *)dst + dst_pitch * row + col; local
403 uint64_t *dst2 = (uint64_t *)dst + dst_pitch * row + col; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.c 54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch + local
61 memcpy(dst2, src2, columns * sizeof(uint8_t));
62 dst2 += tile_width;
85 uint16_t *dst2 = (uint16_t *)dst + row * dst_pitch + local
92 memcpy(dst2, src2, columns * sizeof(uint16_t));
93 dst2 += tile_width;
116 uint16_t *dst2 = (uint16_t *)dst + row * dst_pitch + local
123 memcpy(dst2, src2, columns * sizeof(uint16_t));
124 dst2 += tile_width;
147 uint32_t *dst2 = (uint32_t *)dst + row * dst_pitch local
178 uint64_t *dst2 = (uint64_t *)dst + row * dst_pitch + local
271 uint8_t *dst2 = (uint8_t *)dst + dst_pitch * row + col; local
304 uint16_t *dst2 = (uint16_t *)dst + dst_pitch * row + col; local
337 uint16_t *dst2 = (uint16_t *)dst + dst_pitch * row + col; local
370 uint32_t *dst2 = (uint32_t *)dst + dst_pitch * row + col; local
403 uint64_t *dst2 = (uint64_t *)dst + dst_pitch * row + col; local
    [all...]
  /system/core/libutils/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/qemu/distrib/sdl-1.2.15/src/video/
SDL_blit_A.c 337 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); /* dst2 + src2 -> src2 *
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...]
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 204 public int dst2; field in class:TimeTest.DateTest
208 int dst2) {
221 this.dst2 = dst2;
238 this.dst2 = -1;
373 if (test.dst2 == -1) test.dst2 = local.isDst;
378 || local.minute != test.minute2 || local.isDst != test.dst2) {
381 test.dst2);
394 if (test.dst2 == -1) test.dst2 = local.isDst
    [all...]
  /external/skia/gm/
image.cpp 96 SkRect dst1, dst2, dst3, dst4; local
98 dst2.set(0, 320, 65, 385);
103 imgG->draw(canvas, &src2, dst2, usePaint ? &paint : NULL);
poly2poly.cpp 244 const int dst2[] = { 32, 32, 64, 48 }; variable
245 doDraw(canvas, &paint, src2, dst2, 2);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
image.c 477 GLushort (*dst2)[4] = (GLushort (*)[4]) (useTemp ? tempBuffer : dst);
481 dst2[i][RCOMP] = UBYTE_TO_USHORT(src1[i][RCOMP]);
482 dst2[i][GCOMP] = UBYTE_TO_USHORT(src1[i][GCOMP]);
483 dst2[i][BCOMP] = UBYTE_TO_USHORT(src1[i][BCOMP]);
484 dst2[i][ACOMP] = UBYTE_TO_USHORT(src1[i][ACOMP]);
554 GLushort (*dst2)[4] = (GLushort (*)[4]) (useTemp ? tempBuffer : dst);
559 UNCLAMPED_FLOAT_TO_USHORT(dst2[i][RCOMP], src4[i][RCOMP]);
560 UNCLAMPED_FLOAT_TO_USHORT(dst2[i][GCOMP], src4[i][GCOMP]);
561 UNCLAMPED_FLOAT_TO_USHORT(dst2[i][BCOMP], src4[i][BCOMP]);
562 UNCLAMPED_FLOAT_TO_USHORT(dst2[i][ACOMP], src4[i][ACOMP])
    [all...]
  /external/mesa3d/src/mesa/main/
image.c 477 GLushort (*dst2)[4] = (GLushort (*)[4]) (useTemp ? tempBuffer : dst);
481 dst2[i][RCOMP] = UBYTE_TO_USHORT(src1[i][RCOMP]);
482 dst2[i][GCOMP] = UBYTE_TO_USHORT(src1[i][GCOMP]);
483 dst2[i][BCOMP] = UBYTE_TO_USHORT(src1[i][BCOMP]);
484 dst2[i][ACOMP] = UBYTE_TO_USHORT(src1[i][ACOMP]);
554 GLushort (*dst2)[4] = (GLushort (*)[4]) (useTemp ? tempBuffer : dst);
559 UNCLAMPED_FLOAT_TO_USHORT(dst2[i][RCOMP], src4[i][RCOMP]);
560 UNCLAMPED_FLOAT_TO_USHORT(dst2[i][GCOMP], src4[i][GCOMP]);
561 UNCLAMPED_FLOAT_TO_USHORT(dst2[i][BCOMP], src4[i][BCOMP]);
562 UNCLAMPED_FLOAT_TO_USHORT(dst2[i][ACOMP], src4[i][ACOMP])
    [all...]
  /external/chromium_org/third_party/icu/source/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/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/chromium_org/third_party/libwebp/dsp/
dec_sse2.c 201 __m128i dst0, dst1, dst2, dst3; local
206 dst2 = _mm_loadl_epi64((__m128i*)&dst[2 * BPS]);
212 dst2 = _mm_cvtsi32_si128(*(int*)&dst[2 * BPS]);
218 dst2 = _mm_unpacklo_epi8(dst2, zero);
223 dst2 = _mm_add_epi16(dst2, T2);
228 dst2 = _mm_packus_epi16(dst2, dst2);
    [all...]
  /external/webp/src/dsp/
dec_sse2.c 201 __m128i dst0, dst1, dst2, dst3; local
206 dst2 = _mm_loadl_epi64((__m128i*)&dst[2 * BPS]);
212 dst2 = _mm_cvtsi32_si128(*(int*)&dst[2 * BPS]);
218 dst2 = _mm_unpacklo_epi8(dst2, zero);
223 dst2 = _mm_add_epi16(dst2, T2);
228 dst2 = _mm_packus_epi16(dst2, dst2);
    [all...]
  /external/clang/test/Analysis/
taint-generic.c 149 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
string.c 621 char dst2[8] = "1234"; local
622 strncat(dst2, src, 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
630 char dst2[8] = "1234"; local
631 strncat(dst2, &src[offset], 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
  /external/libvpx/libvpx/vp8/encoder/
temporal_filter.c 243 unsigned char *dst1, *dst2; local
386 dst2 = cpi->alt_ref_buffer.v_buffer;
405 dst2[byte] = (unsigned char)pval;
  /external/libvpx/libvpx/vp9/encoder/
vp9_temporal_filter.c 204 uint8_t *dst1, *dst2; local
322 dst2 = cpi->alt_ref_buffer.v_buffer;
339 dst2[byte] = (uint8_t)pval;
  /frameworks/av/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/pixman/pixman/
pixman-arm-simd-asm.S 306 .macro add_8_8_8pixels cond, dst1, dst2
308 uqadd8&cond WK&dst2, WK&dst2, STRIDE_M
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu4c/test/intltest/
tzrulets.cpp 568 int32_t offset2, dst2; local
576 ny->getOffset(times[i], FALSE, offset2, dst2, status);
580 if (offset1 != offset2 || dst1 != dst2) {
828 int32_t raw1, raw2, dst1, dst2; local
830 vtz_new->getOffset(startTime, FALSE, raw2, dst2, status);
834 if (raw1 + dst1 != raw2 + dst2) {
918 int32_t raw1, raw2, dst1, dst2; local
2536 int32_t raw1, raw2, dst1, dst2; local
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 663 void MacroAssembler::Ldrd(Register dst1, Register dst2,
668 ASSERT_EQ(dst1.code() + 1, dst2.code());
677 ldrd(dst1, dst2, src, cond);
683 ldr(dst2, src2, cond);
687 ldr(dst2, src2, cond);
692 ldr(dst2, MemOperand(src.rn(), 4, Offset), cond);
698 ldr(dst2, src2, cond);
721 MemOperand dst2(dst);
723 dst2.set_offset(dst2.offset() + 4)
    [all...]
code-stubs-arm.h 755 // the result either in |double_dst| or |dst2:dst1|, depending on
763 Register dst2,
777 Register dst2,
843 Register dst2,
    [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...]

Completed in 1150 milliseconds

1 2