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

12345678910

/freebsd-11-stable/sys/sys/
H A Dimgact_aout.h36 #define N_GETMAGIC(ex) \
37 ( le32toh((ex).a_midmag) & 0xffff )
38 #define N_GETMID(ex) \
39 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETMID_NET(ex) : \
40 ((ex).a_midmag >> 16) & 0x03ff )
41 #define N_GETFLAG(ex) \
42 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETFLAG_NET(ex) : \
43 ((ex)
[all...]
/freebsd-11-stable/share/doc/usd/10.exref/exref/
H A DMakefile3 SRCS= ex.rm
/freebsd-11-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-11-stable/gnu/usr.bin/grep/
H A Dexclude.c49 struct exclude *ex = (struct exclude *) xmalloc (sizeof (struct exclude)); local
50 ex->exclude_count = 0;
51 ex->exclude_alloc = 64;
52 ex->exclude = (char const **) xmalloc (ex->exclude_alloc * sizeof (char *));
53 return ex;
57 excluded_filename (struct exclude const *ex, char const *f, int options) argument
59 char const * const *exclude = ex->exclude;
60 int exclude_count = ex->exclude_count;
71 add_exclude (struct exclude *ex, cha argument
82 add_exclude_file(void (*add_func) PARAMS ((struct exclude *, char const *)), struct exclude *ex, char const *filename, char line_end) argument
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dfrexp.c34 frexp(double d, int *ex) argument
42 *ex = 0;
45 *ex = u.bits.exp - 1536;
49 case 2047: /* infinity or NaN; value of *ex is unspecified */
52 *ex = u.bits.exp - 1022;
/freebsd-11-stable/share/doc/usd/10.exref/summary/
H A DMakefile4 SRCS= ex.summary
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509_v3.c90 X509_EXTENSION *ex; local
99 ex = sk_X509_EXTENSION_value(sk, lastpos);
100 if (OBJ_cmp(ex->object, obj) == 0)
110 X509_EXTENSION *ex; local
119 ex = sk_X509_EXTENSION_value(sk, lastpos);
120 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit))
145 X509_EXTENSION *ex, int loc)
168 if ((new_ex = X509_EXTENSION_dup(ex)) == NULL)
185 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, in argument
203 X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data) argument
234 X509_EXTENSION_set_object(X509_EXTENSION *ex, ASN1_OBJECT *obj) argument
243 X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) argument
251 X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data) argument
263 X509_EXTENSION_get_object(X509_EXTENSION *ex) argument
270 X509_EXTENSION_get_data(X509_EXTENSION *ex) argument
277 X509_EXTENSION_get_critical(X509_EXTENSION *ex) argument
[all...]
/freebsd-11-stable/lib/msun/src/
H A Ds_frexpl.c39 frexpl(long double x, int *ex) argument
47 *ex = 0;
50 *ex = u.bits.exp - 0x4200;
54 case 0x7fff: /* infinity or NaN; value of *ex is unspecified */
57 *ex = u.bits.exp - 0x3ffe;
H A Ds_rintl.c59 int ex, sign; local
63 ex = expsign & 0x7fff;
65 if (ex >= BIAS + LDBL_MANT_DIG - 1) {
66 if (ex == BIAS + LDBL_MAX_EXP)
86 if (ex < BIAS && x == 0.0L)
/freebsd-11-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-11-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-11-stable/usr.bin/find/
H A Dfind.h106 } ex; member in union:_plandata::__anon13761
127 #define e_argv p_un.ex._e_argv
128 #define e_orig p_un.ex._e_orig
129 #define e_len p_un.ex._e_len
130 #define e_pbnum p_un.ex._e_pbnum
131 #define e_ppos p_un.ex._e_ppos
132 #define e_pnummax p_un.ex._e_pnummax
133 #define e_psize p_un.ex._e_psize
134 #define e_pbsize p_un.ex._e_pbsize
135 #define e_psizemax p_un.ex
[all...]
/freebsd-11-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-11-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-11-stable/usr.bin/ldd/
H A Dsods.c114 static const struct exec *ex; variable in typeref:struct:exec
212 ex = (const struct exec *) align_struct(file_base);
214 printf("%s: a_midmag = 0x%lx\n", fname, (long)ex->a_midmag);
216 (long)N_GETMAGIC(*ex), (long)N_GETMAGIC(*ex),
217 (long)N_GETMAGIC_NET(*ex), (long)N_GETMAGIC_NET(*ex));
219 if (N_BADMAG(*ex)) {
226 printf(" a_text = 0x%lx\n", (long)ex->a_text);
227 printf(" a_data = 0x%lx\n", (long)ex
[all...]
/freebsd-11-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-11-stable/crypto/openssl/crypto/ts/
H A Dts_lib.c102 X509_EXTENSION *ex; local
108 ex = X509v3_get_ext(extensions, i);
109 obj = X509_EXTENSION_get_object(ex);
111 critical = X509_EXTENSION_get_critical(ex);
113 if (!X509V3_EXT_print(bio, ex, 0, 4)) {
115 M_ASN1_OCTET_STRING_print(bio, ex->value);
/freebsd-11-stable/usr.sbin/pmcstudy/
H A Deval_expr.c41 struct expression *ex, *at; local
43 ex = malloc(sizeof(struct expression));
44 if (ex == NULL) {
48 memset(ex, 0, sizeof(struct expression));
50 *exp_p = ex;
55 *last_p = ex;
58 at->next = ex;
59 ex->prev = at;
60 *last_p = ex;
62 return (ex);
213 struct expression *at, *ex; local
273 struct expression *at, *ex; local
[all...]
/freebsd-11-stable/sys/modules/ex/
H A DMakefile1 # $FreeBSD: stable/11/sys/modules/ex/Makefile 319182 2017-05-30 04:11:12Z ngie $
4 .PATH: ${SRCTOP}/sys/dev/ex
/freebsd-11-stable/usr.sbin/eeprom/
H A Dofw_options.c251 const struct ofwo_extabent *ex; local
264 for (ex = ofwo_extab; ex->ex_prop != NULL; ++ex)
265 if (strcmp(ex->ex_prop, prop) == 0)
267 if (ex->ex_prop != NULL)
268 (*ex->ex_handler)(ex, fd, pbuf, len, NULL);
282 const struct ofwo_extabent *ex; local
298 for (ex
[all...]
/freebsd-11-stable/contrib/amd/amd/
H A Damfs_host.c96 make_mntpt(char *mntpt, size_t l, const exports ex, const char *mf_mount) argument
98 if (ex->ex_dir[0] == '/') {
99 if (ex->ex_dir[1] == 0)
102 xsnprintf(mntpt, l, "%s%s", mf_mount, ex->ex_dir);
103 } else if (ex->ex_dir[0] >= 'a' &&
104 ex->ex_dir[0] <= 'z' &&
105 ex->ex_dir[1] == ':' &&
106 ex->ex_dir[2] == '/' &&
107 ex->ex_dir[3] == 0)
108 xsnprintf(mntpt, l, "%s/%c%%", mf_mount, ex
308 exports exlist = 0, ex; local
[all...]

Completed in 159 milliseconds

12345678910