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

1234

/haiku-buildtools/legacy/binutils/opcodes/
H A Dia64-asmtab.h144 /* The disassembly priority of this entry among instructions. */
145 unsigned short priority; member in struct:ia64_dis_names
/haiku-buildtools/binutils/opcodes/
H A Dia64-asmtab.h144 /* The disassembly priority of this entry among instructions. */
145 unsigned short priority; member in struct:ia64_dis_names
/haiku-buildtools/gcc/gcc/fortran/
H A Dbbt.c109 if (t->priority < t->left->priority)
115 if (t->priority < t->right->priority)
136 n->priority = pseudo_random ();
150 if (t->left->priority > t->right->priority)
/haiku-buildtools/gcc/gcc/config/
H A Dvxworks.h101 extern void vxworks_asm_out_constructor (rtx symbol, int priority);
102 extern void vxworks_asm_out_destructor (rtx symbol, int priority);
H A Dvxworks.c49 vxworks_asm_out_constructor (rtx symbol, int priority) argument
53 sec = get_cdtor_priority_section (priority,
61 vxworks_asm_out_destructor (rtx symbol, int priority) argument
65 sec = get_cdtor_priority_section (priority,
/haiku-buildtools/legacy/gcc/libchill/
H A Ddelaycase.c47 * priority specified priority
66 __delay_event (ev_got, nevents, evptrs, priority, to, insloc, filename, lineno)
70 int priority;
144 wrk->priority = priority;
149 while (ev->forward != 0 && ev->priority >= priority)
H A Drts.h86 int priority; /* prio for DELAY or DELAY CASE */ member in struct:EVENTQUEUE
120 int priority; member in struct:BUFFER_SEND_QUEUE
H A Dcontinue.c86 __continue_that (ev->this, ev->priority, filename, lineno);
H A Dprintevent.c93 printf ("Priority %d", ev->priority);
H A Dsendbuffer.c44 * prio priority for send action
136 bsq_entry->priority = prio;
146 while (bsq != 0 && bsq->priority >= prio)
H A Dprintbuffer.c104 printf ("Priority %d", bsq->priority);
H A Dwaitbuffer.c100 if (bq->sendqueue->priority > bsq->sendqueue->priority)
138 __continue_that (tmp->this, tmp->priority, filename, lineno);
161 __continue_that (bsq->this, bsq->priority, filename, lineno);
/haiku-buildtools/legacy/gcc/libobjc/objc/
H A Dthr.h94 int objc_thread_set_priority(int priority);
135 int __objc_thread_set_priority(int priority);
/haiku-buildtools/legacy/gcc/libobjc/
H A Dthr-single.c61 /* Set the current thread's priority. */
63 __objc_thread_set_priority(int priority) argument
69 /* Return the current thread's priority. */
H A Dthr-vxworks.c61 /* Set the current thread's priority. */
63 __objc_thread_set_priority(int priority) argument
69 /* Return the current thread's priority. */
H A Dthr-dce.c76 /* Set the current thread's priority. */
78 __objc_thread_set_priority(int priority) argument
82 switch (priority)
96 /* Change the priority. */
104 /* Return the current thread's priority. */
H A Dthr-decosf1.c76 /* Set the current thread's priority. */
78 __objc_thread_set_priority(int priority) argument
82 switch (priority)
96 /* Change the priority. */
104 /* Return the current thread's priority. */
H A Dthr-os2.c77 /* Set the current thread's priority. */
79 __objc_thread_set_priority(int priority) argument
88 switch (priority) {
104 /* Change priority */
111 /* Return the current thread's priority. */
H A Dthr-solaris.c77 /* Set the current thread's priority. */
79 __objc_thread_set_priority(int priority) argument
83 switch (priority)
97 /* Change priority */
104 /* Return the current thread's priority. */
119 /* Couldn't get priority. */
H A Dthr-win32.c76 /* Set the current thread's priority. */
78 __objc_thread_set_priority(int priority) argument
82 switch (priority)
96 /* Change priority */
103 /* Return the current thread's priority. */
128 /* Couldn't get priority. */
H A Dthr-irix.c88 /* Set the current thread's priority. */
90 __objc_thread_set_priority(int priority) argument
96 /* Return the current thread's priority. */
H A Dthr-mach.c35 Obtain the maximum thread priority that can set for t. Under the
37 maximum priority downward only-- cannot be raised without superuser
104 /* Set the current thread's priority. */
106 __objc_thread_set_priority(int priority) argument
116 switch (priority)
134 /* Change the priority */
141 /* Return the current thread's priority. */
H A Dthr.c169 /* Set the current thread's priority. */
171 objc_thread_set_priority(int priority) argument
174 return __objc_thread_set_priority(priority);
177 /* Return the current thread's priority. */
/haiku-buildtools/gcc/gcc/
H A Dipa.c899 statements. PRIORITY is the initialization priority for this
906 cgraph_build_static_cdtor_1 (char which, tree body, int priority, bool final) argument
912 /* The priority is encoded in the constructor or destructor name.
916 sprintf (which_buf, "%c_%.5d_%d", which, priority, counter++);
920 sprintf (which_buf, "sub_%c_%.5d_%d", which, priority, counter++);
957 decl_init_priority_insert (decl, priority);
964 decl_init_priority_insert (decl, priority);
971 decl_init_priority_insert (decl, priority);
975 decl_fini_priority_insert (decl, priority);
993 statements. PRIORITY is the initialization priority fo
997 cgraph_build_static_cdtor(char which, tree body, int priority) argument
1041 priority_type priority; local
[all...]
/haiku-buildtools/gcc/libgcc/
H A Dgthr-posix.h381 /* Set the current thread's priority. */
383 __gthread_objc_thread_set_priority (int priority) argument
404 if (priority > priority_max)
405 priority = priority_max;
406 else if (priority < priority_min)
407 priority = priority_min;
408 params.sched_priority = priority;
424 /* Return the current thread's priority. */

Completed in 206 milliseconds

1234