Searched refs:param (Results 51 - 75 of 4930) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/kern/
H A Dsubr_dummy_vdso_tc.c32 #include <sys/param.h>
H A Dksched.c41 #include <sys/param.h>
134 struct thread *td, const struct sched_param *param)
143 e = ksched_setscheduler(ksched, td, policy, param);
151 struct thread *td, struct sched_param *param)
157 param->sched_priority = rtpprio_to_p4prio(rtp.prio);
164 param->sched_priority = (PRI_MAX_TIMESHARE - PRI_MIN_TIMESHARE);
166 param->sched_priority = tsprio_to_p4prio(rtp.prio);
180 struct thread *td, int policy, const struct sched_param *param)
190 if (param->sched_priority >= P1B_PRIO_MIN &&
191 param
133 ksched_setparam(struct ksched *ksched, struct thread *td, const struct sched_param *param) argument
150 ksched_getparam(struct ksched *ksched, struct thread *td, struct sched_param *param) argument
179 ksched_setscheduler(struct ksched *ksched, struct thread *td, int policy, const struct sched_param *param) argument
[all...]
/freebsd-9.3-release/sys/ofed/include/linux/
H A Dhardirq.h33 #include <sys/param.h>
/freebsd-9.3-release/sys/powerpc/powerpc/
H A Dfuswintr.c37 #include <sys/param.h>
H A Dsuswintr.c37 #include <sys/param.h>
/freebsd-9.3-release/sys/security/mac_none/
H A Dmac_none.c45 #include <sys/param.h>
/freebsd-9.3-release/usr.sbin/mount_portalfs/
H A Dpt_conf.c40 #include <sys/param.h>
/freebsd-9.3-release/tools/regression/geom_gpt/
H A Dtest.c30 #include <sys/param.h>
41 const char *param; member in struct:retval
51 fprintf(stdout, "usage: %s [-v] param[:len][=value] ...\n",
57 parse(char *arg, char **param, char **value, int *len) argument
78 *param = arg;
112 char *param, *value; local
133 if (!parse(argv[optind++], &param, &value, &len)) {
136 rv->param = param;
140 gctl_rw_param(req, param, le
[all...]
/freebsd-9.3-release/tools/tools/ath/athradar/
H A Dathradar.c85 radarset(struct radarhandler *radar, int op, u_int32_t param) argument
107 pe.pe_enabled = param;
110 pe.pe_firpwr = param;
113 pe.pe_rrssi = param;
116 pe.pe_height = param;
119 pe.pe_prssi = param;
122 pe.pe_inband = param;
125 pe.pe_relpwr = param;
128 pe.pe_relstep = param;
131 pe.pe_maxlen = param;
188 radar_set_param(struct radarhandler *radar, const char *param, const char *val) argument
[all...]
/freebsd-9.3-release/sys/netgraph/bluetooth/l2cap/
H A Dng_l2cap_cmds.h55 ng_l2cap_cmd_rej_cp param; \
66 c->hdr.length = sizeof(c->param); \
68 c->param.reason = htole16((_reason)); \
90 ng_l2cap_con_req_cp param; \
102 c->hdr.length = htole16(sizeof(c->param)); \
104 c->param.psm = htole16((_psm)); \
105 c->param.scid = htole16((_scid)); \
113 ng_l2cap_con_rsp_cp param; \
125 c->hdr.length = htole16(sizeof(c->param)); \
127 c->param
[all...]
/freebsd-9.3-release/sys/dev/hatm/
H A Dif_hatm_ioctl.c41 #include <sys/param.h>
101 DBG(sc, VCC, ("Open VCC: %u.%u flags=%#x", arg->param.vpi,
102 arg->param.vci, arg->param.flags));
104 if ((arg->param.vpi & ~HE_VPI_MASK) ||
105 (arg->param.vci & ~HE_VCI_MASK) ||
106 (arg->param.vci == 0))
108 cid = HE_CID(arg->param.vpi, arg->param.vci);
110 if ((arg->param
[all...]
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Dtc-spu.c51 static const char *get_imm (const char *param, struct spu_insn *insn, int arg);
52 static const char *get_reg (const char *param, struct spu_insn *insn, int arg,
54 static int calcop (struct spu_opcode *format, const char *param,
266 char *param, *thisfrag;
276 for (param = op; *param != 0 && !ISSPACE (*param); param++)
278 c = *param;
279 *param
264 char *param, *thisfrag; local
379 calcop(struct spu_opcode *format, const char *param, struct spu_insn *insn) argument
484 get_reg(const char *param, struct spu_insn *insn, int arg, int accept_expr) argument
585 get_imm(const char *param, struct spu_insn *insn, int arg) argument
[all...]
/freebsd-9.3-release/lib/libthr/thread/
H A Dthr_setprio.c44 struct sched_param param; local
47 param.sched_priority = prio;
58 pthread->attr.sched_policy, &param);
H A Dthr_kern.c76 struct sched_param *param)
81 param->sched_priority = RTP_PRIO_MAX - rtp->prio;
85 param->sched_priority = RTP_PRIO_MAX - rtp->prio;
89 param->sched_priority = 0;
96 _schedparam_to_rtp(int policy, const struct sched_param *param, argument
102 rtp->prio = RTP_PRIO_MAX - param->sched_priority;
106 rtp->prio = RTP_PRIO_MAX - param->sched_priority;
118 _thr_getscheduler(lwpid_t lwpid, int *policy, struct sched_param *param) argument
126 _rtp_to_schedparam(&rtp, policy, param);
131 _thr_setscheduler(lwpid_t lwpid, int policy, const struct sched_param *param) argument
75 _rtp_to_schedparam(const struct rtprio *rtp, int *policy, struct sched_param *param) argument
[all...]
H A Dthr_create.c55 struct thr_param param; local
76 memset(&param, 0, sizeof(param));
151 param.start_func = (void (*)(void *)) thread_start;
152 param.arg = new_thread;
153 param.stack_base = new_thread->attr.stackaddr_attr;
154 param.stack_size = new_thread->attr.stacksize_attr;
155 param.tls_base = (char *)new_thread->tcb;
156 param.tls_size = sizeof(struct tcb);
157 param
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DThreading.cpp111 void *param; member in struct:ThreadInfo
114 static unsigned __stdcall ThreadCallback(void *param) { argument
115 struct ThreadInfo *info = reinterpret_cast<struct ThreadInfo *>(param);
116 info->func(info->param);
123 struct ThreadInfo param = { Fn, UserData }; local
127 &param, 0, NULL);
/freebsd-9.3-release/crypto/openssl/crypto/pkcs12/
H A Dp12_crpt.c89 ASN1_TYPE *param, const EVP_CIPHER *cipher,
99 if (param == NULL || param->type != V_ASN1_SEQUENCE ||
100 param->value.sequence == NULL) {
105 pbuf = param->value.sequence->data;
106 if (!(pbe = d2i_PBEPARAM(NULL, &pbuf, param->value.sequence->length))) {
88 PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md, int en_de) argument
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Headers/
H A Dstdarg.h33 #define va_start(ap, param) __builtin_va_start(ap, param)
/freebsd-9.3-release/sys/dev/ata/
H A Data-disk.c31 #include <sys/param.h>
83 if (!(atadev->param.config & ATA_PROTO_ATAPI) ||
84 (atadev->param.config == ATA_CFA_MAGIC1) ||
85 (atadev->param.config == ATA_CFA_MAGIC2) ||
86 (atadev->param.config == ATA_CFA_MAGIC3))
132 if (atadev->param.support.command2 & ATA_SUPPORT_ADDRESS48)
141 if (atadev->param.support.command2 & ATA_SUPPORT_FLUSHCACHE)
143 if ((atadev->param.support.command2 & ATA_SUPPORT_CFA) ||
144 atadev->param.config == ATA_PROTO_CFA)
146 strlcpy(adp->disk->d_ident, atadev->param
[all...]
/freebsd-9.3-release/sys/dev/nxge/
H A Dif_nxge.h124 #define XGE_DRV_STATS(param) (lldev->driver_stats.param++)
128 #define XGE_GET_PARAM(str_kenv, to, param, hardcode) { \
129 static int param##__LINE__; \
131 getenv_int(str_kenv, &param##__LINE__); \
134 param##__LINE__ = hardcode; \
136 XGE_SAVE_PARAM(to, param, param##__LINE__); \
139 #define XGE_GET_PARAM_MAC(str_kenv, param, hardcode) \
140 XGE_GET_PARAM(str_kenv, ((*dconfig).mac), param, hardcod
[all...]
/freebsd-9.3-release/sys/ofed/drivers/infiniband/core/
H A Ducm.c268 &evt->param.req_rcvd);
271 uvt->resp.present |= (evt->param.req_rcvd.alternate_path ?
276 &evt->param.rep_rcvd);
281 uvt->resp.u.send_status = evt->param.send_status;
285 uvt->resp.u.send_status = evt->param.send_status;
289 uvt->resp.u.send_status = evt->param.send_status;
293 evt->param.mra_rcvd.service_timeout;
297 uvt->resp.u.rej_resp.reason = evt->param.rej_rcvd.reason;
299 uvt->info_len = evt->param.rej_rcvd.ari_length;
300 info = evt->param
752 struct ib_cm_req_param param; local
810 struct ib_cm_rep_param param; local
1015 struct ib_cm_sidr_req_param param; local
1056 struct ib_cm_sidr_rep_param param; local
[all...]
/freebsd-9.3-release/sbin/ifconfig/
H A Difbridge.c41 #include <sys/param.h>
254 struct ifbrparam param; local
261 if (do_cmd(s, BRDGGCACHE, &param, sizeof(param), 0) < 0)
263 csize = param.ifbrp_csize;
264 if (do_cmd(s, BRDGGTO, &param, sizeof(param), 0) < 0)
266 ctime = param.ifbrp_ctime;
513 struct ifbrparam param; local
519 param
528 struct ifbrparam param; local
543 struct ifbrparam param; local
558 struct ifbrparam param; local
573 struct ifbrparam param; local
588 struct ifbrparam param; local
605 struct ifbrparam param; local
677 struct ifbrparam param; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzfs_core/common/
H A Dlibzfs_core_compat.h30 #include <sys/param.h>
/freebsd-9.3-release/contrib/binutils/bfd/hosts/
H A Ddecstation.h1 /* Hopefully this should include either machine/param.h (Ultrix) or
3 #include <sys/param.h>
/freebsd-9.3-release/contrib/gnu-sort/lib/
H A Dpathmax.h26 PATH_MAX but might cause redefinition warnings when sys/param.h is
41 /* Don't include sys/param.h if it already has been. */
43 # include <sys/param.h>

Completed in 178 milliseconds

1234567891011>>