Searched refs:ex (Results 1 - 25 of 183) sorted by relevance

12345678

/freebsd-13-stable/sys/sys/
H A Dimgact_aout.h38 #define N_GETMAGIC(ex) \
39 ( le32toh((ex).a_midmag) & 0xffff )
40 #define N_GETMID(ex) \
41 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETMID_NET(ex) : \
42 ((ex).a_midmag >> 16) & 0x03ff )
43 #define N_GETFLAG(ex) \
44 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETFLAG_NET(ex) : \
45 ((ex)
[all...]
H A Dsmr_types.h70 * external mechanism. 'ex' should contain an assert that the
73 #define smr_serialized_load(p, ex) ({ \
74 SMR_ASSERT(ex, "smr_serialized_load"); \
80 * external mechanism. 'ex' should contain an assert that the
86 #define smr_serialized_store(p, v, ex) do { \
87 SMR_ASSERT(ex, "smr_serialized_store"); \
94 * while serialized by an external mechanism. 'ex' should contain
99 #define smr_serialized_swap(p, v, ex) ({ \
100 SMR_ASSERT(ex, "smr_serialized_swap"); \
113 #define smr_unserialized_load(p, ex) ({ \
[all...]
H A D_smr.h47 #define SMR_ASSERT(ex, fn) \
48 KASSERT((ex), (fn ": Assertion " #ex " failed at %s:%d", __FILE__, __LINE__))
/freebsd-13-stable/share/doc/usd/10.exref/exref/
H A DMakefile3 SRCS= ex.rm
/freebsd-13-stable/contrib/sendmail/libsm/
H A Dstrexit.c22 ** ex -- EX_* value
29 sm_strexit(ex)
30 int ex;
35 msg = sm_sysexitmsg(ex);
39 ex);
49 ** ex -- EX_* value
52 ** If ex is a known exit value, then a pointer to a static
57 sm_sysexitmsg(ex)
58 int ex;
62 msg = sm_sysexmsg(ex);
[all...]
/freebsd-13-stable/lib/libc/gen/
H A Dfrexp.c36 frexp(double d, int *ex) argument
44 *ex = 0;
47 *ex = u.bits.exp - 1536;
51 case 2047: /* infinity or NaN; value of *ex is unspecified */
54 *ex = u.bits.exp - 1022;
/freebsd-13-stable/share/doc/usd/10.exref/summary/
H A DMakefile4 SRCS= ex.summary
/freebsd-13-stable/crypto/openssl/crypto/x509/
H A Dx509_v3.c42 X509_EXTENSION *ex; local
51 ex = sk_X509_EXTENSION_value(sk, lastpos);
52 if (OBJ_cmp(ex->object, obj) == 0)
62 X509_EXTENSION *ex; local
71 ex = sk_X509_EXTENSION_value(sk, lastpos);
72 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit))
97 X509_EXTENSION *ex, int loc)
120 if ((new_ex = X509_EXTENSION_dup(ex)) == NULL)
136 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, in argument
154 X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, const ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data) argument
185 X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj) argument
194 X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) argument
202 X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data) argument
214 X509_EXTENSION_get_object(X509_EXTENSION *ex) argument
221 X509_EXTENSION_get_data(X509_EXTENSION *ex) argument
228 X509_EXTENSION_get_critical(const X509_EXTENSION *ex) argument
[all...]
/freebsd-13-stable/lib/msun/src/
H A Ds_frexpl.c41 frexpl(long double x, int *ex) argument
49 *ex = 0;
52 *ex = u.bits.exp - 0x4200;
56 case 0x7fff: /* infinity or NaN; value of *ex is unspecified */
59 *ex = u.bits.exp - 0x3ffe;
H A Ds_rintl.c61 int ex, sign; local
65 ex = expsign & 0x7fff;
67 if (ex >= BIAS + LDBL_MANT_DIG - 1) {
68 if (ex == BIAS + LDBL_MAX_EXP)
88 if (ex < BIAS && x == 0.0L)
/freebsd-13-stable/contrib/libcxxrt/
H A Dexception.cc70 struct __cxa_exception *ex,
82 if (ex)
84 ex->handlerSwitchValue = selector;
85 ex->catchTemp = landingPad;
94 struct __cxa_exception *ex,
103 if (ex)
105 *selector = ex->handlerSwitchValue;
106 *landingPad = reinterpret_cast<dw_eh_ptr_t>(ex->catchTemp);
113 static inline _Unwind_Reason_Code continueUnwinding(struct _Unwind_Exception *ex, argument
117 if (__gnu_unwind_frame(ex, contex
68 saveLandingPad(struct _Unwind_Context *context, struct _Unwind_Exception *ucb, struct __cxa_exception *ex, int selector, dw_eh_ptr_t landingPad) argument
92 loadLandingPad(struct _Unwind_Context *context, struct _Unwind_Exception *ucb, struct __cxa_exception *ex, unsigned long *selector, dw_eh_ptr_t *landingPad) argument
268 exceptionFromPointer(void *ex) argument
273 realExceptionFromException(__cxa_exception *ex) argument
304 exception_cleanup(_Unwind_Reason_Code reason, struct _Unwind_Exception *ex) argument
313 dependent_exception_cleanup(_Unwind_Reason_Code reason, struct _Unwind_Exception *ex) argument
323 free_exception_list(__cxa_exception *ex) argument
621 __cxa_exception *ex = reinterpret_cast<__cxa_exception*>(thrown_exception) - 1; local
658 __cxa_dependent_exception *ex = reinterpret_cast<__cxa_dependent_exception*>(thrown_exception) - 1; local
759 throw_exception(__cxa_exception *ex) argument
791 __cxa_exception *ex = reinterpret_cast<__cxa_exception*>(thrown_exception) - 1; local
809 __cxa_dependent_exception *ex = reinterpret_cast<__cxa_dependent_exception*>(__cxa_allocate_dependent_exception())-1; local
824 __cxa_exception *ex = globals->caughtExceptions; local
835 __cxa_exception *ex = static_cast<__cxa_exception*>(thrown_exception) - 1; local
842 __cxa_exception *ex = static_cast<__cxa_exception*>(thrown_exception) - 1; local
862 __cxa_exception *ex = globals->caughtExceptions; local
935 check_type_signature(__cxa_exception *ex, const std::type_info *type, void *&adjustedPtr) argument
986 check_action_record(_Unwind_Context *context, dwarf_eh_lsda *lsda, dw_eh_ptr_t action_record, __cxa_exception *ex, unsigned long *selector, void *&adjustedPtr) argument
1059 pushCleanupException(_Unwind_Exception *exceptionObject, __cxa_exception *ex) argument
1092 __cxa_exception *ex = 0; variable
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock_ex_test.cc73 } catch (const std::exception& ex) {
74 EXPECT_THAT(ex.what(), HasSubstr("has no default value"));
/freebsd-13-stable/contrib/diff/lib/
H A Dexclude.c102 free_exclude (struct exclude *ex) argument
104 free (ex->exclude);
105 free (ex);
137 excluded_filename (struct exclude const *ex, char const *f) argument
139 size_t exclude_count = ex->exclude_count;
146 struct patopts const *exclude = ex->exclude;
183 add_exclude (struct exclude *ex, char const *pattern, int options) argument
187 if (ex->exclude_count == ex->exclude_alloc)
188 ex
202 add_exclude_file(void (*add_func) (struct exclude *, char const *, int), struct exclude *ex, char const *filename, int options, char line_end) argument
[all...]
/freebsd-13-stable/usr.bin/find/
H A Dfind.h135 } ex; member in union:_plandata::__anon16341
156 #define e_argv p_un.ex._e_argv
157 #define e_orig p_un.ex._e_orig
158 #define e_len p_un.ex._e_len
159 #define e_pbnum p_un.ex._e_pbnum
160 #define e_ppos p_un.ex._e_ppos
161 #define e_pnummax p_un.ex._e_pnummax
162 #define e_psize p_un.ex._e_psize
163 #define e_pbsize p_un.ex._e_pbsize
164 #define e_psizemax p_un.ex
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp62 const Expr *ex = nullptr; local
69 ex = U->getSubExpr();
78 ex = B->getLHS();
83 ex = B->getRHS();
89 ex = VD->getInit();
112 if (ex) {
113 R->addRange(ex->getSourceRange());
114 bugreporter::trackExpressionValue(N, ex, *R);
/freebsd-13-stable/contrib/gdtoa/
H A Dg_xfmt.c65 int decpt, ex, i, mode; local
81 if ( (ex = L[_0] & 0x7fff) !=0) {
82 if (ex == 0x7fff) {
98 ex = 1;
110 ex -= 0x3fff + 63;
117 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dg_dfmt.c44 int decpt, ex, i, mode; local
82 if ( (ex = (L[_0] >> 20) & 0x7ff) !=0)
85 ex = 1;
86 ex -= 0x3ff + 52;
93 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dg_ffmt.c44 int decpt, ex, i, mode; local
79 if ( (ex = (L[0] >> 23) & 0xff) !=0)
82 ex = 1;
83 ex -= 0x7f + 23;
91 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dg_xLfmt.c60 int decpt, ex, i, mode; local
76 if ( (ex = (L[_0] >> 16) & 0x7fff) !=0) {
77 if (ex == 0x7fff) {
104 ex -= 0x3fff + 63;
111 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dg_Qfmt.c62 int decpt, ex, i, mode; local
81 if ( (ex = (L[_0] & 0x7fff0000L) >> 16) !=0) {
82 if (ex == 0x7fff) {
99 ex = 1;
110 ex -= 0x3fff + 112;
117 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
/freebsd-13-stable/contrib/netbsd-tests/kernel/
H A Dt_extent.c47 static struct extent *ex; variable in typeref:struct:extent
50 ATF_REQUIRE((ex = extent_create(name, \
54 ATF_REQUIRE_EQ_MSG(ret = extent_alloc_region(ex, \
58 ATF_REQUIRE_EQ_MSG(ret = extent_free(ex, \
68 atf_tc_fail("extent_alloc_subregion1(ex, %#lx, %#lx, %#lx, %#lx, 0, " \
72 ret = extent_alloc_subregion1(ex, substart, subend, size,
91 ATF_REQUIRE_STREQ_MSG(ex->ex_name, name,
92 "expected: \"%s\", got: \"%s\"", name, ex->ex_name);
93 ATF_REQUIRE_EQ_MSG(ex->ex_start, start,
94 "expected: %#lx, got: %#lx", start, ex
[all...]
/freebsd-13-stable/crypto/openssl/crypto/ts/
H A Dts_lib.c51 X509_EXTENSION *ex; local
57 ex = X509v3_get_ext(extensions, i);
58 obj = X509_EXTENSION_get_object(ex);
61 critical = X509_EXTENSION_get_critical(ex);
63 if (!X509V3_EXT_print(bio, ex, 0, 4)) {
65 ASN1_STRING_print(bio, X509_EXTENSION_get_data(ex));
/freebsd-13-stable/lib/msun/ld128/
H A De_rem_pio2l.h68 int e0,ex,i,j,nx; local
73 ex = expsign & 0x7fff;
74 if (ex < BIAS + 45 || ex == BIAS + 45 &&
85 j = ex;
114 if(ex==0x7fff) { /* x is inf or NaN */
119 e0 = ex - BIAS - 23; /* e0 = ilogb(|x|)-23; */
120 u1.xbits.expsign = ex - e0;
/freebsd-13-stable/usr.sbin/pmcstudy/
H A Deval_expr.c40 struct expression *ex, *at; local
42 ex = malloc(sizeof(struct expression));
43 if (ex == NULL) {
47 memset(ex, 0, sizeof(struct expression));
49 *exp_p = ex;
54 *last_p = ex;
57 at->next = ex;
58 ex->prev = at;
59 *last_p = ex;
61 return (ex);
212 struct expression *at, *ex; local
272 struct expression *at, *ex; local
[all...]
/freebsd-13-stable/lib/msun/ld80/
H A De_rem_pio2l.h79 int e0,ex,i,j,nx,n; local
84 ex = expsign & 0x7fff;
85 if (ex < BIAS + 25 || (ex == BIAS + 25 && u.bits.manh < 0xc90fdaa2)) {
94 j = ex;
123 if(ex==0x7fff) { /* x is inf or NaN */
128 e0 = ex - BIAS - 23; /* e0 = ilogb(|x|)-23; */
129 u1.xbits.expsign = ex - e0;

Completed in 283 milliseconds

12345678