Searched refs:priority (Results 26 - 50 of 344) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/bhnd/bhndb/
H A Dbhndb_hwdata.c42 * Resource priority specifications shared by all bhndb(4) bridge
58 * Define a core priority record for all cores matching @p devclass
64 .priority = (BHNDB_PRIORITY_ ## _priority), \
69 * Define a default core priority record
75 .priority = (BHNDB_PRIORITY_DEFAULT), \
79 /* Define a port priority record for the type/port/region
85 .priority = (BHNDB_PRIORITY_ ## _priority) \
88 /* Define a port priority record for the default (_type, 0, 0) type/port/region
94 * Generic resource priority configuration usable with all currently supported
110 * Low priority devic
[all...]
H A Dbhndb.h140 * higher-priority requests. */
152 * Port resource priority descriptor.
158 bhndb_priority_t priority; /**< port priority */ member in struct:bhndb_port_priority
162 * Core resource priority descriptor.
166 bhndb_priority_t priority; /**< core-level priority */ member in struct:bhndb_hw_priority
168 u_int num_ports; /**< number of port priority records. */
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dsyslogio.c29 ** The only state associated with a syslog file is 'int priority',
38 ** info -- priority level of the syslog messages
53 int *priority = (int *)info; local
55 fp->f_ival = *priority;
/freebsd-11-stable/contrib/gcc/
H A Dgthr-nks.h110 /* Set the current thread's priority. */
112 __gthread_objc_thread_set_priority (int priority) argument
114 if (NXThreadSetPriority (NXThreadGetId (), priority) == 0)
119 /* Return the current thread's priority. */
123 int priority; local
125 if (NXThreadGetPriority (NXThreadGetId (), &priority) == 0)
126 return priority;
H A Dgthr-posix.h297 /* Set the current thread's priority. */
299 __gthread_objc_thread_set_priority (int priority) argument
320 if (priority > priority_max)
321 priority = priority_max;
322 else if (priority < priority_min)
323 priority = priority_min;
324 params.sched_priority = priority;
340 /* Return the current thread's priority. */
H A Dgthr-posix95.h263 /* Set the current thread's priority. */
265 __gthread_objc_thread_set_priority (int priority) argument
286 if (priority > priority_max)
287 priority = priority_max;
288 else if (priority < priority_min)
289 priority = priority_min;
290 params.sched_priority = priority;
306 /* Return the current thread's priority. */
H A Dgthr-single.h78 /* Set the current thread's priority. */
80 __gthread_objc_thread_set_priority (int UNUSED(priority))
86 /* Return the current thread's priority. */
/freebsd-11-stable/sys/contrib/ck/src/
H A Dck_ht.c417 struct ck_ht_entry *entry, *priority, snapshot; local
435 entry = ck_ht_map_probe_wr(map, h, &snapshot, &priority,
445 entry = ck_ht_map_probe_wr(map, h, &snapshot, &priority,
453 if (priority != NULL) {
457 CK_HT_TYPE_STORE(&priority->key_length, entry->key_length);
458 CK_HT_TYPE_STORE(&priority->hash, entry->hash);
460 ck_pr_store_ptr_unsafe(&priority->value, (void *)entry->value);
462 ck_pr_store_ptr_unsafe(&priority->key, (void *)entry->key);
826 struct ck_ht_entry snapshot, *candidate, *priority; local
835 candidate = ck_ht_map_probe_wr(map, h, &snapshot, &priority,
963 struct ck_ht_entry snapshot, *candidate, *priority; local
[all...]
/freebsd-11-stable/sys/kern/
H A Dsubr_devstat.c78 devstat_priority priority);
88 devstat_priority priority)
103 flags, device_type, priority);
118 devstat_priority priority)
129 * Priority sort. Each driver passes in its priority when it adds
130 * its devstat entry. Drivers are sorted first by priority, and
133 * For the first device, we just insert it, since the priority
147 * priority items, and if this item fits in the
149 * "lower priority item" is the end of the list.
151 if ((priority <
84 devstat_new_entry(const void *dev_name, int unit_number, uint32_t block_size, devstat_support_flags flags, devstat_type_flags device_type, devstat_priority priority) argument
114 devstat_add_entry(struct devstat *ds, const void *dev_name, int unit_number, uint32_t block_size, devstat_support_flags flags, devstat_type_flags device_type, devstat_priority priority) argument
[all...]
/freebsd-11-stable/sys/dev/ixl/
H A Di40e_dcb.c73 u8 priority; local
103 priority = (u8)((buf[offset] & I40E_IEEE_ETS_PRIO_1_MASK) >>
105 etscfg->prioritytable[i * 2] = priority;
106 priority = (u8)((buf[offset] & I40E_IEEE_ETS_PRIO_0_MASK) >>
108 etscfg->prioritytable[i * 2 + 1] = priority;
143 u8 priority; local
146 /* Move offset to priority table */
158 priority = (u8)((buf[offset] & I40E_IEEE_ETS_PRIO_1_MASK) >>
160 dcbcfg->etsrec.prioritytable[i*2] = priority;
161 priority
315 u8 priority; local
1179 u8 priority, selector, i = 0; local
[all...]
/freebsd-11-stable/sys/sys/
H A Drtprio.h37 #include <sys/priority.h>
40 * Process realtime-priority specifications to rtprio.
43 /* priority types. Start at 1 to catch uninitialized fields. */
58 /* priority range */
59 #define RTP_PRIO_MIN 0 /* Highest priority */
60 #define RTP_PRIO_MAX 31 /* Lowest priority */
H A Deventhandler.h143 #define EVENTHANDLER_DEFINE(name, func, arg, priority) \
148 priority); \
162 #define EVENTHANDLER_REGISTER(name, func, arg, priority) \
163 eventhandler_register(NULL, #name, func, arg, priority)
182 const char *name, void *func, void *arg, int priority);
195 const char *name, void *func, void *arg, int priority,
203 /* Generic priority levels */
H A Ddevicestat.h175 devstat_priority priority; /* Controls list pos. */ member in struct:devstat
192 devstat_priority priority);
/freebsd-11-stable/crypto/openssl/crypto/pqueue/
H A Dpqueue.h73 unsigned char priority[8]; /* 64-bit value in big-endian encoding */ member in struct:_pitem
/freebsd-11-stable/sys/cam/
H A Dcam_xpt.h81 u_int32_t priority,
85 u_int32_t priority);
128 #define xpt_path_sleep(path, chan, priority, wmesg, timo) \
129 msleep((chan), xpt_path_mtx(path), (priority), (wmesg), (timo))
145 * Perform a path inquiry at the request priority. The bzero may be
H A Dcam_queue.c198 * and a new priority for the element at index, change the priority of
204 if (new_priority > queue->queue_array[index]->priority) {
205 queue->queue_array[index]->priority = new_priority;
209 queue->queue_array[index]->priority = new_priority;
335 if (queue_array[i]->priority == queue_array[j]->priority)
339 return ( queue_array[i]->priority
340 - queue_array[j]->priority );
H A Dcam_queue.h42 * This structure implements a heap based priority queue. The queue
44 * structure holding the priority information used to sort the objects.
145 /* Get the first element priority. */
147 ((camq)->queue_array[CAMQ_HEAD]->priority) : 0)
150 * camq_change_priority: Raise or lower the priority of an entry
207 * If resize fail, push CCB with lowest priority out to the TAILQ.
250 if (bccb->pinfo.priority > cccb->pinfo.priority ||
251 (bccb->pinfo.priority == cccb->pinfo.priority
[all...]
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_thread_pool.h36 * priority, which can be valued from 0 to 255, with higher values being served
37 * first. If there are tasks with the same priority, the new task might be put at
89 * Schedule a task to the bottom of the tasks of same priority.
93 * @param priority The priority of the task.
100 apr_byte_t priority,
118 * Schedule a task to the top of the tasks of same priority.
122 * @param priority The priority of the task.
129 apr_byte_t priority,
[all...]
/freebsd-11-stable/sys/net/
H A Dvnet.h358 #define VNET_GLOBAL_EVENTHANDLER_REGISTER_TAG(tag, name, func, arg, priority) \
362 arg, priority, \
366 #define VNET_GLOBAL_EVENTHANDLER_REGISTER(name, func, arg, priority) \
370 arg, priority, \
429 #define VNET_GLOBAL_EVENTHANDLER_REGISTER_TAG(tag, name, func, arg, priority) \
430 (tag) = eventhandler_register(NULL, #name, func, arg, priority)
431 #define VNET_GLOBAL_EVENTHANDLER_REGISTER(name, func, arg, priority) \
432 eventhandler_register(NULL, #name, func, arg, priority)
/freebsd-11-stable/release/picobsd/mfs_tree/etc/
H A Dlogin.conf34 :priority=0:\
56 :priority=0:\
92 :priority=0:\
/freebsd-11-stable/cddl/usr.sbin/zfsd/
H A Dzfsd_event.cc330 int priority = LOG_INFO; local
335 syslog(priority, "%s", msg.str().c_str());
342 int priority = LOG_INFO; local
347 syslog(priority, "%s", msg.str().c_str());
355 int priority = LOG_INFO; local
361 syslog(priority, "%s", msg.str().c_str());
/freebsd-11-stable/sbin/ggate/shared/
H A Dggate.c67 g_gate_vlog(int priority, const char *message, va_list ap) argument
73 switch (priority) {
97 if (priority != LOG_DEBUG)
98 vsyslog(priority, message, ap);
103 g_gate_log(int priority, const char *message, ...) argument
108 g_gate_vlog(priority, message, ap);
/freebsd-11-stable/sys/net/altq/
H A Daltq_cbq.h85 int priority; member in struct:_cbq_class_stats_
117 u_int priority; member in struct:cbq_class_spec
/freebsd-11-stable/etc/
H A Dlogin.conf48 :priority=0:\
114 # :priority=0:\
141 # :priority=0:\
195 # :priority=0:\
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_target.c62 int priority; member in struct:targ_cmd_descr
147 int priority);
530 int func_code, priority; local
545 priority = fuword32(&user_ccb->ccb_h.pinfo.priority);
546 if (priority == CAM_PRIORITY_NONE) {
556 ccb = targgetccb(softc, func_code, priority);
576 descr->priority = priority;
580 xpt_schedule(softc->periph, priority);
934 targgetccb(struct targ_softc *softc, xpt_opcode type, int priority) argument
[all...]

Completed in 156 milliseconds

1234567891011>>