Searched refs:op (Results 1 - 25 of 1139) sorted by relevance

1234567891011>>

/freebsd-current/sys/powerpc/mambo/
H A Dmambocall.h31 long mambocall(int op, ...);
/freebsd-current/contrib/ntp/libntp/lib/isc/nothreads/include/isc/
H A Donce.h29 #define isc_once_do(op, f) \
30 (!*(op) ? (f(), *(op) = ISC_TRUE, ISC_R_SUCCESS) : ISC_R_SUCCESS)
/freebsd-current/sbin/ipf/libipf/
H A Dremove_hash.c20 iplookupop_t op; local
26 op.iplo_type = IPLT_HASH;
27 op.iplo_unit = iphp->iph_unit;
28 strncpy(op.iplo_name, iphp->iph_name, sizeof(op.iplo_name));
29 if (*op.iplo_name == '\0')
30 op.iplo_arg = IPHASH_ANON;
31 op.iplo_size = sizeof(iph);
32 op.iplo_struct = &iph;
40 if (pool_ioctl(iocfunc, SIOCLOOKUPDELTABLE, &op)) {
[all...]
H A Dremove_hashnode.c20 iplookupop_t op; local
26 op.iplo_type = IPLT_HASH;
27 op.iplo_unit = unit;
28 op.iplo_size = sizeof(ipe);
29 op.iplo_struct = &ipe;
30 op.iplo_arg = 0;
31 strncpy(op.iplo_name, name, sizeof(op.iplo_name));
44 if (pool_ioctl(iocfunc, SIOCLOOKUPDELNODE, &op)) {
H A Dremove_poolnode.c22 iplookupop_t op; local
27 op.iplo_unit = unit;
28 op.iplo_type = IPLT_POOL;
29 op.iplo_arg = 0;
30 strncpy(op.iplo_name, name, sizeof(op.iplo_name));
31 op.iplo_struct = &pn;
32 op.iplo_size = sizeof(pn);
42 if (pool_ioctl(iocfunc, SIOCLOOKUPDELNODE, &op)) {
H A Dload_pool.c20 iplookupop_t op; local
27 op.iplo_unit = plp->ipo_unit;
28 op.iplo_type = IPLT_POOL;
29 op.iplo_arg = 0;
30 strncpy(op.iplo_name, plp->ipo_name, sizeof(op.iplo_name));
31 op.iplo_size = sizeof(pool);
32 op.iplo_struct = &pool;
37 op.iplo_arg |= IPOOL_ANON;
40 if (pool_ioctl(iocfunc, SIOCLOOKUPADDTABLE, &op)) {
[all...]
H A Dremove_pool.c20 iplookupop_t op; local
26 op.iplo_type = IPLT_POOL;
27 op.iplo_unit = poolp->ipo_unit;
28 strncpy(op.iplo_name, poolp->ipo_name, sizeof(op.iplo_name));
29 op.iplo_size = sizeof(pool);
30 op.iplo_struct = &pool;
37 if (pool_ioctl(iocfunc, SIOCLOOKUPDELTABLE, &op)) {
H A Dload_dstlistnode.c20 iplookupop_t op; local
32 op.iplo_unit = role;
33 op.iplo_type = IPLT_DSTLIST;
34 op.iplo_arg = 0;
35 op.iplo_struct = dst;
36 op.iplo_size = sizeof(*dst);
38 op.iplo_size += node->ipfd_dest.fd_name;
39 (void) strncpy(op.iplo_name, name, sizeof(op.iplo_name));
50 err = pool_ioctl(iocfunc, SIOCLOOKUPADDNODE, &op);
[all...]
H A Dload_dstlist.c19 iplookupop_t op; local
29 op.iplo_unit = dst->ipld_unit;
30 op.iplo_type = IPLT_DSTLIST;
31 op.iplo_arg = 0;
32 strncpy(op.iplo_name, dst->ipld_name, sizeof(op.iplo_name));
33 op.iplo_size = sizeof(dest);
34 op.iplo_struct = &dest;
42 if (pool_ioctl(iocfunc, SIOCLOOKUPADDTABLE, &op))
59 if (pool_ioctl(iocfunc, SIOCLOOKUPDELTABLE, &op))
[all...]
H A Dload_poolnode.c22 iplookupop_t op; local
29 op.iplo_unit = role;
30 op.iplo_type = IPLT_POOL;
31 op.iplo_arg = 0;
32 op.iplo_struct = &pn;
33 op.iplo_size = sizeof(pn);
34 strncpy(op.iplo_name, name, sizeof(op.iplo_name));
47 err = pool_ioctl(iocfunc, SIOCLOOKUPADDNODE, &op);
50 err = pool_ioctl(iocfunc, SIOCLOOKUPDELNODE, &op);
[all...]
H A Dload_hashnode.c21 iplookupop_t op; local
29 op.iplo_type = IPLT_HASH;
30 op.iplo_unit = unit;
31 op.iplo_arg = 0;
32 op.iplo_size = sizeof(ipe);
33 op.iplo_struct = &ipe;
34 strncpy(op.iplo_name, name, sizeof(op.iplo_name));
48 err = pool_ioctl(iocfunc, SIOCLOOKUPADDNODE, &op);
51 err = pool_ioctl(iocfunc, SIOCLOOKUPDELNODE, &op);
[all...]
H A Dload_hash.c20 iplookupop_t op; local
33 op.iplo_arg = 0;
34 op.iplo_type = IPLT_HASH;
35 op.iplo_unit = iphp->iph_unit;
36 strncpy(op.iplo_name, iphp->iph_name, sizeof(op.iplo_name));
37 if (*op.iplo_name == '\0')
38 op.iplo_arg = IPHASH_ANON;
39 op.iplo_size = sizeof(iph);
40 op
[all...]
/freebsd-current/sys/contrib/zlib/
H A Dinffast.c71 unsigned op; /* code bits, operation, extra bits, or */ local
109 op = (unsigned)(here->bits);
110 hold >>= op; local
111 bits -= op;
112 op = (unsigned)(here->op);
113 if (op == 0) { /* literal */
119 else if (op & 16) { /* length base */
121 op &= 15; /* number of extra bits */
122 if (op) {
128 hold >>= op; local
141 hold >>= op; local
163 hold >>= op; local
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_rtl_x86_64.S9 #define NAME(n, reg, op, s, i) n##_##op##_##i##_##s##_##reg
11 #define FNAME(reg, op, s, i) NAME(__asan_check, reg, op, s, i)
12 #define RLABEL(reg, op, s, i) NAME(.return, reg, op, s, i)
13 #define CLABEL(reg, op, s, i) NAME(.check, reg, op, s, i)
14 #define FLABEL(reg, op, s, i) NAME(.fail, reg, op,
[all...]
/freebsd-current/tools/test/stress2/lib/
H A Doptions.c39 opt_t *op; variable
101 if (sscanf(cp, "%d", &op->incarnations) != 1)
105 if (sscanf(cp, "%d", &op->load) != 1)
109 op->run_time = time2sec(cp);
112 op->wd = cp;
115 op->cd = cp;
118 op->hog = 1;
121 op->kill = 1;
124 op->nodelay = 1;
127 if (sscanf(cp, "%d", &op
[all...]
/freebsd-current/share/doc/smm/08.sendmailop/
H A DMakefile3 SRCS= op.me
7 SRCDIR= ${SRCTOP}/contrib/sendmail/doc/op
/freebsd-current/sys/dev/cxgbe/cudbg/
H A Dfastlz.c187 unsigned char *op = (unsigned char *) output; local
200 *op++ = length - 1;
203 *op++ = *ip++;
215 *op++ = MAX_COPY - 1;
216 *op++ = *ip++;
217 *op++ = *ip++;
319 *(op - copy - 1) = copy - 1;
322 op--;
335 *op++ = (len << 5) + (distance >> 8);
336 *op
434 unsigned char *op = (unsigned char *) output; local
[all...]
/freebsd-current/contrib/sendmail/doc/op/
H A DMakefile4 SRCS= op.me
5 OBJS= op.ps
25 op.ps: ${SRCS}
30 op.txt: ${SRCS}
34 op.pdf: op.ps
36 ${PS2PDF} op.ps op.pdf
39 rm -f op.ps op
[all...]
/freebsd-current/usr.sbin/config/
H A Dmkoptions.cc62 struct opt *op; local
66 op = (struct opt *)calloc(1, sizeof(*op));
67 if (op == NULL)
69 op->op_name = ns(cp->cpu_name);
70 SLIST_INSERT_HEAD(&opt, op, op_next);
84 op = (struct opt *)calloc(1, sizeof(*op));
85 if (op == NULL)
87 op
139 struct opt *op; local
[all...]
/freebsd-current/contrib/ntp/sntp/libevent/test/
H A Dtinytest_macros.h72 #define tt_abort_perror(op) TT_DIE(("%s: %s [%d]",(op),strerror(errno), errno))
78 #define tt_fail_perror(op) TT_FAIL(("%s: %s [%d]",(op),strerror(errno), errno))
151 /* Helper: assert that a op b, when cast to type. Format the values with
153 #define tt_assert_op_type(a,op,b,type,fmt) \
154 tt_assert_test_type(a,b,#a" "#op" "#b,type,(val1_ op val2_),fmt, \
157 #define tt_int_op(a,op,b) \
158 tt_assert_test_type(a,b,#a" "#op" "#
[all...]
/freebsd-current/contrib/libevent/test/
H A Dtinytest_macros.h72 #define tt_abort_perror(op) TT_DIE(("%s: %s [%d]",(op),strerror(errno), errno))
78 #define tt_fail_perror(op) TT_FAIL(("%s: %s [%d]",(op),strerror(errno), errno))
151 /* Helper: assert that a op b, when cast to type. Format the values with
153 #define tt_assert_op_type(a,op,b,type,fmt) \
154 tt_assert_test_type(a,b,#a" "#op" "#b,type,(val1_ op val2_),fmt, \
157 #define tt_int_op(a,op,b) \
158 tt_assert_test_type(a,b,#a" "#op" "#
[all...]
/freebsd-current/contrib/libpcap/
H A Dbpf_image.c132 const char *op; local
140 op = "unimp";
146 op = "ret";
152 op = "ret";
157 op = "ld";
163 op = "ldh";
169 op = "ldb";
175 op = "ld";
180 op = "ld";
186 op
[all...]
/freebsd-current/contrib/arm-optimized-routines/math/test/rtest/
H A Dwrappers.c78 mpfr_srcptr wrapper_get_mpfr(wrapperctx *ctx, int op) argument
80 if (op < 0) {
84 assert(ctx->mpfr_ops[op]);
85 return ctx->mpfr_ops[op];
89 const uint32 *wrapper_get_ieee(wrapperctx *ctx, int op) argument
91 if (op < 0) {
95 assert(ctx->mpfr_ops[op]);
96 return ctx->ieee_ops[op];
105 int wrapper_get_size(wrapperctx *ctx, int op) argument
107 if (op <
116 wrapper_is_complex(wrapperctx *ctx, int op) argument
127 wrapper_get_mpc(wrapperctx *ctx, int op) argument
138 wrapper_get_mpfr_r(wrapperctx *ctx, int op) argument
149 wrapper_get_mpfr_i(wrapperctx *ctx, int op) argument
160 wrapper_get_ieee_r(wrapperctx *ctx, int op) argument
171 wrapper_get_ieee_i(wrapperctx *ctx, int op) argument
[all...]
/freebsd-current/lib/libc/tests/stdlib/dynthr_mod/
H A Ddynthr_mod.c41 void mod_main(int op);
56 mod_main(int op) argument
60 switch (op) {
/freebsd-current/contrib/netbsd-tests/sbin/newfs/
H A Dquotas_common.sh33 local op;
35 op="-q user -q group"
37 op="-q ${type}"
39 atf_check -o ignore -e ignore newfs ${op} \

Completed in 399 milliseconds

1234567891011>>