/external/qemu/distrib/sdl-1.2.15/src/stdlib/ |
D | SDL_iconv.c | 103 int dst_fmt; member 171 int dst_fmt = ENCODING_UNKNOWN; in SDL_iconv_open() local 185 if ( dst_fmt != ENCODING_UNKNOWN ) { in SDL_iconv_open() 190 dst_fmt = encodings[i].format; in SDL_iconv_open() 196 if ( src_fmt != ENCODING_UNKNOWN && dst_fmt != ENCODING_UNKNOWN ) { in SDL_iconv_open() 200 cd->dst_fmt = dst_fmt; in SDL_iconv_open() 279 switch ( cd->dst_fmt ) { in SDL_iconv() 288 cd->dst_fmt = ENCODING_UTF16NATIVE; in SDL_iconv() 298 cd->dst_fmt = ENCODING_UTF32NATIVE; in SDL_iconv() 572 switch ( cd->dst_fmt ) { in SDL_iconv()
|
/external/pixman/test/ |
D | scaling-test.c | 76 pixman_format_code_t src_fmt, dst_fmt; in test_composite() local 148 dst_fmt = get_format (dst_bpp); in test_composite() 157 dst_fmt, dst_width, dst_height, dstbuf, dst_stride); in test_composite() 243 format_name (src_fmt), format_name (dst_fmt)); in test_composite() 343 if (dst_fmt == PIXMAN_x8r8g8b8 || dst_fmt == PIXMAN_x8b8g8r8) in test_composite()
|
D | blitters-test.c | 237 pixman_format_code_t src_fmt, dst_fmt, mask_fmt; in test_composite() local 275 max_extra_stride, &dst_fmt); in test_composite() 343 format_name (src_fmt), format_name (dst_fmt), in test_composite() 366 if (j == (dst_width * PIXMAN_FORMAT_BPP (dst_fmt) + 7) / 8) in test_composite() 377 crc32 = free_random_image (0, dst_img, dst_fmt); in test_composite()
|
D | affine-test.c | 45 pixman_format_code_t src_fmt, dst_fmt; in test_composite() local 86 dst_fmt = dst_bpp == 4 ? (prng_rand_n (2) == 0 ? in test_composite() 93 dst_fmt, dst_width, dst_height, dstbuf, dst_stride); in test_composite() 203 printf ("src_fmt=%s, dst_fmt=%s\n", format_name (src_fmt), format_name (dst_fmt)); in test_composite() 276 if (dst_fmt == PIXMAN_x8r8g8b8) in test_composite()
|
D | lowlevel-blt-bench.c | 376 int dst_fmt, in bench_composite() argument 418 bytes_per_pix += (dst_fmt >> 24) / 8.0; in bench_composite() 419 dst_img = pixman_image_create_bits (dst_fmt, in bench_composite() 459 xdst_img = pixman_image_create_bits (dst_fmt, in bench_composite() 492 ((PIXMAN_FORMAT_BPP(src_fmt) + PIXMAN_FORMAT_BPP(dst_fmt)) / 8); in bench_composite() 598 int dst_fmt; member 813 tests_tbl[i].dst_fmt, in main()
|
/external/pixman/pixman/ |
D | pixman-arm-neon-asm.S | 2985 .macro bilinear_interpolate_last_pixel src_fmt, dst_fmt argument 2998 bilinear_store_&dst_fmt 1, q2, q3 3001 .macro bilinear_interpolate_two_pixels src_fmt, dst_fmt argument 3015 bilinear_store_&dst_fmt 2, q2, q3 3018 .macro bilinear_interpolate_four_pixels src_fmt, dst_fmt argument 3047 bilinear_store_&dst_fmt 4, q2, q3 3050 .macro bilinear_interpolate_four_pixels_head src_fmt, dst_fmt argument 3051 .ifdef have_bilinear_interpolate_four_pixels_&src_fmt&_&dst_fmt 3052 bilinear_interpolate_four_pixels_&src_fmt&_&dst_fmt&_head 3054 bilinear_interpolate_four_pixels src_fmt, dst_fmt [all …]
|
D | pixman-arm-neon-asm-bilinear.S | 283 .macro bilinear_load_dst dst_fmt, op, numpix, dst0, dst1, dst01 284 bilinear_load_dst_&dst_fmt&_&op numpix, dst0, dst1, dst01 485 .macro bilinear_interpolate_last_pixel src_fmt, mask_fmt, dst_fmt, op 488 bilinear_load_dst dst_fmt, op, 1, d18, d19, q9 510 bilinear_store_&dst_fmt 1, q2, q3 513 .macro bilinear_interpolate_two_pixels src_fmt, mask_fmt, dst_fmt, op 517 bilinear_load_dst dst_fmt, op, 2, d18, d19, q9 539 bilinear_store_&dst_fmt 2, q2, q3 542 .macro bilinear_interpolate_four_pixels src_fmt, mask_fmt, dst_fmt, op 560 bilinear_load_dst dst_fmt, op, 4, d2, d3, q1 [all …]
|
/external/qemu/android/camera/ |
D | camera-format-converters.c | 1111 const YUVDesc* dst_fmt, in YUVToYUV() argument 1125 const int Y_Inc_dst = dst_fmt->Y_inc; in YUVToYUV() 1126 const int UV_inc_dst = dst_fmt->UV_inc; in YUVToYUV() 1127 const int Y_next_pair_dst = dst_fmt->Y_next_pair; in YUVToYUV() 1129 uint8_t* pYdst = (uint8_t*)dst + dst_fmt->Y_offset; in YUVToYUV() 1136 (uint8_t*)dst + dst_fmt->u_offset(dst_fmt, y, width, height); in YUVToYUV() 1138 (uint8_t*)dst + dst_fmt->v_offset(dst_fmt, y, width, height); in YUVToYUV()
|