Searched refs:ex (Results 76 - 100 of 183) sorted by relevance

12345678

/freebsd-13-stable/sys/contrib/ncsw/inc/Peripherals/
H A Dfm_mac_ext.h417 @Param[in] ex Type of the desired exceptions
424 t_Error FM_MAC_ConfigException(t_Handle h_FmMac, e_FmMacExceptions ex, bool enable);
611 @Param[in] ex - Type of the desired exceptions
619 t_Error FM_MAC_SetException(t_Handle h_FmMac, e_FmMacExceptions ex, bool enable);
/freebsd-13-stable/contrib/ntp/util/
H A Dntp-keygen.c1964 X509_EXTENSION *ex; /* X509v3 extension */ local
2011 ex = X509V3_EXT_conf_nid(NULL, NULL, NID_basic_constraints,
2013 if (!X509_add_ext(cert, ex, -1)) {
2018 X509_EXTENSION_free(ex);
2025 ex = X509V3_EXT_conf_nid(NULL, NULL, NID_key_usage, _UC(KEY_USAGE));
2026 if (!X509_add_ext(cert, ex, -1)) {
2031 X509_EXTENSION_free(ex);
2038 ex = X509V3_EXT_conf_nid(NULL, NULL,
2040 if (!X509_add_ext(cert, ex, -1)) {
2046 X509_EXTENSION_free(ex);
[all...]
/freebsd-13-stable/crypto/openssl/crypto/x509v3/
H A Dv3_purp.c267 int X509_supported_extension(X509_EXTENSION *ex) argument
296 int ex_nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex));
381 X509_EXTENSION *ex; local
543 ex = X509_get_ext(x, i);
544 if (OBJ_obj2nid(X509_EXTENSION_get_object(ex))
547 if (!X509_EXTENSION_get_critical(ex))
549 if (!X509_supported_extension(ex)) {
/freebsd-13-stable/contrib/smbfs/lib/smb/
H A Dnbns_rq.c259 fd_set rd, wr, ex; local
267 FD_ZERO(&ex);
273 n = select(s + 1, &rd, &wr, &ex, &tv);
/freebsd-13-stable/sys/contrib/ncsw/Peripherals/FM/MAC/
H A Dfm_mac.c241 t_Error FM_MAC_ConfigException (t_Handle h_FmMac, e_FmMacExceptions ex, bool enable) argument
248 return p_FmMacControllerDriver->f_FM_MAC_ConfigException(h_FmMac, ex, enable);
422 t_Error FM_MAC_SetException(t_Handle h_FmMac, e_FmMacExceptions ex, bool enable) argument
429 return p_FmMacControllerDriver->f_FM_MAC_SetException(h_FmMac, ex, enable);
H A Dfm_mac.h90 t_Error (*f_FM_MAC_SetException) (t_Handle h_FmMac, e_FmMacExceptions ex, bool enable);
/freebsd-13-stable/crypto/openssl/crypto/ts/
H A Dts_rsp_utils.c336 int TS_TST_INFO_add_ext(TS_TST_INFO *a, X509_EXTENSION *ex, int loc) argument
338 return X509v3_add_ext(&a->extensions, ex, loc) != NULL;
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-nice-strict_test.cc244 } catch (const std::runtime_error& ex) {
245 EXPECT_THAT(ex.what(), HasSubstr("ReturnNonDefaultConstructible"));
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dasn1t.h327 # define ASN1_IMP_EX(stname, field, type, tag, ex) \
328 ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | (ex), tag, stname, field, type)
330 # define ASN1_EXP_EX(stname, field, type, tag, ex) \
331 ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | (ex), tag, stname, field, type)
773 # define IMPLEMENT_ASN1_TYPE_ex(itname, vname, ex) \
775 ASN1_ITYPE_PRIMITIVE, V_##vname, NULL, 0, NULL, ex, #itname \
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlcode.c556 void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) { argument
559 freeexp(fs, ex);
560 exp2reg(fs, ex, var->u.info);
564 int e = luaK_exp2anyreg(fs, ex);
570 int e = luaK_exp2RK(fs, ex);
579 freeexp(fs, ex);
/freebsd-13-stable/contrib/lua/src/
H A Dlcode.c1033 ** Generate code to store result of expression 'ex' into variable 'var'.
1035 void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) { argument
1038 freeexp(fs, ex);
1039 exp2reg(fs, ex, var->u.var.sidx); /* compute 'ex' into proper place */
1043 int e = luaK_exp2anyreg(fs, ex);
1048 codeABRK(fs, OP_SETTABUP, var->u.ind.t, var->u.ind.idx, ex);
1052 codeABRK(fs, OP_SETI, var->u.ind.t, var->u.ind.idx, ex);
1056 codeABRK(fs, OP_SETFIELD, var->u.ind.t, var->u.ind.idx, ex);
1060 codeABRK(fs, OP_SETTABLE, var->u.ind.t, var->u.ind.idx, ex);
[all...]
/freebsd-13-stable/crypto/heimdal/lib/sl/
H A Dslc-gram.c1625 ex(struct assignment *a, const char *fmt, ...)
1666 ex(a, "unknown name %s", a->name);
1671 ex(as, "neither long nor short option");
1675 ex(as, "either of long or name option must be used");
1679 ex(as, "multiple long options");
1683 ex(as, "multiple short options");
1687 ex(as, "multiple types");
1691 ex(as, "multiple arguments");
1695 ex(as, "multiple help strings");
1699 ex(a
1622 ex(struct assignment *a, const char *fmt, ...) function
[all...]
/freebsd-13-stable/lib/msun/src/
H A Dmath_private.h307 #define LD80C(m, ex, v) { \
309 .xbits.expsign = (0x3fff + (ex)) | ((v) < 0 ? 0x8000 : 0), \
313 #define LD80C(m, ex, v) { .e = (v), }
/freebsd-13-stable/sys/netinet6/
H A Din6_var.h565 uint16_t ex; /* # of exclusive members */ member in struct:ip6_msource::im6s_st
743 inm->in6m_st[t].iss_ex == ims->im6s_st[t].ex)
745 else if (ims->im6s_st[t].in > 0 && ims->im6s_st[t].ex == 0)
/freebsd-13-stable/contrib/nvi/ex/
H A Dextern.h1 int ex(SCR **);
/freebsd-13-stable/rescue/rescue/
H A DMakefile209 CRUNCH_ALIAS_vi= ex
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-log.c397 control.s.ex = 1;
/freebsd-13-stable/sys/dev/iser/
H A Diser_memory.c145 inv_wr->ex.invalidate_rkey = mr->rkey;
/freebsd-13-stable/contrib/netbsd-tests/net/
H A Dnet_common.sh282 gdb -ex bt /usr/bin/rump_server rump_server.core
/freebsd-13-stable/usr.bin/vi/catalog/
H A DMakefile16 SCAN= ${V}/cl/*.c ${V}/common/*.c ${V}/ex/*.c ${V}/vi/*.c
/freebsd-13-stable/usr.sbin/crashinfo/
H A Dcrashinfo.sh71 ${GDB} -batch -ex "$@" $k
/freebsd-13-stable/tools/tools/build_option_survey/
H A Doption_survey.sh5 set -ex
/freebsd-13-stable/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_cq.c202 wc->ex.imm_data = cqe->imm_inval_pkey;
214 wc->ex.imm_data = cqe->imm_inval_pkey;
219 wc->ex.invalidate_rkey = be32_to_cpu(cqe->imm_inval_pkey);
1176 goto ex;
1182 ex:
1297 goto ex;
1373 ex:
/freebsd-13-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dnetbsd_syscall_hooks.h484 #define __sanitizer_syscall_pre_compat_50_select(nd, in, ou, ex, tv) \
486 (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex), \
488 #define __sanitizer_syscall_post_compat_50_select(res, nd, in, ou, ex, tv) \
490 res, (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex), \
1992 #define __sanitizer_syscall_pre_compat_50_pselect(nd, in, ou, ex, ts, mask) \
1994 (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex), \
1996 #define __sanitizer_syscall_post_compat_50_pselect(res, nd, in, ou, ex, ts, \
1999 res, (long long)(nd), (long long)(in), (long long)(ou), (long long)(ex), \
2260 #define __sanitizer_syscall_pre___select50(nd, in, ou, ex, tv) \
2262 (long long)(ou), (long long)(ex), \
[all...]
/freebsd-13-stable/sys/contrib/openzfs/cmd/arc_summary/
H A Darc_summary3235 def handle_Exception(ex_cls, ex, tb):
245 if ex.errno == errno.ENOTCONN:
248 raise ex

Completed in 270 milliseconds

12345678