HomeSort by relevance Sort by last modified time
    Searched refs:entrypoints (Results 1 - 25 of 34) 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/chromium_org/mojo/system/
entrypoints.h 13 namespace entrypoints { namespace in namespace:mojo::system
20 } // namespace entrypoints
entrypoints.cc 5 #include "mojo/system/entrypoints.h"
20 namespace entrypoints { namespace in namespace:mojo::system
30 } // namespace entrypoints
  /external/chromium_org/mojo/embedder/
test_embedder.cc 13 #include "mojo/system/entrypoints.h"
49 system::Core* core = system::entrypoints::GetCore();
51 system::entrypoints::SetCore(nullptr);
embedder.cc 15 #include "mojo/system/entrypoints.h"
103 system::entrypoints::SetCore(new system::Core(platform_support.Pass()));
117 system::Core* core = system::entrypoints::GetCore();
140 system::Core* core = system::entrypoints::GetCore();
205 system::Core* core = system::entrypoints::GetCore();
222 system::Core* core = system::entrypoints::GetCore();
  /art/runtime/
Android.mk 172 entrypoints/entrypoint_utils.cc \
173 entrypoints/interpreter/interpreter_entrypoints.cc \
174 entrypoints/jni/jni_entrypoints.cc \
175 entrypoints/math_entrypoints.cc \
176 entrypoints/portable/portable_alloc_entrypoints.cc \
177 entrypoints/portable/portable_cast_entrypoints.cc \
178 entrypoints/portable/portable_dexcache_entrypoints.cc \
179 entrypoints/portable/portable_field_entrypoints.cc \
180 entrypoints/portable/portable_fillarray_entrypoints.cc \
181 entrypoints/portable/portable_invoke_entrypoints.cc
    [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]));
  /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)
  /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...]
  /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...]
  /external/chromium_org/mojo/
mojo_system_impl.target.darwin-arm64.mk 43 mojo/system/entrypoints.cc \
mojo_system_impl.target.darwin-mips.mk 43 mojo/system/entrypoints.cc \
mojo_system_impl.target.darwin-mips64.mk 43 mojo/system/entrypoints.cc \
mojo_system_impl.target.darwin-x86.mk 43 mojo/system/entrypoints.cc \
mojo_system_impl.target.darwin-x86_64.mk 43 mojo/system/entrypoints.cc \
mojo_system_impl.target.linux-arm64.mk 43 mojo/system/entrypoints.cc \
mojo_system_impl.target.linux-mips.mk 43 mojo/system/entrypoints.cc \
mojo_system_impl.target.linux-mips64.mk 43 mojo/system/entrypoints.cc \
mojo_system_impl.target.linux-x86.mk 43 mojo/system/entrypoints.cc \
mojo_system_impl.target.linux-x86_64.mk 43 mojo/system/entrypoints.cc \

Completed in 486 milliseconds

1 2