| /third_party/vk-gl-cts/android/cts/main/vk-master-2020-03-01/ |
| D | memory.txt | 1 dEQP-VK.memory.binding.priority.aliasing.suballocated.buffer_1048577 2 dEQP-VK.memory.binding.priority.aliasing.suballocated.buffer_257 3 dEQP-VK.memory.binding.priority.aliasing.suballocated.buffer_33 4 dEQP-VK.memory.binding.priority.aliasing.suballocated.buffer_4087 5 dEQP-VK.memory.binding.priority.aliasing.suballocated.buffer_8095 6 dEQP-VK.memory.binding.priority.aliasing.suballocated.image_257_257 7 dEQP-VK.memory.binding.priority.aliasing.suballocated.image_257_33 8 dEQP-VK.memory.binding.priority.aliasing.suballocated.image_257_8 9 dEQP-VK.memory.binding.priority.aliasing.suballocated.image_33_257 10 dEQP-VK.memory.binding.priority.aliasing.suballocated.image_33_33 [all …]
|
| /third_party/skia/third_party/externals/egl-registry/extensions/NV/ |
| D | EGL_NV_context_priority_realtime.txt | 47 priority level in addition to three priority levels that are part of 52 - Allow realtime priority to only few contexts 53 - Allow realtime priority only to trusted applications 54 - Make sure realtime priority contexts are executed immediately 59 priority level is platform dependent. 78 Add a NEW section "3.7.1.7 Context Priority" to specify the context 79 priority attribute for EGL_IMG_context_priority and values: 81 "3.7.1.7 Context Priority 84 priority hint for a context supporting context priority. This 91 multiple contexts at some priority levels and system policy may limit [all …]
|
| /third_party/EGL/extensions/NV/ |
| D | EGL_NV_context_priority_realtime.txt | 47 priority level in addition to three priority levels that are part of 52 - Allow realtime priority to only few contexts 53 - Allow realtime priority only to trusted applications 54 - Make sure realtime priority contexts are executed immediately 59 priority level is platform dependent. 78 Add a NEW section "3.7.1.7 Context Priority" to specify the context 79 priority attribute for EGL_IMG_context_priority and values: 81 "3.7.1.7 Context Priority 84 priority hint for a context supporting context priority. This 91 multiple contexts at some priority levels and system policy may limit [all …]
|
| /third_party/EGL/extensions/IMG/ |
| D | EGL_IMG_context_priority.txt | 41 This extension allows an EGLContext to be created with a priority 44 priority contexts available in the system, or system policy limits 45 access to high priority contexts to appropriate system privilege 46 level. A query is provided to find the real priority level assigned 95 EGL_CONTEXT_PRIORITY_LEVEL_IMG determines the priority level of 98 priority levels and system policy may limit access to high 99 priority contexts to appropriate system privilege level. The 114 Querying EGL_CONTEXT_PRIORITY_LEVEL_IMG returns the priority 118 created at a specific priority level in the system." 122 1) Should the context priority be treated as a hint or a requirement [all …]
|
| /third_party/skia/third_party/externals/egl-registry/extensions/IMG/ |
| D | EGL_IMG_context_priority.txt | 41 This extension allows an EGLContext to be created with a priority 44 priority contexts available in the system, or system policy limits 45 access to high priority contexts to appropriate system privilege 46 level. A query is provided to find the real priority level assigned 95 EGL_CONTEXT_PRIORITY_LEVEL_IMG determines the priority level of 98 priority levels and system policy may limit access to high 99 priority contexts to appropriate system privilege level. The 114 Querying EGL_CONTEXT_PRIORITY_LEVEL_IMG returns the priority 118 created at a specific priority level in the system." 122 1) Should the context priority be treated as a hint or a requirement [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_unlock/ |
| D | 3-1.c | 11 * on the lock, they shall acquire the lock in priority order when the lock 12 * becomes available. For equal priority threads, write locks shall take precedence 17 * main has the highest priority, writer1 and reader has same priority, writer2 has lowest 18 * priority. 20 * 1. Main thread set its shcedule policy as "SCHED_FIFO", with highest priority 23 * 3. Create a writer1 thread, with schedule policy as "SCHED_FIFO", and priority 25 * 4. Create reader thread, with same priority as writer1. The reader should also block. 26 * 5. Create a writer2 thread, with priority sched_get_priority_min(). It should block 78 int priority; in fn_rd() local 81 priority = (long)arg; in fn_rd() [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_rdlock/ |
| D | 2-1.c | 13 * higher or equal priority are blocked on the lock; 16 * In this case, we test "higher priority writer block" 21 * 1. Main thread set its shcedule policy as "SCHED_FIFO", with highest priority 24 * 3. Create a writer thread, with schedule policy as "SCHED_FIFO", and priority 28 * priority sched_get_priority_min() 29 * 6. Reader thread read lock 'rwlock', should block, since there is a higher priority 77 int priority; in fn_rd() local 80 priority = (long)arg; in fn_rd() 81 set_priority(pthread_self(), TRD_POLICY, priority); in fn_rd() 108 int priority; in fn_wr() local [all …]
|
| D | 2-3.c | 13 * higher or equal priority are blocked on the lock; 16 * In this case, reader has higher priority than the writer 21 * 1. Main thread set its shcedule policy as "SCHED_FIFO", with highest priority 24 * 3. Create a writer thread, with schedule policy as "SCHED_FIFO", and priority 28 * priority sched_get_priority_min()+1 29 * 6. Reader thread read lock 'rwlock', shouldn't block, since it has a higher priority 77 int priority; in fn_rd() local 80 priority = (int)(long)arg; in fn_rd() 81 set_priority(pthread_self(), TRD_POLICY, priority); in fn_rd() 108 int priority; in fn_wr() local [all …]
|
| D | 2-2.c | 13 * higher or equal priority are blocked on the lock; 16 * In this case, we test "equal priority writer block" 21 * 1. Main thread set its shcedule policy as "SCHED_FIFO", with highest priority 24 * 3. Create a writer thread, with schedule policy as "SCHED_FIFO", and priority 28 * priority sched_get_priority_min()+1 29 * 6. Reader thread read lock 'rwlock', should block, since there is an equal priority 77 int priority; in fn_rd() local 80 priority = (long)arg; in fn_rd() 81 set_priority(pthread_self(), TRD_POLICY, priority); in fn_rd() 108 int priority; in fn_wr() local [all …]
|
| /third_party/pulseaudio/src/modules/alsa/mixer/profile-sets/ |
| D | default.conf | 59 ; priority = ... 73 ; priority = ... # Numeric value to deduce priority for this profile 117 priority = 15 126 priority = 1 135 priority = 1 141 priority = 13 148 priority = 12 155 priority = 13 162 priority = 12 169 priority = 13 [all …]
|
| D | force-speaker.conf | 27 priority = 1 34 priority = 10 40 priority = 8 47 priority = 7 54 priority = 8 61 priority = 7 68 priority = 8 76 priority = 7 85 priority = 1 93 priority = 5 [all …]
|
| D | force-speaker-and-int-mic.conf | 28 priority = 1 35 priority = 10 41 priority = 8 48 priority = 7 55 priority = 8 62 priority = 7 69 priority = 8 77 priority = 7 86 priority = 1 94 priority = 5 [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_getprotocol/ |
| D | assertions.xml | 25 its priority and scheduling shall not be affected by its mutex ownership. 29 When a thread is blocking higher priority threads because of owning one or 31 execute at the higher of its priority or the priority of the highest priority 38 protocol, it shall execute at the higher of its priority or the highest of the 39 priority ceilings of all the mutexes owned by this thread and initialized with 49 priority in the event that its original priority is changed, such as by a call 53 queue at its priority in the event that its original priority is changed. 68 owner thread shall inherit the priority level of the calling thread as long as 70 priority to the maximum of its assigned priority and all its inherited priorities. 72 the same priority inheritance effect shall be propagated to this other owner
|
| /third_party/musl/libc-test/src/functionalext/supplement/misc/misc_gtest/ |
| D | misc_getpriority_test.cpp | 25 constexpr int PRIORITY = 10; variable 30 …* the priority PRIO of the current PRIO_PROCESS and ensure that the return value matches… 31 * priority. 36 int result1 = setpriority(PRIO_PROCESS, getpid(), PRIORITY); 39 EXPECT_EQ(result2, PRIORITY); 45 …* the priority PRIO of the current PRIO_PGRP and ensure that the return value matches th… 46 * priority. 51 int result1 = setpriority(PRIO_PGRP, getpgid(getpid()), PRIORITY); 54 EXPECT_EQ(result2, PRIORITY); 60 …* the priority PRIO of the current PRIO_USER and ensure that the return value matches th… [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/kernel/rl/ |
| D | priority_replay_buffer.cc | 63 // Set max priority for the newest item. in Push() 64 float priority = static_cast<float>(pow(max_priority_, alpha_)); in Push() local 65 priority_tree_->Insert(idx, {priority, priority}); in Push() 75 float priority = static_cast<float>(pow(priorities[i], alpha_)); in UpdatePriorities() local 76 if (priority <= 0.0f) { in UpdatePriorities() 77 MS_LOG(WARNING) << "The priority is " << priority << ". It may lead to converge issue."; in UpdatePriorities() 78 priority = kMinPriority; in UpdatePriorities() 80 priority_tree_->Insert(indices[i], {priority, priority}); in UpdatePriorities() 82 // Record max priority of transitions in UpdatePriorities() 107 float priority = priority_tree_->GetByIndex(idx).sum_priority; in Sample() local [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/ascend/kernel/aicpu/aicpu_ops/replay_buffer/ |
| D | priority_replay_buffer.cc | 61 // Set max priority for the newest item. in Push() 62 float priority = static_cast<float>(pow(max_priority_, alpha_)); in Push() local 63 priority_tree_->Insert(idx, {priority, priority}); in Push() 73 float priority = static_cast<float>(pow(priorities[i], alpha_)); in UpdatePriorities() local 74 if (priority <= 0.0f) { in UpdatePriorities() 75 AICPU_LOGW("The sum priority is %f. It may leads to converge issue."); in UpdatePriorities() 76 priority = std::numeric_limits<decltype(priority)>::epsilon(); in UpdatePriorities() 78 priority_tree_->Insert(indices[i], {priority, priority}); in UpdatePriorities() 80 // Record max priority of transitions in UpdatePriorities() 107 float priority = priority_tree_->GetByIndex(idx).sum_priority; in Sample() local [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/appendices/ |
| D | VK_KHR_global_priority.adoc | 22 priorities supported by a queue family, and then set a priority when 24 The default queue priority is ename:VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT. 26 Implementations can report which global priority levels are treated 29 platform-specific priority enforcement rules. 32 in favour of the higher-priority task. 33 Therefore, higher-priority work may retain similar latency and throughput 34 characteristics even if the system is congested with lower priority work. 36 The global priority level of a queue shall take precedence over the 37 per-process queue priority 42 Therefore, the driver implementation may deny requests to acquire a priority [all …]
|
| /third_party/grpc/src/core/load_balancing/priority/ |
| D | priority.cc | 74 // have switched to a higher-priority child). 78 // before starting to attempt the next priority. Overridable via channel arg. 81 // Config for priority LB policy. 117 // priority LB policy. 164 explicit Helper(RefCountedPtr<ChildPriority> priority) in Helper() argument 165 : priority_(std::move(priority)) {} in Helper() 237 // Returns the priority of the specified child name, or UINT32_MAX if 238 // the child is not in the current priority list. 245 // - If the child for a priority doesn't exist, creates it. 246 // - If a child's failover timer is pending, selects that priority [all …]
|
| /third_party/vk-gl-cts/framework/delibs/depool/ |
| D | dePoolHeap.c | 32 int priority; member 36 DE_INLINE HeapItem HeapItem_create (int priority, int value) in HeapItem_create() argument 39 h.priority = priority; in HeapItem_create() 46 if (a.priority < b.priority) in HeapItem_cmp() 48 if (a.priority > b.priority) in HeapItem_cmp() 70 DE_TEST_ASSERT(TestHeap_popMin(heap).priority == 0); in dePoolHeap_selfTest() 71 DE_TEST_ASSERT(TestHeap_popMin(heap).priority == 10); in dePoolHeap_selfTest() 72 DE_TEST_ASSERT(TestHeap_popMin(heap).priority == 20); in dePoolHeap_selfTest() 98 DE_TEST_ASSERT(h.priority == i); in dePoolHeap_selfTest() 99 DE_TEST_ASSERT(h.value == -h.priority); in dePoolHeap_selfTest() [all …]
|
| /third_party/libuv/test/ |
| D | test-process-priority.c | 27 int priority; in TEST_IMPL() local 45 set this specific priority. */ in TEST_IMPL() 50 ASSERT_OK(uv_os_getpriority(0, &priority)); in TEST_IMPL() 52 /* Verify that the priority values match on Unix, and are range mapped in TEST_IMPL() 55 ASSERT_EQ(priority, i); in TEST_IMPL() 60 ASSERT(priority == UV_PRIORITY_HIGHEST || priority == UV_PRIORITY_HIGH); in TEST_IMPL() 62 ASSERT_EQ(priority, UV_PRIORITY_HIGH); in TEST_IMPL() 64 ASSERT_EQ(priority, UV_PRIORITY_ABOVE_NORMAL); in TEST_IMPL() 66 ASSERT_EQ(priority, UV_PRIORITY_NORMAL); in TEST_IMPL() 68 ASSERT_EQ(priority, UV_PRIORITY_BELOW_NORMAL); in TEST_IMPL() [all …]
|
| D | test-thread-priority.c | 48 int priority; in TEST_IMPL() local 62 ASSERT_OK(uv_thread_getpriority(task_id, &priority)); in TEST_IMPL() 65 ASSERT_EQ(priority, THREAD_PRIORITY_NORMAL); in TEST_IMPL() 75 ASSERT(priority >= min && priority <= max); in TEST_IMPL() 79 ASSERT_OK(uv_thread_getpriority(task_id, &priority)); in TEST_IMPL() 82 ASSERT_EQ(priority, THREAD_PRIORITY_LOWEST); in TEST_IMPL() 84 ASSERT_EQ(priority, min); in TEST_IMPL() 91 ASSERT_OK(uv_thread_getpriority(pthread_self(), &priority)); in TEST_IMPL() 92 ASSERT_EQ(priority, 0); in TEST_IMPL() 94 ASSERT_OK(uv_thread_getpriority(pthread_self(), &priority)); in TEST_IMPL() [all …]
|
| /third_party/cups/man/ |
| D | mime.types.5 | 35 See the "TYPE MATCHING AND PRIORITY" section for more information. 54 \fBpriority(\fInumber\fB)\fR 55 Specifies the relative priority of this MIME media type. 56 The default priority is 100. 57 Larger values have higher priority while smaller values have lower priority. 82 .SS TYPE MATCHING AND PRIORITY 84 …pe chosen will depend on the type name and priority, with higher-priority types being used over lo… 85 If the types have the same priority, the type names are sorted alphanumerically in ascending order … 90 However, if "text/foo" also defines a higher priority than "text/bar", "text/foo" will be chosen in… 94 Define two MIME media types for raster data, with one being a subset with higher priority: [all …]
|
| /third_party/mesa3d/include/android_stub/android/ |
| D | log.h | 31 * - a priority 71 * Android log priority values, in increasing order of priority. 76 /** The default priority, for internal use only. */ 95 * Writes the constant string `text` to the log, with priority `prio` and tag 101 * Writes a formatted string to the log, with priority `prio` and tag `tag`. 166 * with priority `prio` and tag `tag`. 174 * with priority `prio` and tag `tag`. 195 int32_t priority; member 302 * Use the per-tag properties "log.tag.<tagname>" along with the minimum priority from 306 * If both a priority for a tag and a minimum priority are set by [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedprio/ |
| D | 1-1.c | 11 * policy and param, respectively. The priority value returned from 16 * its priority as a result of any priority inheritance or ceiling functions. 29 int policy, priority, policy_1; in a_thread_func() local 33 priority = sched_get_priority_min(policy); in a_thread_func() 34 sparam.sched_priority = priority; in a_thread_func() 46 printf("policy: %d, priority: %d\n", policy_1, sparam.sched_priority); in a_thread_func() 47 if (policy_1 != policy || sparam.sched_priority != priority) { in a_thread_func() 52 rc = pthread_setschedprio(pthread_self(), priority + 1); in a_thread_func() 63 printf("policy: %d, priority: %d\n", policy_1, sparam.sched_priority); in a_thread_func() 64 if (sparam.sched_priority != (priority + 1)) { in a_thread_func() [all …]
|
| /third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
| D | test_VIDIOC_PRIORITY.c | 33 int valid_priority(enum v4l2_priority priority) in valid_priority() argument 39 switch (priority) { in valid_priority() 52 static void do_set_priority(enum v4l2_priority priority) in do_set_priority() argument 58 dprintf("\t%s:%u: set priority to %i\n", __FILE__, __LINE__, priority); in do_set_priority() 59 ret_set = ioctl(get_video_fd(), VIDIOC_S_PRIORITY, &priority); in do_set_priority() 74 CU_ASSERT_EQUAL(new_priority, priority); in do_set_priority() 80 enum v4l2_priority priority) in do_set_invalid_priority() argument 86 dprintf("\t%s:%u: try to set priority to %i\n", __FILE__, __LINE__, in do_set_invalid_priority() 87 priority); in do_set_invalid_priority() 88 ret_set = ioctl(get_video_fd(), VIDIOC_S_PRIORITY, &priority); in do_set_invalid_priority() [all …]
|