Home
last modified time | relevance | path

Searched refs:op (Results 201 – 225 of 1488) sorted by relevance

12345678910>>...60

/freebsd/lib/liblua/
H A Dluaconf.h440 #define l_mathop(op) op##f argument
456 #define l_mathop(op) op##l argument
471 #define l_mathop(op) op argument
638 #define l_mathop(op) (lua_Number)op /* no variant */ argument
/freebsd/tools/tools/ath/athdebug/
H A Dathdebug.c152 int op; in main() local
190 op = -1; in main()
193 op = 1; in main()
195 op = 0; in main()
199 if (op < 0) in main()
201 else if (op > 0) in main()
/freebsd/contrib/one-true-awk/testdir/
H A DT.utfre16 op = $2
17 if (op == "~")
19 else if (op == "!~")
31 input, awk, neg, re, NR, re, op, input)
32 # printf(" %3d %s %s %s:\n", NR, re, op, input)
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v02.c1343 BYTE* op = ostart; in FSE_decompress_usingDTable_generic() local
1399 return op-ostart; in FSE_decompress_usingDTable_generic()
2757 do COPY8(op, ip) while (op < oend); in ZSTD_wildcopy()
3123 op = oLitEnd; in ZSTD_execSequence()
3157 ZSTD_wildcopy(op, match, oend_8 - op); in ZSTD_execSequence()
3161 while (op < oMatchEnd) *op++ = *match++; in ZSTD_execSequence()
3181 BYTE* op = ostart; in ZSTD_decompressSequences() local
3235 if (op != litPtr) memmove(op, litPtr, lastLLSize); in ZSTD_decompressSequences()
3241 return op-ostart; in ZSTD_decompressSequences()
3268 BYTE* op = ostart; in ZSTD_decompressDCtx() local
[all …]
/freebsd/crypto/openssl/crypto/evp/
H A Dkem.c137 ctx->op.encap.kem = kem; in evp_kem_init()
138 ctx->op.encap.algctx = kem->newctx(ossl_provider_ctx(kem->prov)); in evp_kem_init()
139 if (ctx->op.encap.algctx == NULL) { in evp_kem_init()
152 ret = kem->encapsulate_init(ctx->op.encap.algctx, provkey, params); in evp_kem_init()
160 ret = kem->decapsulate_init(ctx->op.encap.algctx, provkey, params); in evp_kem_init()
198 if (ctx->op.encap.algctx == NULL) { in EVP_PKEY_encapsulate()
206 return ctx->op.encap.kem->encapsulate(ctx->op.encap.algctx, in EVP_PKEY_encapsulate()
229 if (ctx->op.encap.algctx == NULL) { in EVP_PKEY_decapsulate()
233 return ctx->op.encap.kem->decapsulate(ctx->op.encap.algctx, in EVP_PKEY_decapsulate()
H A Dexchange.c335 ctx->op.kex.exchange = exchange; in EVP_PKEY_derive_init_ex()
336 ctx->op.kex.algctx = exchange->newctx(ossl_provider_ctx(exchange->prov)); in EVP_PKEY_derive_init_ex()
337 if (ctx->op.kex.algctx == NULL) { in EVP_PKEY_derive_init_ex()
342 ret = exchange->init(ctx->op.kex.algctx, provkey, params); in EVP_PKEY_derive_init_ex()
390 if (!EVP_PKEY_CTX_IS_DERIVE_OP(ctx) || ctx->op.kex.algctx == NULL) in EVP_PKEY_derive_set_peer_ex()
393 if (ctx->op.kex.exchange->set_peer == NULL) { in EVP_PKEY_derive_set_peer_ex()
419 EVP_KEYEXCH_get0_provider(ctx->op.kex.exchange), in EVP_PKEY_derive_set_peer_ex()
433 return ctx->op.kex.exchange->set_peer(ctx->op.kex.algctx, provkey); in EVP_PKEY_derive_set_peer_ex()
519 if (ctx->op.kex.algctx == NULL) in EVP_PKEY_derive()
522 ret = ctx->op.kex.exchange->derive(ctx->op.kex.algctx, key, pkeylen, in EVP_PKEY_derive()
/freebsd/sys/i386/i386/
H A Ddb_trace.c85 db_frame(struct db_variable *vp, db_expr_t *valuep, int op) in db_frame() argument
93 if (op == DB_VAR_GET) in db_frame()
101 db_frame_seg(struct db_variable *vp, db_expr_t *valuep, int op) in db_frame_seg() argument
129 if (op == DB_VAR_GET) in db_frame_seg()
137 db_esp(struct db_variable *vp, db_expr_t *valuep, int op) in db_esp() argument
143 if (op == DB_VAR_GET) in db_esp()
151 db_gs(struct db_variable *vp, db_expr_t *valuep, int op) in db_gs() argument
157 if (op == DB_VAR_GET) in db_gs()
163 if (op == DB_VAR_GET) in db_gs()
171 db_ss(struct db_variable *vp, db_expr_t *valuep, int op) in db_ss() argument
[all …]
/freebsd/crypto/openssl/test/
H A Dconstant_time_test.c61 static int test_binary_op(unsigned int (*op) (unsigned int a, unsigned int b), in test_binary_op()
65 if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE)) in test_binary_op()
67 if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE)) in test_binary_op()
73 char (*op) (unsigned int a, unsigned int b), in test_binary_op_8()
77 if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE_8)) in test_binary_op_8()
79 if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE_8)) in test_binary_op_8()
84 static int test_binary_op_s(size_t (*op) (size_t a, size_t b), in test_binary_op_s()
88 if (is_true && !TEST_size_t_eq(op(a,b), CONSTTIME_TRUE_S)) in test_binary_op_s()
90 if (!is_true && !TEST_uint_eq(op(a,b), CONSTTIME_FALSE_S)) in test_binary_op_s()
95 static int test_binary_op_64(uint64_t (*op)(uint64_t a, uint64_t b), in test_binary_op_64()
[all …]
/freebsd/sys/fs/fuse/
H A Dfuse_file.c138 int op = FUSE_OPEN; in fuse_filehandle_open() local
146 op = FUSE_OPENDIR; in fuse_filehandle_open()
153 if (fsess_not_impl(mp, op) && dataflags & fsess_no_op_support) { in fuse_filehandle_open()
157 fdisp_make_vp(&fdi, op, vp, td, cred); in fuse_filehandle_open()
166 fsess_set_notimpl(mp, op); in fuse_filehandle_open()
198 int op = FUSE_RELEASE; in fuse_filehandle_close() local
204 op = FUSE_RELEASEDIR; in fuse_filehandle_close()
206 if (fsess_not_impl(mp, op)) in fuse_filehandle_close()
210 fdisp_make_vp(&fdi, op, vp, td, cred); in fuse_filehandle_close()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp1270 return (base(op) && op.m_children.size() == 2 && in MatchBinaryOp()
1271 ((left(op.m_children[0]) && right(op.m_children[1])) || in MatchBinaryOp()
1272 (left(op.m_children[1]) && right(op.m_children[0])))); in MatchBinaryOp()
1281 return (base(op) && op.m_children.size() == 1 && child(op.m_children[0])); in MatchUnaryOp()
1300 reg = op.m_register; in FetchRegOp()
1309 ((op.m_negative && op.m_immediate == (uint64_t)-imm) || in MatchImmOp()
1310 (!op.m_negative && op.m_immediate == (uint64_t)imm))); in MatchImmOp()
1320 if (op.m_negative) { in FetchImmOp()
1321 imm = -((int64_t)op.m_immediate); in FetchImmOp()
1323 imm = ((int64_t)op.m_immediate); in FetchImmOp()
[all …]
/freebsd/contrib/lua/src/
H A Dlcode.c208 OpCode op; in luaK_ret() local
210 case 0: op = OP_RETURN0; break; in luaK_ret()
211 case 1: op = OP_RETURN1; break; in luaK_ret()
212 default: op = OP_RETURN; break; in luaK_ret()
1322 switch (op) { in validop()
1435 lua_assert(OP_ADD <= op && op <= OP_SHR); in codebinexpval()
1560 OpCode op; in codeorder() local
1592 OpCode op; in codeeq() local
1599 op = OP_EQI; in codeeq()
1603 op = OP_EQK; in codeeq()
[all …]
H A Dluaconf.h442 #define l_mathop(op) op##f argument
458 #define l_mathop(op) op##l argument
473 #define l_mathop(op) op argument
633 #define l_mathop(op) (lua_Number)op /* no variant */ argument
/freebsd/contrib/ntp/libntp/lib/isc/nothreads/include/isc/
H A Donce.h29 #define isc_once_do(op, f) \ argument
30 (!*(op) ? (f(), *(op) = ISC_TRUE, ISC_R_SUCCESS) : ISC_R_SUCCESS)
/freebsd/bin/setfacl/
H A Dsetfacl.c53 uint op; member
240 switch (entry->op) { in handle_file()
379 entry->op = OP_MERGE_ACL; in main()
391 entry->op = OP_REMOVE_ACL; in main()
412 entry->op = OP_ADD_ACL; in main()
417 entry->op = OP_REMOVE_EXT; in main()
428 entry->op = OP_REMOVE_DEF; in main()
436 entry->op = OP_MERGE_ACL; in main()
451 entry->op = OP_REMOVE_BY_NUMBER; in main()
456 entry->op = OP_REMOVE_ACL; in main()
/freebsd/usr.bin/systat/
H A Diolat.c165 op2num(const char *op) in op2num() argument
168 if (strcmp(op, ops[i]) == 0) in op2num()
174 find_dev(const char *dev, int unit, int op) in find_dev() argument
182 iosp = &isp->op_stats[op]; in find_dev()
189 alloc_dev(const char *dev, int unit, int op) in alloc_dev() argument
201 iosp = &isp->op_stats[op]; in alloc_dev()
211 iosp = find_dev(dev, unit, op); in update_dev()
213 iosp = alloc_dev(dev, unit, op); in update_dev()
272 int unit, op; in walk_sysctl() local
293 op = op2num(opstr); in walk_sysctl()
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Ddep-op-missing.mk11 @printf 'target ' > dep-op-missing.tmp
12 @${MAKE} -r -f dep-op-missing.tmp || exit 0
13 @rm dep-op-missing.tmp
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DDSDIRInstructions.td13 class LDSDIRe<bits<2> op, bit is_direct> : Enc32 {
23 let Inst{21-20} = op;
30 class VDSDIRe<bits<2> op, bit is_direct> : Enc32 {
42 let Inst{21-20} = op;
162 multiclass DSDIR_Real_gfx11<bits<2> op,
167 LDSDIRe<op, lds.is_direct> {
180 multiclass DSDIR_Real_gfx12<bits<2> op,
185 VDSDIRe<op, lds.is_direct> {
/freebsd/sys/dev/mlx4/mlx4_core/
H A Dmlx4_cmd.c191 switch (op) { in mlx4_internal_err_ret_value()
368 vhcr_cmd, op); in mlx4_comm_cmd_wait()
544 op); in mlx4_slave_cmd()
563 op); in mlx4_slave_cmd()
605 op); in mlx4_cmd_poll()
636 op); in mlx4_cmd_poll()
652 op, stat); in mlx4_cmd_poll()
703 op); in mlx4_cmd_wait()
730 op); in mlx4_cmd_wait()
990 vhcr->op, in mlx4_MAD_IFC_wrapper()
[all …]
/freebsd/contrib/bsnmp/snmpd/
H A Daction.c248 switch (op) { in op_system_group()
361 switch (op) { in op_debug()
453 switch (op) { in op_or_table()
508 switch (op) { in op_snmp()
591 switch (op) { in op_snmpd_stats()
635 switch (op) { in op_snmpd_config()
758 switch (op) { in op_community()
879 switch (op) { in dep_modules()
938 switch (op) { in op_modules()
1058 switch (op) { in op_snmp_set()
[all …]
/freebsd/crypto/openssl/crypto/objects/
H A Dobj_dat.c328 const unsigned int *op; in OBJ_obj2nid() local
350 if (op == NULL) in OBJ_obj2nid()
352 return nid_objs[*op].nid; in OBJ_obj2nid()
365 ASN1_OBJECT *op; in OBJ_txt2obj() local
409 return op; in OBJ_txt2obj()
580 const unsigned int *op; in OBJ_ln2nid() local
594 if (op == NULL) in OBJ_ln2nid()
596 return nid_objs[*op].nid; in OBJ_ln2nid()
604 const unsigned int *op; in OBJ_sn2nid() local
618 if (op == NULL) in OBJ_sn2nid()
[all …]
/freebsd/contrib/libedit/
H A Del.c179 el_wset(EditLine *el, int op, ...) in el_wset() argument
186 va_start(ap, op); in el_wset()
188 switch (op) { in el_wset()
193 rv = prompt_set(el, p, 0, op, 1); in el_wset()
216 rv = prompt_set(el, p, (wchar_t)c, op, 1); in el_wset()
248 switch (op) { in el_wset()
400 el_wget(EditLine *el, int op, ...) in el_wget() argument
408 va_start(ap, op); in el_wget()
410 switch (op) { in el_wget()
414 rv = prompt_get(el, p, 0, op); in el_wget()
[all …]
/freebsd/contrib/hyperv/tools/
H A Dhv_vss_daemon.c160 uint32_t op; in main() local
244 op = userdata.opt; in main()
246 switch (op) { in main()
257 VSS_LOG(LOG_ERR, "Illegal operation: %d\n", op); in main()
270 userdata.status, op == HV_VSS_FREEZE ? "Freeze" : in main()
271 (op == HV_VSS_THAW ? "Thaw" : "Check")); in main()
/freebsd/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/sys/contrib/zlib/
H A Dinftrees.c113 here.op = (unsigned char)64; /* invalid code marker */ in inflate_table()
213 here.op = (unsigned char)0; in inflate_table()
217 here.op = (unsigned char)(extra[work[sym] - match]); in inflate_table()
221 here.op = (unsigned char)(32 + 64); /* end of block */ in inflate_table()
279 (*table)[low].op = (unsigned char)curr; in inflate_table()
289 here.op = (unsigned char)64; /* invalid code marker */ in inflate_table()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_options.c43 const char *mp, *op, *vp; in _archive_set_option() local
49 op = (o != NULL && o[0] != '\0') ? o : NULL; in _archive_set_option()
52 if (op == NULL && vp == NULL) in _archive_set_option()
54 if (op == NULL) { in _archive_set_option()
59 r = use_option(a, mp, op, vp); in _archive_set_option()
68 vp?"":"!", mp?mp:"", mp?":":"", op, vp?"=":"", vp?vp:""); in _archive_set_option()

12345678910>>...60