/external/mesa3d/src/gallium/tests/unit/ |
u_format_compatible_test.c | 39 enum pipe_format dst_format; local 48 for (dst_format = 1; dst_format < PIPE_FORMAT_COUNT; ++dst_format) { 50 dst_format_desc = util_format_description(dst_format); 55 if (dst_format == src_format) {
|
/system/media/audio_utils/ |
format.c | 24 void memcpy_by_audio_format(void *dst, audio_format_t dst_format, 28 if (dst_format == src_format) { 29 switch (dst_format) { 36 memcpy(dst, src, count * audio_bytes_per_sample(dst_format)); 42 switch (dst_format) { 150 src_format, dst_format);
|
/system/media/audio_utils/include/audio_utils/ |
format.h | 32 * \param dst_format Destination buffer format 39 * 1) One of src_format or dst_format is AUDIO_FORMAT_PCM_16_BIT or 54 * 2) Both dst_format and src_format are identical and of the list given 63 void memcpy_by_audio_format(void *dst, audio_format_t dst_format,
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_pixel_read.c | 97 const gl_format dst_format = gl_format_and_type_to_mesa_format(format, type); local 108 if (dst_format == MESA_FORMAT_NONE || 109 !radeon->vtbl.check_blit(dst_format, rrb->pitch / rrb->cpp) || !radeon->vtbl.blit) { 132 aligned_rowstride = get_texture_image_row_stride(radeon, dst_format, dst_rowstride, 0, GL_TEXTURE_2D); 133 dst_rowstride *= _mesa_get_format_bytes(dst_format); 136 dst_imagesize = get_texture_image_size(dst_format, 169 dst_format, 170 aligned_rowstride / _mesa_get_format_bytes(dst_format),
|
radeon_blit.c | 184 uint32_t dst_format = 0; local 191 dst_format = RADEON_COLOR_FORMAT_ARGB8888; 194 dst_format = RADEON_COLOR_FORMAT_RGB565; 197 dst_format = RADEON_COLOR_FORMAT_ARGB4444; 200 dst_format = RADEON_COLOR_FORMAT_ARGB1555; 205 dst_format = RADEON_COLOR_FORMAT_RGB8; 223 OUT_BATCH_REGVAL(RADEON_RB3D_CNTL, dst_format);
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_blit.c | 306 uint32_t dst_format = 0; local 315 dst_format = RADEON_COLOR_FORMAT_ARGB8888; 318 dst_format = RADEON_COLOR_FORMAT_RGB565; 321 dst_format = RADEON_COLOR_FORMAT_ARGB4444; 324 dst_format = RADEON_COLOR_FORMAT_ARGB1555; 329 dst_format = RADEON_COLOR_FORMAT_RGB8; 348 OUT_BATCH_REGVAL(RADEON_RB3D_CNTL, dst_format);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_surface.c | 158 enum pipe_format src_format, dst_format; local 170 dst_format = dst->format; 186 assert(util_format_get_blocksize(dst_format) == util_format_get_blocksize(src_format)); 187 assert(util_format_get_blockwidth(dst_format) == util_format_get_blockwidth(src_format)); 188 assert(util_format_get_blockheight(dst_format) == util_format_get_blockheight(src_format)); 201 dst_format,
|
u_blit.c | 400 enum pipe_format dst_format) 402 if (src_format == dst_format) { 409 util_format_description(dst_format); 439 enum pipe_format src_format, dst_format; local 467 dst_format = util_format_linear(dst->texture->format); 484 if (formats_compatible(src_format, dst_format) && 527 if (dst_format == dst->format) { 531 templ.format = dst_format; 649 assert(screen->is_format_supported(screen, dst_format, ctx->internal_target,
|
u_format.c | 532 util_format_translate(enum pipe_format dst_format, 548 dst_format_desc = util_format_description(dst_format); 556 util_copy_rect(dst, dst_format, dst_stride, dst_x, dst_y,
|
u_format_s3tc.h | 54 enum util_format_dxtn dst_format,
|
/hardware/qcom/camera/QCamera2/stack/mm-lib2d-interface/inc/ |
mm_lib2d.h | 146 * Description: Initialization function for Lib2D. src_format, dst_format 152 * dst_format - Destination surface format 165 cam_format_t dst_format, void **lib2d_obj_handle);
|
/hardware/qcom/camera/msmcobalt/QCamera2/stack/mm-lib2d-interface/inc/ |
mm_lib2d.h | 145 * Description: Initialization function for Lib2D. src_format, dst_format 151 * dst_format - Destination surface format 164 cam_format_t dst_format, void **lib2d_obj_handle);
|
/hardware/qcom/camera/QCamera2/stack/mm-lib2d-interface/src/ |
mm_lib2d.c | 262 * Description: Initialization function for Lib2D. src_format, dst_format 268 * dst_format - Destination surface format 281 cam_format_t dst_format, void **my_obj) 292 // validate src_format, dst_format to check whether we support these. 295 (dst_format != CAM_FORMAT_8888_ARGB)) { 297 src_format, dst_format); 380 (void *)&dst_format);
|
/hardware/qcom/camera/msmcobalt/QCamera2/stack/mm-lib2d-interface/src/ |
mm_lib2d.c | 265 * Description: Initialization function for Lib2D. src_format, dst_format 271 * dst_format - Destination surface format 285 cam_format_t dst_format, void **my_obj) 296 // validate src_format, dst_format to check whether we support these. 299 (dst_format != CAM_FORMAT_8888_ARGB)) { 301 src_format, dst_format); 384 (void *)&dst_format);
|
/external/pdfium/core/src/fxge/dib/ |
fx_dib_convert.cpp | 642 FX_BOOL _ConvertBuffer_1bppMask2Rgb(FXDIB_Format dst_format, 650 int comps = (dst_format & 0xff) / 8; 672 FX_BOOL _ConvertBuffer_8bppMask2Rgb(FXDIB_Format dst_format, 680 int comps = (dst_format & 0xff) / 8; 695 FX_BOOL _ConvertBuffer_1bppPlt2Rgb(FXDIB_Format dst_format, 704 int comps = (dst_format & 0xff) / 8; 754 FX_BOOL _ConvertBuffer_8bppPlt2Rgb(FXDIB_Format dst_format, 763 int comps = (dst_format & 0xff) / 8; [all...] |
/external/mesa3d/src/gallium/drivers/nv50/ |
nv50_tex.c | 221 BEGIN_NV04(push, NV50_2D(DST_FORMAT), 2);
|
nv50_transfer.c | 163 BEGIN_NV04(push, NV50_2D(DST_FORMAT), 2);
|
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/ |
SDL_audio.h | 201 SDL_AudioFormat dst_format; /**< Target audio format */ member in struct:SDL_AudioCVT 440 SDL_AudioFormat dst_format,
|
SDL_surface.h | 372 Uint32 dst_format,
|
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/ |
SDL_audio.h | 201 SDL_AudioFormat dst_format; /**< Target audio format */ member in struct:SDL_AudioCVT 440 SDL_AudioFormat dst_format,
|
SDL_surface.h | 372 Uint32 dst_format,
|
/prebuilts/misc/windows/sdl2/include/ |
SDL_audio.h | 201 SDL_AudioFormat dst_format; /**< Target audio format */ member in struct:SDL_AudioCVT 440 SDL_AudioFormat dst_format,
|
SDL_surface.h | 372 Uint32 dst_format,
|
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/ |
SDL_audio.h | 201 SDL_AudioFormat dst_format; /**< Target audio format */ member in struct:SDL_AudioCVT 440 SDL_AudioFormat dst_format,
|
/hardware/intel/img/psb_video/src/ |
psb_output.c | 200 VAImageFormat *dst_format, 205 if (NULL == src_format || dst_format == NULL) { 211 if (dst_format[i].fourcc == src_format->fourcc) 212 return &dst_format[i]; [all...] |