HomeSort by relevance Sort by last modified time
    Searched refs:entrypoints (Results 1 - 25 of 31) 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"
17 namespace entrypoints { namespace in namespace:mojo::system
27 } // namespace entrypoints
  /external/chromium_org/mojo/embedder/
test_embedder.cc 10 #include "mojo/system/entrypoints.h"
42 system::Core* core = system::entrypoints::GetCore();
44 system::entrypoints::SetCore(NULL);
embedder.cc 13 #include "mojo/system/entrypoints.h"
97 system::entrypoints::SetCore(new system::Core());
111 system::Core* core = system::entrypoints::GetCore();
146 system::Core* core = system::entrypoints::GetCore();
163 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)
tinyjpeg.c 563 VAEntrypoint entrypoints[5]; local
591 va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileJPEGBaseline, entrypoints,
596 if (entrypoints[vld_entrypoint] == VAEntrypointVLD)
  /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...]
  /art/build/
Android.gtest.mk 91 runtime/entrypoints/math_entrypoints_test.cc \
92 runtime/entrypoints/quick/quick_trampoline_entrypoints_test.cc \
  /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...]
  /external/chromium_org/mojo/
mojo_system_impl.target.darwin-arm.mk 40 mojo/system/entrypoints.cc \
mojo_system_impl.target.darwin-arm64.mk 40 mojo/system/entrypoints.cc \
mojo_system_impl.target.darwin-mips.mk 40 mojo/system/entrypoints.cc \
mojo_system_impl.target.darwin-x86.mk 40 mojo/system/entrypoints.cc \
mojo_system_impl.target.darwin-x86_64.mk 40 mojo/system/entrypoints.cc \
mojo_system_impl.target.linux-arm.mk 40 mojo/system/entrypoints.cc \
mojo_system_impl.target.linux-arm64.mk 40 mojo/system/entrypoints.cc \

Completed in 2928 milliseconds

1 2