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

1 2 3 4 5 6 7 8 9

  /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);
testplan.txt 11 - Query Entrypoints for all profiles
15 - Get Config attributes for all profiles / entrypoints
  /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
  /art/runtime/gc/
allocator_type.h 25 kAllocatorTypeBumpPointer, // Use BumpPointer allocator, has entrypoints.
26 kAllocatorTypeTLAB, // Use TLAB allocator, has entrypoints.
27 kAllocatorTypeRosAlloc, // Use RosAlloc allocator, has entrypoints.
28 kAllocatorTypeDlMalloc, // Use dlmalloc allocator, has entrypoints.
29 kAllocatorTypeNonMoving, // Special allocator for non moving objects, doesn't have entrypoints.
30 kAllocatorTypeLOS, // Large object space, also doesn't have entrypoints.
  /art/runtime/arch/x86_64/
entrypoints_init_x86_64.cc 17 #include "entrypoints/interpreter/interpreter_entrypoints.h"
18 #include "entrypoints/jni/jni_entrypoints.h"
19 #include "entrypoints/portable/portable_entrypoints.h"
20 #include "entrypoints/quick/quick_alloc_entrypoints.h"
21 #include "entrypoints/quick/quick_entrypoints.h"
22 #include "entrypoints/entrypoint_utils.h"
23 #include "entrypoints/math_entrypoints.h"
27 // Interpreter entrypoints.
35 // Portable entrypoints.
39 // Cast entrypoints
    [all...]
  /art/runtime/arch/arm64/
entrypoints_init_arm64.cc 17 #include "entrypoints/interpreter/interpreter_entrypoints.h"
18 #include "entrypoints/jni/jni_entrypoints.h"
19 #include "entrypoints/portable/portable_entrypoints.h"
20 #include "entrypoints/quick/quick_entrypoints.h"
21 #include "entrypoints/entrypoint_utils.h"
22 #include "entrypoints/math_entrypoints.h"
26 // Interpreter entrypoints.
34 // Portable entrypoints.
38 // Cast entrypoints.
43 // DexCache entrypoints
    [all...]
  /art/runtime/arch/x86/
entrypoints_init_x86.cc 17 #include "entrypoints/interpreter/interpreter_entrypoints.h"
18 #include "entrypoints/jni/jni_entrypoints.h"
19 #include "entrypoints/portable/portable_entrypoints.h"
20 #include "entrypoints/quick/quick_alloc_entrypoints.h"
21 #include "entrypoints/quick/quick_entrypoints.h"
22 #include "entrypoints/entrypoint_utils.h"
26 // Interpreter entrypoints.
34 // Portable entrypoints.
38 // Cast entrypoints.
43 // DexCache entrypoints
    [all...]
  /art/runtime/arch/arm/
entrypoints_init_arm.cc 17 #include "entrypoints/interpreter/interpreter_entrypoints.h"
18 #include "entrypoints/jni/jni_entrypoints.h"
19 #include "entrypoints/portable/portable_entrypoints.h"
20 #include "entrypoints/quick/quick_alloc_entrypoints.h"
21 #include "entrypoints/quick/quick_entrypoints.h"
22 #include "entrypoints/entrypoint_utils.h"
23 #include "entrypoints/math_entrypoints.h"
27 // Interpreter entrypoints.
35 // Portable entrypoints.
39 // Cast entrypoints
    [all...]
  /art/runtime/arch/mips/
entrypoints_init_mips.cc 17 #include "entrypoints/interpreter/interpreter_entrypoints.h"
18 #include "entrypoints/jni/jni_entrypoints.h"
19 #include "entrypoints/portable/portable_entrypoints.h"
20 #include "entrypoints/quick/quick_alloc_entrypoints.h"
21 #include "entrypoints/quick/quick_entrypoints.h"
22 #include "entrypoints/entrypoint_utils.h"
23 #include "entrypoints/math_entrypoints.h"
28 // Interpreter entrypoints.
36 // Portable entrypoints.
40 // Cast entrypoints
    [all...]
  /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();
  /external/chromium_org/mojo/examples/pepper_container_app/
plugin_module.h 39 struct EntryPoints {
40 EntryPoints();
52 EntryPoints entry_points_;
plugin_module.cc 34 PluginModule::EntryPoints::EntryPoints() : get_interface(NULL),
  /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...]
  /external/chromium_org/content/public/common/
pepper_plugin_info.h 28 struct EntryPoints {
30 CONTENT_EXPORT EntryPoints();
63 EntryPoints internal_entry_points;
pepper_plugin_info.cc 11 PepperPluginInfo::EntryPoints::EntryPoints()
  /art/runtime/entrypoints/quick/
quick_thread_entrypoints.cc 18 #include "entrypoints/entrypoint_utils-inl.h"
quick_alloc_entrypoints.h 34 // holding the runtime shutdown lock and the mutator lock when we update the 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/entrypoints/portable/
portable_lock_entrypoints.cc 17 #include "entrypoints/entrypoint_utils-inl.h"

Completed in 423 milliseconds

1 2 3 4 5 6 7 8 9