/hardware/intel/common/libva/test/basic/ |
D | test_03.c | 38 int num_entrypoints; in test() local 50 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test() 52 …ueryConfigEntryPoints(%s) reports %d entrypoints\n", profile2string(profiles[i]), num_entrypoints); in test() 53 ASSERT(num_entrypoints <= max_entrypoints); in test() 54 ASSERT(num_entrypoints > 0); in test() 55 for(j = 0; j < num_entrypoints; j++) in test()
|
D | test_06.c | 55 int num_entrypoints; in pre() local 56 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in pre() 59 for(j = 0; j < num_entrypoints; j++) in pre() 81 int num_entrypoints; in test() local 83 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test() 85 for(j = 0; j < num_entrypoints; j++) in test()
|
D | test_05.c | 38 int num_entrypoints; in test() local 50 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test() 53 for(j = 0; j < num_entrypoints; j++) in test()
|
D | test_04.c | 47 int num_entrypoints; in test() local 60 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test() 63 for(j = 0; j < num_entrypoints; j++) in test()
|
D | test_09.c | 38 int num_entrypoints; in test() local 51 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints); in test() 54 for(j = 0; j < num_entrypoints; j++) in test()
|
D | test_vaSurfaceAttrib.c | 38 int num_entrypoints,slice_entrypoint; in test() local 57 …va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileH264Baseline, entrypoints, &num_entrypoints); in test() 60 for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) { in test() 64 if (slice_entrypoint == num_entrypoints) { in test()
|
/hardware/intel/common/libva/test/decode/ |
D | mpeg2vldemo.cpp | 142 int num_entrypoints,vld_entrypoint; in main() local 163 &num_entrypoints); in main() 166 for (vld_entrypoint = 0; vld_entrypoint < num_entrypoints; vld_entrypoint++) { in main() 170 if (vld_entrypoint == num_entrypoints) { in main()
|
D | tinyjpeg.c | 564 int num_entrypoints,vld_entrypoint; in tinyjpeg_decode() local 592 &num_entrypoints); in tinyjpeg_decode() 595 for (vld_entrypoint = 0; vld_entrypoint < num_entrypoints; vld_entrypoint++) { in tinyjpeg_decode() 599 if (vld_entrypoint == num_entrypoints) { in tinyjpeg_decode()
|
/hardware/intel/common/libva/test/transcode/ |
D | mpeg2transcode.cpp | 2003 int num_entrypoints,slice_entrypoint; in create_encode_pipe() local 2016 &num_entrypoints); in create_encode_pipe() 2018 for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) { in create_encode_pipe() 2023 if (slice_entrypoint == num_entrypoints) { in create_encode_pipe() 3093 int num_entrypoints, proc_entrypoint; in zoom_out_surface() local 3102 &num_entrypoints); in zoom_out_surface() 3105 for (proc_entrypoint = 0; proc_entrypoint < num_entrypoints; proc_entrypoint++) { in zoom_out_surface() 3110 if (proc_entrypoint == num_entrypoints) { in zoom_out_surface() 3293 int num_entrypoints,vld_entrypoint; in main() local 3326 &num_entrypoints); in main() [all …]
|
/hardware/intel/common/libva/test/videoprocess/ |
D | videoprocess.cpp | 824 int32_t num_entrypoints; in vpp_context_create() local 825 num_entrypoints = vaMaxNumEntrypoints(va_dpy); in vpp_context_create() 829 &num_entrypoints); in vpp_context_create() 832 for (i = 0; i < num_entrypoints; i++) { in vpp_context_create() 837 if (i == num_entrypoints) { in vpp_context_create()
|
/hardware/intel/common/utils/ISV/base/ |
D | isv_worker.cpp | 74 int num_entrypoints = vaMaxNumEntrypoints(mVADisplay); in isSupport() local 75 VAEntrypoint * entrypoints = (VAEntrypoint *)malloc(num_entrypoints * sizeof(VAEntrypoint)); in isSupport() 82 …atus vaStatus = vaQueryConfigEntrypoints(mVADisplay, VAProfileNone, entrypoints, &num_entrypoints); in isSupport() 87 for (int i = 0; !support && i < num_entrypoints; i++) { in isSupport()
|
/hardware/intel/common/libva/va/ |
D | va_backend.h | 68 int *num_entrypoints /* out */
|
D | va.c | 581 int *num_entrypoints /* out */ in vaQueryConfigEntrypoints() argument 588 return ctx->vtable->vaQueryConfigEntrypoints ( ctx, profile, entrypoints, num_entrypoints); in vaQueryConfigEntrypoints()
|
D | va.h | 888 int *num_entrypoints /* out */
|
/hardware/intel/common/libva/test/encode/ |
D | mpeg2enc.c | 823 int max_entrypoints, num_entrypoints, entrypoint; in mpeg2enc_alloc_va_resources() local 837 &num_entrypoints); in mpeg2enc_alloc_va_resources() 839 for (entrypoint = 0; entrypoint < num_entrypoints; entrypoint++) { in mpeg2enc_alloc_va_resources() 846 if (entrypoint == num_entrypoints) { in mpeg2enc_alloc_va_resources()
|
D | mpeg2vaenc.c | 823 int max_entrypoints, num_entrypoints, entrypoint; in mpeg2enc_alloc_va_resources() local 837 &num_entrypoints); in mpeg2enc_alloc_va_resources() 839 for (entrypoint = 0; entrypoint < num_entrypoints; entrypoint++) { in mpeg2enc_alloc_va_resources() 846 if (entrypoint == num_entrypoints) { in mpeg2enc_alloc_va_resources()
|
D | h264encode.c | 921 int num_entrypoints, slice_entrypoint; in init_va() local 931 num_entrypoints = vaMaxNumEntrypoints(va_dpy); in init_va() 932 entrypoints = malloc(num_entrypoints * sizeof(*entrypoints)); in init_va() 944 vaQueryConfigEntrypoints(va_dpy, h264_profile, entrypoints, &num_entrypoints); in init_va() 945 for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) { in init_va()
|
D | avcenc.c | 159 int num_entrypoints,slice_entrypoint; in create_encode_pipe() local 169 &num_entrypoints); in create_encode_pipe() 171 for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) { in create_encode_pipe() 176 if (slice_entrypoint == num_entrypoints) { in create_encode_pipe()
|
/hardware/intel/img/psb_video/src/ |
D | psb_drv_video.c | 205 int *num_entrypoints /* out */ in psb_QueryConfigEntrypoints() argument 215 CHECK_INVALID_PARAM((num_entrypoints == NULL) || (profile >= PSB_MAX_PROFILES)); in psb_QueryConfigEntrypoints() 240 *num_entrypoints = entrypoints; in psb_QueryConfigEntrypoints()
|