HomeSort by relevance Sort by last modified time
    Searched refs:entrypoints (Results 1 - 25 of 27) 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/autotest/client/site_tests/hardware_VideoDecodeCapable/
hardware_VideoDecodeCapable.py 66 entrypoints = vaapi.query_entrypoints(display, profile)
67 logging.info('Entrypoints of profile %s: %s', profile, entrypoints)
68 self.assertTrue(VAEntrypointVLD in entrypoints,
  /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]));
  /art/runtime/
Android.mk 214 entrypoints/entrypoint_utils.cc \
215 entrypoints/jni/jni_entrypoints.cc \
216 entrypoints/math_entrypoints.cc \
217 entrypoints/quick/quick_alloc_entrypoints.cc \
218 entrypoints/quick/quick_cast_entrypoints.cc \
219 entrypoints/quick/quick_deoptimization_entrypoints.cc \
220 entrypoints/quick/quick_dexcache_entrypoints.cc \
221 entrypoints/quick/quick_field_entrypoints.cc \
222 entrypoints/quick/quick_fillarray_entrypoints.cc \
223 entrypoints/quick/quick_instrumentation_entrypoints.cc
    [all...]
  /external/selinux/policycoreutils/sepolicy/sepolicy/
__init__.py 378 entrypoints = []
380 entrypoints = map(lambda x: x['target'], filter(lambda x: x['source'] == setype, search([ALLOW], {'source': setype, 'permlist': ['entrypoint'], 'class': 'file'})))
383 return entrypoints
389 entrypoints = filter(lambda x: x['target'] == entrypoint, search([TRANSITION], {'source': "init_t", 'class': 'process'}))
390 if len(entrypoints) == 0:
392 return entrypoints[0]["transtype"]
400 entrypoints = filter(lambda x: x['transtype'] == transtype, search([TRANSITION], {'source': "init_t", 'class': 'process'}))
401 if len(entrypoints) == 0:
403 return entrypoints[0]["target"]
411 entrypoints = map(lambda x: x['transtype'], search([TRANSITION], {'source': "init_t", 'target': entrypoint, 'c (…)
    [all...]
manpage.py 898 entrypoints = map(lambda x: x['target'], sepolicy.search([sepolicy.ALLOW], {'source': self.type, 'permlist': ['entrypoint'], 'class': 'file'}))
903 .SH "ENTRYPOINTS"
905 if len(entrypoints) > 1:
906 entrypoints_str = "\\fB%s\\fP file types" % ", ".join(entrypoints)
908 entrypoints_str = "\\fB%s\\fP file type" % entrypoints[0]
915 if "bin_t" in entrypoints:
916 entrypoints.remove("bin_t")
921 for entrypoint in entrypoints:
    [all...]
gui.py     [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)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
dta.py 37 "entrypoints",
42 entrypoint_output = namedtuple("entrypoints", ["name",
254 data The dictionary of entrypoints.
274 Yield: tuple(source, target, transition, entrypoints,
280 entrypoints Generator which yields entrypoint-related rules.
446 # there are no valid entrypoints
509 entrypoints = set(edge.entrypoint)
510 entrypoints.intersection_update(self.exclude)
512 if not entrypoints:
518 for e in entrypoints
    [all...]
  /hardware/intel/common/utils/ISV/base/
isv_worker.cpp 75 VAEntrypoint * entrypoints = (VAEntrypoint *)malloc(num_entrypoints * sizeof(VAEntrypoint)); local
76 if (entrypoints == NULL) {
77 ALOGE("failed to malloc entrypoints array\n");
82 VAStatus vaStatus = vaQueryConfigEntrypoints(mVADisplay, VAProfileNone, entrypoints, &num_entrypoints);
88 support = entrypoints[i] == VAEntrypointVideoProc;
90 free(entrypoints);
91 entrypoints = NULL;
    [all...]
  /external/vulkan-validation-layers/loader/
loader.c 86 // all entrypoints on the instance chain need to be locked except GPA
534 loader_heap_free(inst, dev_ext_list->list->entrypoints[j]);
536 loader_heap_free(inst, dev_ext_list->list->entrypoints);
753 * Append one extension property defined in props with entrypoints
791 ext_list->list[idx].entrypoints =
794 if (ext_list->list[idx].entrypoints == NULL)
797 ext_list->list[idx].entrypoints[i] = loader_heap_alloc(
799 if (ext_list->list[idx].entrypoints[i] == NULL)
801 strcpy(ext_list->list[idx].entrypoints[i], entrys[i]);
2033 cJSON *entrypoints; local
    [all...]
loader.h 108 char **entrypoints; member in struct:loader_dev_ext_props
  /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);
560 /* Get maximum number of entrypoints supported by the implementation */
586 VAEntrypoint *entrypoints, /* out */
594 return ctx->vtable->vaQueryConfigEntrypoints ( ctx, profile, entrypoints, num_entrypoints);
    [all...]
  /art/build/
Android.gtest.mk 215 runtime/entrypoints/math_entrypoints_test.cc \
216 runtime/entrypoints/quick/quick_trampoline_entrypoints_test.cc \
  /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 1829 milliseconds

1 2