Searched refs:pri (Results 1 - 25 of 220) sorted by relevance

123456789

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/torture/
H A Dpr36244.c17 struct p7prior_s *pri; local
30 pri = P7AllocPrior();
31 pri->mnum = 5;
32 for (q = 0; q < pri->mnum; q++)
34 pri->mq[q] = defmq[q];
36 pri->m[q][x] = defm[q][x];
38 return pri;
/netbsd-6-1-5-RELEASE/tests/lib/librt/
H A Dt_sched.c105 sched_priority_set(int pri, int pol) argument
109 sched.sched_priority = pri;
111 ATF_REQUIRE(pri >= 0);
125 ATF_REQUIRE(sched.sched_priority == pri);
137 int pri; local
139 pri = sched_get_priority_max(SCHED_RR);
140 sched_priority_set(pri, SCHED_RR);
152 int pri; local
154 pri = sched_get_priority_min(SCHED_RR);
155 sched_priority_set(pri, SCHED_R
167 int pri; local
182 int pri; local
198 int pri; local
220 int pri; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/altq/libaltq/
H A Dqop_priq.h42 int pri; member in struct:priq_classinfo
53 int pri, int qlimit, int flags);
55 int pri, int qlimit, int flags);
60 int pri, int qlimit, int flags);
62 int pri, int qlimit, int flags);
H A Dqop_jobs.h96 int pri; member in struct:jobs_classinfo
110 int qcmd_jobs_add_class(const char *ifname, const char *class_name, int pri,
113 int qcmd_jobs_modify_class(const char *ifname, const char *class_name, int pri,
118 struct ifinfo *ifinfo, int pri,
121 int qop_jobs_modify_class(struct classinfo *clinfo, int pri,
H A Dqop_cbq.h82 u_int pri, u_int bandwidth,
87 u_int pri, u_int bandwidth,
95 struct classinfo *borrow, u_int pri, u_int bandwidth,
99 int qop_cbq_modify_class(struct classinfo *clinfo, u_int pri, u_int bandwidth,
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dvsyslog.c54 simple_vsyslog(int pri, const char *fmt, va_list ap) argument
56 syslog (pri, "%s", fmt);
64 vsyslog(int pri, const char *fmt, va_list ap) argument
77 simple_vsyslog (pri, fmt, ap);
93 simple_vsyslog (pri, fmt, ap);
109 simple_vsyslog (pri, fmt, ap);
112 syslog (pri, "%s", buf);
H A Dsyslog.hin89 #define LOG_MAKEPRI(fac, pri) (((fac) << 3) | (pri))
144 /* facility of pri */
179 #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
180 #define LOG_UPTO(pri) ((1 << ((pri)+1)) - 1) /* all priorities through pri */
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/racoon/
H A Dplog.h67 #define plog(pri, ...) \
69 if ((pri) <= loglevel) \
70 _plog((pri), __VA_ARGS__); \
H A Dplog.c98 plog_common(pri, fmt, func, sa)
99 int pri;
142 if (pri < ARRAYLEN(ptab)) {
143 len = snprintf(p, reslen, "%s: ", ptab[pri].name);
168 _plog(int pri, const char *func, struct sockaddr *sa, const char *fmt, ...) argument
173 plogv(pri, func, sa, fmt, ap);
178 plogv(int pri, const char *func, struct sockaddr *sa, argument
184 if (pri > loglevel)
187 newfmt = plog_common(pri, fmt, func, sa);
197 if (pri < ARRAYLE
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb5.C5 int pri:8;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb5.C5 int pri:8;
/netbsd-6-1-5-RELEASE/sys/dev/acpi/acpica/
H A DOsdSchedule.c102 int pri; local
106 pri = 10;
111 pri = 5;
114 pri = 3;
117 pri = 0;
123 switch (sysmon_task_queue_sched(pri, Function, Context)) {
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-syslog.c93 u_int16_t pri = 0; local
118 pri = pri * 10 + (*(pptr+msg_off) - '0');
132 facility = (pri & SYSLOG_FACILITY_MASK) >> 3;
133 severity = pri & SYSLOG_SEVERITY_MASK;
/netbsd-6-1-5-RELEASE/dist/ipf/lib/
H A Dfacpri.c128 int i, pri; local
130 pri = facpri & LOG_PRIMASK;
131 if (pris[pri].value == pri)
132 return pris[pri].name;
134 if (pri == pris[i].value)
/netbsd-6-1-5-RELEASE/lib/libc/gen/
H A Dsyslog.c105 syslog(int pri, const char *fmt, ...) argument
110 vsyslog(pri, fmt, ap);
115 vsyslog(int pri, const char *fmt, va_list ap) argument
117 vsyslog_r(pri, &sdata, fmt, ap);
125 syslogp(int pri, const char *msgid, const char *sdfmt, const char *msgfmt, ...) argument
130 vsyslogp(pri, msgid, sdfmt, msgfmt, ap);
135 vsyslogp(int pri, const char *msgid, const char *sdfmt, const char *msgfmt, va_list ap) argument
137 vsyslogp_r(pri, &sdata, msgid, sdfmt, msgfmt, ap);
162 syslog_r(int pri, struct syslog_data *data, const char *fmt, ...) argument
167 vsyslog_r(pri, dat
172 syslogp_r(int pri, struct syslog_data *data, const char *msgid, const char *sdfmt, const char *msgfmt, ...) argument
183 syslog_ss(int pri, struct syslog_data *data, const char *fmt, ...) argument
193 syslogp_ss(int pri, struct syslog_data *data, const char *msgid, const char *sdfmt, const char *msgfmt, ...) argument
204 vsyslog_ss(int pri, struct syslog_data *data, const char *fmt, va_list ap) argument
210 vsyslogp_ss(int pri, struct syslog_data *data, const char *msgid, const char *sdfmt, const char *msgfmt, va_list ap) argument
218 vsyslog_r(int pri, struct syslog_data *data, const char *fmt, va_list ap) argument
224 vsyslogp_r(int pri, struct syslog_data *data, const char *msgid, const char *sdfmt, const char *msgfmt, va_list ap) argument
[all...]
/netbsd-6-1-5-RELEASE/tests/lib/libc/gen/
H A Dt_nice.c49 int pri, val; local
54 pri = getpriority(PRIO_PROCESS, 0);
57 if (pri != val)
96 int i, pri, nic; local
106 pri = getpriority(PRIO_PROCESS, 0);
109 if (nic != pri)
122 pri = getpriority(PRIO_PROCESS, 0);
125 if (nic != pri)
/netbsd-6-1-5-RELEASE/usr.bin/logger/
H A Dlogger.c69 int ch, logflags, pri; local
76 pri = LOG_NOTICE;
94 pri = pencode(optarg);
121 syslogp(pri, msgid, sd, "%s", buf);
125 syslogp(pri, msgid, sd, "%s", *argv++);
134 syslogp(pri, msgid, sd, "%s", buf);
140 syslogp(pri, msgid, sd, "%s", buf);
193 "%s: [-is] [-f file] [-p pri] [-t tag] "
/netbsd-6-1-5-RELEASE/sys/dev/isapnp/
H A Daic_isapnp.c69 int pri, variant; local
71 pri = isapnp_devmatch(aux, &isapnp_aic_devinfo, &variant);
72 if (pri && variant > 0)
73 pri = 0;
74 return (pri);
H A Dcom_isapnp.c72 int pri, variant; local
74 pri = isapnp_devmatch(aux, &isapnp_com_devinfo, &variant);
75 if (pri && variant > 0)
76 pri = 0;
77 return (pri);
H A Dif_fmv_isapnp.c74 int pri, variant; local
76 pri = isapnp_devmatch(aux, &isapnp_fmv_devinfo, &variant);
77 if (pri && variant > 0)
78 pri = 0;
79 return pri;
H A Djoy_isapnp.c63 int pri, variant; local
65 pri = isapnp_devmatch(aux, &isapnp_joy_devinfo, &variant);
66 if (pri && variant > 0)
67 pri = 0;
68 return pri;
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dsyslog.h60 #define LOG_MAKEPRI(fac, pri) (((fac) << 3) | (pri))
114 /* facility of pri */
152 #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
153 #define LOG_UPTO(pri) ((1 << ((pri)+1)) - 1) /* all priorities through pri */
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/pic/
H A Dopenpic_common.c66 openpic_set_priority(int cpu, int pri) argument
72 x |= pri;
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/powerpc/
H A Dopenpic.c37 openpic_set_priority(int cpu, int pri) argument
43 x |= pri;
/netbsd-6-1-5-RELEASE/sys/arch/i386/include/
H A Dcpu.h73 cpu_set_curpri(int pri) argument
79 "r" (pri)

Completed in 225 milliseconds

123456789