Searched refs:op (Results 151 - 175 of 1141) sorted by relevance

1234567891011>>

/freebsd-current/sys/dev/acpica/
H A Dacpi_quirk.c53 enum ops_t op; member in union:acpi_q_rule::__anon365
68 static int aq_revcmp(int revision, enum ops_t op, int value);
74 aq_revcmp(int revision, enum ops_t op, int value) argument
76 switch (op) {
92 panic("aq_revcmp: invalid op %d", op);
123 if (aq_revcmp(hdr->OemRevision, match->x.op, match->y.rev))
127 if (aq_revcmp(hdr->AslCompilerRevision, match->x.op, match->y.rev))
/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c820 BYTE* op = ostart; local
821 BYTE* const omax = op + maxDstSize;
839 for ( ; (FSE_reloadDStream(&bitD)==FSE_DStream_unfinished) && (op<olimit) ; op+=4)
841 op[0] = FSE_GETSYMBOL(&state1);
846 op[1] = FSE_GETSYMBOL(&state2);
849 { if (FSE_reloadDStream(&bitD) > FSE_DStream_unfinished) { op+=2; break; } }
851 op[2] = FSE_GETSYMBOL(&state1);
856 op[3] = FSE_GETSYMBOL(&state2);
863 if ( (FSE_reloadDStream(&bitD)>FSE_DStream_completed) || (op
1075 BYTE* op = ostart; local
1370 BYTE* op = (BYTE*)dst; local
1497 BYTE* op = (BYTE*)dst; local
1754 ZSTD_execSequence(BYTE* op, seq_t sequence, const BYTE** litPtr, const BYTE* const litLimit, BYTE* const base, BYTE* const oend) argument
1856 BYTE* op = ostart; local
1945 BYTE* op = ostart; local
[all...]
/freebsd-current/crypto/openssl/test/testutil/
H A Dtests.c29 const char *op)
34 if (op != NULL) {
36 test_printf_stderr("'%s %s %s' failed", left, op, right);
38 test_printf_stderr("'%s'", op);
71 const char *right, const char *op,
78 const char *op, const char *fmt, va_list ap)
80 test_fail_message_prefix(prefix, file, line, type, left, right, op);
91 const char *op, const char *fmt, ...)
96 test_fail_message_va(prefix, file, line, type, left, right, op, fmt, ap);
211 #define DEFINE_COMPARISON(type, name, opname, op, fm
26 test_fail_message_prefix(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op) argument
75 test_fail_message_va(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const char *fmt, va_list ap) argument
88 test_fail_message(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const char *fmt, ...) argument
[all...]
/freebsd-current/contrib/less/
H A Dregexp.c415 register char op; local
423 op = *regparse;
424 if (!ISMULT(op)) {
429 if (!(flags&HASWIDTH) && op != '?')
431 *flagp = (op != '+') ? (WORST|SPSTART) : (WORST|HASWIDTH);
433 if (op == '*' && (flags&SIMPLE))
435 else if (op == '*') {
442 } else if (op == '+' && (flags&SIMPLE))
444 else if (op == '+') {
451 } else if (op
1105 register char op = EXACTLY; /* Arbitrary non-END op. */ local
[all...]
/freebsd-current/sys/arm/freescale/imx/
H A Dimx6_anatop.c276 cpufreq_set_clock(struct imx6_anatop_softc * sc, struct oppt *op) argument
281 if (op->mhz > sc->cpu_curmhz) {
282 vdd_set(sc, op->mv);
294 cpufreq_mhz_to_div(sc, op->mhz, &corediv, &plldiv);
316 if (op->mhz < sc->cpu_curmhz)
317 vdd_set(sc, op->mv);
318 sc->cpu_curmhz = op->mhz;
329 struct oppt * op; local
340 op = cpufreq_nearest_oppt(sc, temp);
341 if (op
361 struct oppt * op; local
394 struct oppt * op; local
[all...]
/freebsd-current/sys/fs/nfsserver/
H A Dnfs_nfsdsocket.c472 nfsrvd_statstart(int op, struct bintime *now) argument
474 if (op > (NFSV42_NOPS + NFSV4OP_FAKENOPS)) {
475 printf("%s: op %d invalid\n", __func__, op);
488 NFSD_VNET(nfsstatsv1_p)->srvrpccnt[op]++;
495 nfsrvd_statend(int op, uint64_t bytes, struct bintime *now, argument
500 if (op > (NFSV42_NOPS + NFSV4OP_FAKENOPS)) {
501 printf("%s: op %d invalid\n", __func__, op);
512 NFSD_VNET(nfsstatsv1_p)->srvbytes[op]
712 int i, lktype, op, op0 = 0, rstat, statsinprog = 0; local
[all...]
/freebsd-current/bin/test/
H A Dtest.c230 syntax(const char *op, const char *msg) argument
233 if (op && *op)
234 error("%s: %s", op, msg);
322 const char *opnd1, *op, *opnd2; local
325 op = nargc > 0 ? (--nargc, *++t_wp) : NULL;
328 syntax(op, "argument expected");
417 find_op_1char(const struct t_op *op, const struct t_op *end, const char *s) argument
422 while (op != end) {
423 if (c == *op
431 find_op_2char(const struct t_op *op, const struct t_op *end, const char *s) argument
[all...]
/freebsd-current/lib/libc/gen/
H A Dexec.c150 const char *bp, *np, *op, *p; local
158 op = NULL;
169 op = path;
171 while (op != NULL) {
172 np = strchrnul(op, ':');
178 if (np == op) {
184 p = op;
185 lp = np - op;
190 op = NULL;
192 op
[all...]
/freebsd-current/sys/contrib/openzfs/lib/libzfs/os/freebsd/
H A Dlibzfs_compat.c51 const char *bp, *np, *op, *p; local
59 op = NULL;
70 op = path;
72 while (op != NULL) {
73 np = strchrnul(op, ':');
79 if (np == op) {
85 p = op;
86 lp = np - op;
91 op = NULL;
93 op
[all...]
/freebsd-current/sys/sys/
H A Dnamei.h211 #define NDINIT(ndp, op, flags, segflg, namep) \
212 NDINIT_ALL(ndp, op, flags, segflg, namep, AT_FDCWD, NULL, &cap_no_rights)
213 #define NDINIT_AT(ndp, op, flags, segflg, namep, dirfd) \
214 NDINIT_ALL(ndp, op, flags, segflg, namep, dirfd, NULL, &cap_no_rights)
215 #define NDINIT_ATRIGHTS(ndp, op, flags, segflg, namep, dirfd, rightsp) \
216 NDINIT_ALL(ndp, op, flags, segflg, namep, dirfd, NULL, rightsp)
217 #define NDINIT_ATVP(ndp, op, flags, segflg, namep, vp) \
218 NDINIT_ALL(ndp, op, flags, segflg, namep, AT_FDCWD, vp, &cap_no_rights)
243 #define NDINIT_ALL(ndp, op, flags, segflg, namep, dirfd, startdir, rightsp) \
250 _ndp->ni_cnd.cn_nameiop = op; \
[all...]
/freebsd-current/sys/netgraph/bluetooth/l2cap/
H A Dng_l2cap_ulpi.c167 ng_l2cap_l2ca_con_op *op = NULL; local
182 sizeof(*op), M_NOWAIT);
189 op = (ng_l2cap_l2ca_con_op *)(msg->data);
197 op->idtype = NG_L2CAP_L2CA_IDTYPE_ATT;
198 op->lcid = ch->con->con_handle;
200 op->idtype = NG_L2CAP_L2CA_IDTYPE_SMP;
201 op->lcid = ch->con->con_handle;
203 op->idtype = (ch->con->linktype == NG_HCI_LINK_ACL)?
206 op->lcid = ch->scid;
208 op
341 ng_l2cap_l2ca_enc_chg_op *op = NULL; local
393 ng_l2cap_l2ca_con_rsp_op *op = NULL; local
584 ng_l2cap_l2ca_cfg_op *op = NULL; local
744 ng_l2cap_l2ca_cfg_rsp_op *op = NULL; local
938 ng_l2cap_l2ca_write_op *op = NULL; local
1332 ng_l2cap_l2ca_discon_op *op = NULL; local
1561 ng_l2cap_l2ca_ping_op *op = NULL; local
1682 ng_l2cap_l2ca_get_info_op *op = NULL; local
[all...]
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dhuf_compress.c95 BYTE* op = ostart; local
117 { CHECK_V_F(hSize, FSE_writeNCount(op, (size_t)(oend-op), wksp->norm, maxSymbolValue, tableLog) );
118 op += hSize;
123 { CHECK_V_F(cSize, FSE_compress_usingCTable(op, (size_t)(oend - op), weightTable, wtSize, wksp->CTable) );
125 op += cSize;
128 return (size_t)(op-ostart);
177 BYTE* op = (BYTE*)dst; local
194 { CHECK_V_F(hSize, HUF_compressWeights(op
975 BYTE* op = ostart; local
1092 BYTE* op = ostart; local
1144 HUF_compressCTable_internal( BYTE* const ostart, BYTE* op, BYTE* const oend, const void* src, size_t srcSize, HUF_nbStreams_e nbStreams, const HUF_CElt* CTable, const int bmi2) argument
1189 BYTE* op = ostart; local
[all...]
/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dip_htable.c216 /* op(I) - pointer to lookup operation data */
222 ipf_htable_stats_get(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) argument
228 if (op->iplo_size != sizeof(stats)) {
233 stats.iphs_tables = softh->ipf_htables[op->iplo_unit + 1];
234 stats.iphs_numtables = softh->ipf_nhtables[op->iplo_unit + 1];
235 stats.iphs_numnodes = softh->ipf_nhtnodes[op->iplo_unit + 1];
236 stats.iphs_nomem = softh->ipht_nomem[op->iplo_unit + 1];
238 err = COPYOUT(&stats, op->iplo_struct, sizeof(stats));
253 /* op(I) - pointer to lookup operation data */
258 ipf_htable_create(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) argument
367 ipf_htable_table_del(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) argument
499 ipf_htable_node_del(ipf_main_softc_t *softc, void *arg, iplookupop_t *op, int uid) argument
549 ipf_htable_table_add(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) argument
757 ipf_htable_flush(ipf_main_softc_t *softc, void *arg, iplookupflush_t *op) argument
792 ipf_htable_node_add(ipf_main_softc_t *softc, void *arg, iplookupop_t *op, int uid) argument
[all...]
H A Dip_pool.c136 iplookupop_t op; local
144 bzero((char *)&op, sizeof(op));
146 strcpy(op.iplo_name, "0");
148 if (ipf_pool_create(&op) == 0)
349 /* op(I) - pointer to lookup operatin data */
356 ipf_pool_node_add(ipf_main_softc_t *softc, void *arg, iplookupop_t *op, argument
363 if (op->iplo_size != sizeof(node)) {
368 err = COPYIN(op->iplo_struct, &node, sizeof(node));
374 p = ipf_pool_find(arg, op
448 ipf_pool_node_del(ipf_main_softc_t *softc, void *arg, iplookupop_t *op, int uid) argument
521 ipf_pool_table_add(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) argument
546 ipf_pool_table_del(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) argument
563 ipf_pool_stats_get(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) argument
896 ipf_pool_create(ipf_main_softc_t *softc, ipf_pool_softc_t *softp, iplookupop_t *op) argument
[all...]
/freebsd-current/tools/test/stress2/testcases/dirnprename/
H A Ddirnprename.c57 size = in / op->incarnations;
64 reserve_in = 2 * size * op->incarnations + 2 * op->incarnations;
65 reserve_bl = 30 * size * op->incarnations;
73 if (op->verbose > 1)
75 size, op->incarnations, bl/1024, in, reserve_bl/1024, reserve_in);
/freebsd-current/tools/test/stress2/testcases/lockf/
H A Dlockf.c107 reserve_in = 1 * op->incarnations;
108 reserve_bl = 4096 * op->incarnations;
113 if (op->verbose > 1)
115 op->incarnations, bl/1024, in, reserve_bl/1024, reserve_in);
161 if (op->verbose > 3)
171 if (op->verbose > 3)
/freebsd-current/tools/tools/mwl/mwldebug/
H A Dmwldebug.c136 int c, op, i; local
166 op = -1;
169 op = 1;
171 op = 0;
175 if (op < 0)
177 else if (op > 0)
/freebsd-current/tools/tools/ath/athdebug/
H A Dathdebug.c152 int op; local
190 op = -1;
193 op = 1;
195 op = 0;
199 if (op < 0)
201 else if (op > 0)
/freebsd-current/sys/contrib/dev/acpica/include/
H A Dacparser.h370 ACPI_PARSE_OBJECT *op,
382 ACPI_PARSE_OBJECT *op,
430 ACPI_PARSE_OBJECT *op,
448 ACPI_PARSE_OBJECT *op);
452 ACPI_PARSE_OBJECT *op,
473 ACPI_PARSE_OBJECT *op);
/freebsd-current/sys/contrib/zlib/
H A Dinftrees.c113 here.op = (unsigned char)64; /* invalid code marker */
213 here.op = (unsigned char)0;
217 here.op = (unsigned char)(extra[work[sym] - match]);
221 here.op = (unsigned char)(32 + 64); /* end of block */
279 (*table)[low].op = (unsigned char)curr;
289 here.op = (unsigned char)64; /* invalid code marker */
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_options.c43 const char *mp, *op, *vp; local
49 op = (o != NULL && o[0] != '\0') ? o : NULL;
52 if (op == NULL && vp == NULL)
54 if (op == NULL) {
59 r = use_option(a, mp, op, vp);
68 vp?"":"!", mp?mp:"", mp?":":"", op, vp?"=":"", vp?vp:"");
/freebsd-current/contrib/libxo/libxo/
H A Dxo_encoder.h97 xo_encoder_op_t op __attribute__ ((__unused__)), \
155 xo_encoder_handle (xo_handle_t *xop, xo_encoder_op_t op,
162 xo_encoder_op_name (xo_encoder_op_t op);
/freebsd-current/contrib/tcsh/
H A Dtc.nls.c100 const Char *op = p; local
113 n = Strsave(op);
114 n[p - op] = c2;
/freebsd-current/contrib/opencsd/decoder/include/opencsd/c_api/
H A Docsd_c_api_custom.h63 const ocsd_datapath_op_t op,
151 const ocsd_datapath_op_t op,
163 const ocsd_datapath_op_t op,
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileColonLine.cpp50 VarSetOperationType op) {
52 switch (op) {
127 error = OptionValue::SetValueFromString(value, op);
49 SetValueFromString(llvm::StringRef value, VarSetOperationType op) argument

Completed in 375 milliseconds

1234567891011>>