Searched refs:priority (Results 1 - 25 of 536) sorted by relevance

1234567891011>>

/external/clang/test/OpenMP/
H A Dtask_priority_messages.cpp14 #pragma omp task priority // expected-error {{expected '(' after 'priority'}}
15 #pragma omp task priority ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
16 #pragma omp task priority () // expected-error {{expected expression}}
17 #pragma omp task priority (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp task priority (argc)) // expected-warning {{extra tokens at the end of '#pragma omp task' are ignored}}
19 #pragma omp task priority (argc > 0 ? argv[1][0] : argv[2][argc])
20 #pragma omp task priority (foobool(argc)), priority (true) // expected-error {{directive '#pragma omp task' cannot contain more than one 'priority' claus
[all...]
H A Dtaskloop_priority_messages.cpp14 #pragma omp taskloop priority // expected-error {{expected '(' after 'priority'}}
17 #pragma omp taskloop priority ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp taskloop priority () // expected-error {{expected expression}}
23 #pragma omp taskloop priority (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
26 #pragma omp taskloop priority (argc)) // expected-warning {{extra tokens at the end of '#pragma omp taskloop' are ignored}}
29 #pragma omp taskloop priority (argc > 0 ? argv[1][0] : argv[2][argc])
32 #pragma omp taskloop priority (foobool(argc)), priority (true) // expected-error {{directive '#pragma omp taskloop' cannot contain more than one 'priority' claus
[all...]
H A Dtaskloop_simd_priority_messages.cpp14 #pragma omp taskloop simd priority // expected-error {{expected '(' after 'priority'}}
17 #pragma omp taskloop simd priority ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp taskloop simd priority () // expected-error {{expected expression}}
23 #pragma omp taskloop simd priority (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
26 #pragma omp taskloop simd priority (argc)) // expected-warning {{extra tokens at the end of '#pragma omp taskloop simd' are ignored}}
29 #pragma omp taskloop simd priority (argc > 0 ? argv[1][0] : argv[2][argc])
32 #pragma omp taskloop simd priority (foobool(argc)), priority (true) // expected-error {{directive '#pragma omp taskloop simd' cannot contain more than one 'priority' claus
[all...]
/external/testng/src/test/java/test/priority/
H A DPriority2SampleTest.java1 package test.priority;
6 @Test(priority = 1)
10 @Test(priority = 2)
14 @Test(priority = 3)
H A DWithPrioritySample2Test.java1 package test.priority;
7 @Test(priority = -2)
12 @Test(priority = -3)
H A DWithPrioritySampleTest.java1 package test.priority;
7 @Test(priority = -2)
12 @Test(priority = -1)
H A DWithoutPrioritySampleTest.java1 package test.priority;
/external/toybox/toys/posix/
H A Dnice.c15 Run a command line at an increased or decreased scheduling priority.
18 priority) to 19 (lowest). By default processes inherit their parent's
20 priority. Only root can set a negative niceness level.
27 long priority;
32 if (!toys.optflags) TT.priority = 10;
35 if (nice(TT.priority)==-1 && errno) perror_exit("Can't set priority");
/external/clang/test/Index/
H A Dcomplete-type-factors.m15 enum Priority test1(enum Priority priority, enum Color color, int integer) {
18 return priority;
26 + (void)method:(enum Color)color priority:(enum Priority)priority;
27 - (void)method:(enum Color)color priority:(enum Priority)priority;
31 [a method:Red priority:High];
32 [A method:Red priority:Low];
45 // CHECK-CC1: ParmDecl:{ResultType enum Priority}{TypedText priority} (17)
48 // CHECK-CC1: FunctionDecl:{ResultType enum Priority}{TypedText test1}{LeftParen (}{Placeholder enum Priority priority}{Comm
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_CLASSIFY.h7 __u32 priority; member in struct:xt_classify_target_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CLASSIFY.h7 __u32 priority; member in struct:xt_classify_target_info
/external/libchrome/base/threading/
H A Dplatform_thread_internal_posix.cc14 int ThreadPriorityToNiceValue(ThreadPriority priority) { argument
16 if (pair.priority == priority)
24 // Try to find a priority that best describes |nice_value|. If there isn't
25 // an exact match, this method returns the closest priority whose nice value
26 // is higher (lower priority) than |nice_value|.
29 return pair.priority;
33 // priorities. The lowest priority is suitable in this case.
H A Dplatform_thread_internal_posix.h16 ThreadPriority priority; member in struct:base::internal::ThreadPriorityToNiceValuePair
19 // The elements must be listed in the order of increasing priority (lowest
20 // priority first), that is, in the order of decreasing nice values (highest
25 // Returns the nice value matching |priority| based on the platform-specific
27 int ThreadPriorityToNiceValue(ThreadPriority priority);
35 // implementation handled this |priority| change, false if the generic
37 bool SetCurrentThreadPriorityForPlatform(ThreadPriority priority);
40 // current thread (and returns the actual ThreadPriority via |priority|).
41 // Returns false otherwise, leaving |priority| untouched.
42 bool GetCurrentThreadPriorityForPlatform(ThreadPriority* priority);
[all...]
/external/droiddriver/src/io/appium/droiddriver/util/
H A DLogs.java32 public static void call(int priority, Object self, String method, Object... args) { argument
33 if (Log.isLoggable(TAG, priority)) {
41 public static void log(int priority, String msg) { argument
42 if (Log.isLoggable(TAG, priority)) {
43 Log.println(priority, TAG, msg);
47 public static void log(int priority, Throwable e) { argument
48 if (Log.isLoggable(TAG, priority)) {
49 Log.println(priority, TAG, Log.getStackTraceString(e));
53 public static void log(int priority, Throwable e, String msg) { argument
54 if (Log.isLoggable(TAG, priority)) {
59 logfmt(int priority, String format, Object... args) argument
65 logfmt(int priority, Throwable e, String format, Object... args) argument
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/
H A DPriority.java4 * Priorities for completing loads. If more than one load is queued at a time, the load with the higher priority will be
12 LOW, priority, enum constant in enum:Priority
/external/deqp/framework/delibs/depool/
H A DdePoolHeap.c32 int priority; member in struct:HeapItem_s
36 DE_INLINE HeapItem HeapItem_create (int priority, int value) argument
39 h.priority = priority;
46 if (a.priority < b.priority)
48 if (a.priority > b.priority)
70 DE_TEST_ASSERT(TestHeap_popMin(heap).priority == 0);
71 DE_TEST_ASSERT(TestHeap_popMin(heap).priority
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPriorityParser.java48 * @param priority the header to parse
50 public PriorityParser(String priority) { argument
51 super(priority);
71 Priority priority = new Priority();
75 priority.setHeaderName(SIPHeaderNames.PRIORITY);
81 priority.setPriority(token.getTokenValue());
85 priority.setPriority(this.lexer.ttokenSafe());
90 return priority;
/external/dng_sdk/source/
H A Ddng_abort_sniffer.cpp41 void Increment (dng_priority priority);
43 void Decrement (dng_priority priority);
45 void Wait (dng_priority priority);
94 void dng_priority_manager::Increment (dng_priority priority) argument
99 fCounter [priority] += 1;
105 void dng_priority_manager::Decrement (dng_priority priority) argument
112 fCounter [priority] -= 1;
127 void dng_priority_manager::Wait (dng_priority priority) argument
130 if (priority < dng_priority_maximum)
135 while (priority < MinPriorit
156 dng_set_minimum_priority(dng_priority priority) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dwpamsg.h18 : msg(_msg), priority(_priority)
24 int getPriority() const { return priority; }
29 int priority; member in class:WpaMsg
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DPriority.java65 /** priority field
67 protected String priority; field in class:Priority
80 return priority;
84 * get the priority value.
88 return priority;
92 * Set the priority member
99 + "Priority, setPriority(), the priority parameter is null");
100 priority = p;
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getschedparam/
H A D1-1.c31 int verify_param(pthread_attr_t * attr, int priority) argument
41 if (priority != param.sched_priority) {
53 int priority; local
66 priority = sched_get_priority_max(FIFOPOLICY);
67 if (priority == -1) {
71 param.sched_priority = priority;
77 verify_param(&attr, priority);
84 priority = sched_get_priority_max(RRPOLICY);
85 if (priority == -1) {
89 param.sched_priority = priority;
[all...]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_unlock/
H A D3-1.c11 * 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
79 int priority; local
83 set_priority(pthread_self(), TRD_POLICY, priority); local
114 int priority; local
118 set_priority(pthread_self(), TRD_POLICY, priority); local
151 int priority; local
155 set_priority(pthread_self(), TRD_POLICY, priority); local
193 int priority; local
197 set_priority(pthread_self(), TRD_POLICY, priority); local
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dif_eql.h45 long priority; member in struct:slave_config
50 long priority; member in struct:slaving_request
/external/libchrome/base/task_scheduler/
H A Dsequence_sort_key.cc10 SequenceSortKey::SequenceSortKey(TaskPriority priority, argument
12 : priority_(priority),
17 // lower priority or if it has the same priority but its next task was posted
/external/toybox/toys/other/
H A Dswapon.c11 usage: swapon [-d] [-p priority] filename
22 long priority;
31 flags |= SWAP_FLAG_PREFER | (TT.priority << SWAP_FLAG_PRIO_SHIFT);

Completed in 736 milliseconds

1234567891011>>