HomeSort by relevance Sort by last modified time
    Searched defs:entrypoints (Results 1 - 22 of 22) sorted by null

  /hardware/intel/common/libva/test/basic/
test_03.c 25 #define TEST_DESCRIPTION "Query entrypoints for all profiles"
44 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint)); local
45 ASSERT(entrypoints);
49 memset(entrypoints, 0xff, max_entrypoints * sizeof(VAEntrypoint));
50 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints);
52 status("vaQueryConfigEntryPoints(%s) reports %d entrypoints\n", profile2string(profiles[i]), num_entrypoints);
57 status(" entrypoint %d [%s]\n", entrypoints[j], entrypoint2string(entrypoints[j]));
61 free(entrypoints);
test_04.c 25 #define TEST_DESCRIPTION "Get config attributes for all profiles / entrypoints"
52 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint)); local
53 ASSERT(entrypoints);
60 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints);
66 status("vaGetConfigAttributes for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[j]));
67 va_status = vaGetConfigAttributes(va_dpy, profiles[i], entrypoints[j], attrib_list, num_attribs);
78 free(entrypoints);
test_05.c 25 #define TEST_DESCRIPTION "Create/destroy configs for all profiles / entrypoints"
43 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint)); local
44 ASSERT(entrypoints);
50 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints);
55 status("vaCreateConfig for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[j]));
56 va_status = vaCreateConfig(va_dpy, profiles[i], entrypoints[j], NULL, 0, &(configs[config_count]));
71 free(entrypoints);
test_06.c 30 VAEntrypoint *entrypoints; variable
46 entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint));
47 ASSERT(entrypoints);
56 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints);
61 va_status = vaCreateConfig(va_dpy, profiles[i], entrypoints[j], NULL, 0, &(configs[config_count]));
83 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints);
91 status("Checking vaQueryConfigAttributes for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[j]));
98 ASSERT( entrypoint == entrypoints[j] );
121 free(entrypoints);
test_09.c 25 #define TEST_DESCRIPTION "Create/destroy contexts for all profiles / entrypoints"
43 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint)); local
44 ASSERT(entrypoints);
51 va_status = vaQueryConfigEntrypoints(va_dpy, profiles[i], entrypoints, &num_entrypoints);
56 status("vaCreateConfig for %s, %s\n", profile2string(profiles[i]), entrypoint2string(entrypoints[j]));
57 va_status = vaCreateConfig(va_dpy, profiles[i], entrypoints[j], NULL, 0, &(configs[config_count]));
103 free(entrypoints);
test_vaSurfaceAttrib.c 37 VAEntrypoint entrypoints[5]; local
57 va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileH264Baseline, entrypoints, &num_entrypoints);
61 if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice)
  /hardware/intel/common/libva/test/vainfo/
vainfo.c 94 VAEntrypoint entrypoint, entrypoints[10]; local
119 printf("%s: Supported profile and entrypoints\n", name);
136 va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints,
145 printf(" %-32s: %s\n", profile_str, entrypoint_string(entrypoints[entrypoint]));
  /external/mesa3d/src/amd/vulkan/
radv_entrypoints_gen.py 68 entrypoints = []
80 entrypoints.append((type, shortname, params, i, hash(fullname), guard))
81 return entrypoints
89 entrypoints = extension.findall('./require/command')
90 for entrypoint in entrypoints:
96 entrypoints = get_entrypoints(doc, get_entrypoints_defines(doc)) variable
98 # For outputting entrypoints.h we generate a radv_EntryPoint() prototype
106 print " void *entrypoints[%d];" % len(entrypoints)
109 for type, name, args, num, h, guard in entrypoints
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_entrypoints_gen.py 68 entrypoints = []
80 entrypoints.append((type, shortname, params, i, hash(fullname), guard))
81 return entrypoints
89 entrypoints = extension.findall('./require/command')
90 for entrypoint in entrypoints:
96 entrypoints = get_entrypoints(doc, get_entrypoints_defines(doc)) variable
100 entrypoints.append(('VkResult', 'CreateDmaBufImageINTEL',
105 'VkImage* pImage', len(entrypoints),
108 # For outputting entrypoints.h we generate a anv_EntryPoint() prototype
116 print " void *entrypoints[%d];" % len(entrypoints
    [all...]
  /hardware/intel/common/libva/test/decode/
mpeg2vldemo.cpp 141 VAEntrypoint entrypoints[5]; local
162 va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileMPEG2Main, entrypoints,
167 if (entrypoints[vld_entrypoint] == VAEntrypointVLD)
tinyjpeg.c 563 VAEntrypoint entrypoints[5]; local
591 va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileJPEGBaseline, entrypoints,
596 if (entrypoints[vld_entrypoint] == VAEntrypointVLD)
  /external/libvncserver/libvncclient/
h264.c 219 VAEntrypoint entrypoints[5]; local
224 va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints, &num_entrypoints);
228 if (entrypoints[i] == VAEntrypointVLD) {
  /hardware/intel/common/utils/ISV/base/
isv_worker.cpp 77 VAEntrypoint * entrypoints = (VAEntrypoint *)malloc(num_entrypoints * sizeof(VAEntrypoint)); local
78 if (entrypoints == NULL) {
79 ALOGE("failed to malloc entrypoints array\n");
84 VAStatus vaStatus = vaQueryConfigEntrypoints(mVADisplay, VAProfileNone, entrypoints, &num_entrypoints);
90 support = entrypoints[i] == VAEntrypointVideoProc;
92 free(entrypoints);
93 entrypoints = NULL;
    [all...]
  /external/vulkan-validation-layers/loader/
loader.h 103 char **entrypoints; member in struct:loader_dev_ext_props
loader.c 91 // all entrypoints on the instance chain need to be locked except GPA
2611 cJSON *entrypoints = NULL; local
    [all...]
  /hardware/intel/common/libva/test/videoprocess/
videoprocess.cpp 823 VAEntrypoint entrypoints[5]; local
828 entrypoints,
833 if (entrypoints[i] == VAEntrypointVideoProc)
    [all...]
  /hardware/intel/img/psb_video/src/
psb_drv_video.c 211 int entrypoints = 0; local
222 entrypoints++;
228 entrypoints++;
234 ASSERT(entrypoints <= PSB_MAX_ENTRYPOINTS);
236 if (0 == entrypoints) {
240 *num_entrypoints = entrypoints;
    [all...]
  /external/vulkan-validation-layers/layers/
shader_validation.cpp 1477 spirv_inst_iter entrypoints[5]; local
    [all...]
  /hardware/intel/common/libva/test/encode/
avcenc.c 158 VAEntrypoint entrypoints[5]; local
168 vaQueryConfigEntrypoints(va_dpy, avcenc_context.profile, entrypoints,
172 if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice)
    [all...]
h264encode.c 920 VAEntrypoint *entrypoints; local
932 entrypoints = malloc(num_entrypoints * sizeof(*entrypoints));
933 if (!entrypoints) {
934 fprintf(stderr, "error: failed to initialize VA entrypoints array\n");
944 vaQueryConfigEntrypoints(va_dpy, h264_profile, entrypoints, &num_entrypoints);
946 if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice) {
    [all...]
  /hardware/intel/common/libva/test/transcode/
mpeg2transcode.cpp 2002 VAEntrypoint entrypoints[5]; local
3085 VAEntrypoint entrypoints[5]; local
3292 VAEntrypoint entrypoints[5]; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
core_validation.cpp 2864 spirv_inst_iter entrypoints[5]; local
    [all...]

Completed in 247 milliseconds