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

1 2

  /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)
  /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...]
  /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...]
  /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/selinux/python/sepolicy/sepolicy/
__init__.py 685 entrypoints = list(filter(lambda x: x['target'] == entrypoint, search([TRANSITION], {'source': "init_t", 'class': 'process'})))
686 return entrypoints[0]["transtype"]
697 entrypoints = []
701 entrypoints.append(i.target)
705 return entrypoints
712 entrypoints = {}
716 if transtype in entrypoints:
717 entrypoints[transtype].append(str(i.target))
719 entrypoints[transtype] = [str(i.target)]
723 return entrypoints
    [all...]
manpage.py 942 entrypoints = [x['target'] for x in filter(lambda y:
947 if len(entrypoints) == 0:
951 .SH "ENTRYPOINTS"
953 if len(entrypoints) > 1:
954 entrypoints_str = "\\fB%s\\fP file types" % ", ".join(entrypoints)
956 entrypoints_str = "\\fB%s\\fP file type" % entrypoints[0]
963 if "bin_t" in entrypoints:
964 entrypoints.remove("bin_t")
969 for entrypoint in 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)
  /system/sepolicy/tests/
treble_sepolicy_tests.py 52 self.entrypoints = []
64 print "\tentrypoints="+str(sctx.entrypoints)
114 # labeled as coredomain. Apps don't have entrypoints as they're always
140 alldomains[x.sctx].entrypoints.append(str(x.tctx))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
dta.py 37 "entrypoints",
42 entrypoint_output = namedtuple("entrypoints", ["name",
256 data The dictionary of entrypoints.
276 Yield: tuple(source, target, transition, entrypoints,
282 entrypoints Generator which yields entrypoint-related rules.
448 # there are no valid entrypoints
514 entrypoints = set(edge.entrypoint)
515 entrypoints.intersection_update(self.exclude)
517 if not entrypoints:
523 for e in entrypoints
    [all...]
  /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.c 91 // all entrypoints on the instance chain need to be locked except GPA
2611 cJSON *entrypoints = NULL; local
    [all...]
loader.h 103 char **entrypoints; member in struct:loader_dev_ext_props
  /external/vulkan-validation-layers/layers/
shader_validation.cpp 1477 spirv_inst_iter entrypoints[5]; local
    [all...]
  /hardware/intel/common/libva/test/encode/
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...]
avcenc.c 158 VAEntrypoint entrypoints[5]; local
168 vaQueryConfigEntrypoints(va_dpy, avcenc_context.profile, entrypoints,
172 if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice)
    [all...]
  /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/libva/test/videoprocess/
videoprocess.cpp 823 VAEntrypoint entrypoints[5]; local
828 entrypoints,
833 if (entrypoints[i] == VAEntrypointVideoProc)
    [all...]
  /hardware/intel/common/libva/va/
va.c 297 CHECK_MAXIMUM(vaStatus, ctx, entrypoints);
554 /* Get maximum number of entrypoints supported by the implementation */
580 VAEntrypoint *entrypoints, /* out */
588 return ctx->vtable->vaQueryConfigEntrypoints ( ctx, profile, entrypoints, num_entrypoints);
    [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...]

Completed in 620 milliseconds

1 2