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

123456789

/freebsd-10.0-release/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-10.0-release/share/doc/usd/10.exref/exref/
H A DMakefile3 SRCS= ex.rm
/freebsd-10.0-release/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-10.0-release/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-10.0-release/contrib/nvi/docs/USD.doc/exref/
H A DMakefile8 exref.ps: ex.rm
9 ${TBL} ex.rm | ${ROFF} -ms > $@
12 summary.ps: ex.summary
13 ${TBL} ex.summary | ${ROFF} -ms > $@
/freebsd-10.0-release/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-10.0-release/share/doc/usd/10.exref/summary/
H A DMakefile4 SRCS= ex.summary
/freebsd-10.0-release/crypto/openssl/crypto/x509/
H A Dx509_v3.c88 X509_EXTENSION *ex; local
97 ex=sk_X509_EXTENSION_value(sk,lastpos);
98 if (OBJ_cmp(ex->object,obj) == 0)
108 X509_EXTENSION *ex; local
117 ex=sk_X509_EXTENSION_value(sk,lastpos);
118 if ( ((ex->critical > 0) && crit) ||
119 ((ex->critical <= 0) && !crit))
144 X509_EXTENSION *ex, int loc)
168 if ((new_ex=X509_EXTENSION_dup(ex)) == NULL)
183 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, in argument
200 X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data) argument
231 X509_EXTENSION_set_object(X509_EXTENSION *ex, ASN1_OBJECT *obj) argument
240 X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) argument
247 X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data) argument
257 X509_EXTENSION_get_object(X509_EXTENSION *ex) argument
263 X509_EXTENSION_get_data(X509_EXTENSION *ex) argument
269 X509_EXTENSION_get_critical(X509_EXTENSION *ex) argument
[all...]
/freebsd-10.0-release/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-10.0-release/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 = (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
309 dependent_exception_cleanup(_Unwind_Reason_Code reason, struct _Unwind_Exception *ex) argument
319 free_exception_list(__cxa_exception *ex) argument
600 __cxa_exception *ex = ((__cxa_exception*)thrown_exception) - 1; local
636 __cxa_dependent_exception *ex = ((__cxa_dependent_exception*)thrown_exception) - 1; local
726 throw_exception(__cxa_exception *ex) argument
758 __cxa_exception *ex = ((__cxa_exception*)thrown_exception) - 1; local
776 __cxa_dependent_exception *ex = ((__cxa_dependent_exception*)__cxa_allocate_dependent_exception())-1; local
791 __cxa_exception *ex = globals->caughtExceptions; local
802 __cxa_exception *ex = ((__cxa_exception*)thrown_exception) - 1; local
809 __cxa_exception *ex = ((__cxa_exception*)thrown_exception) - 1; local
829 __cxa_exception *ex = globals->caughtExceptions; local
895 check_type_signature(__cxa_exception *ex, const std::type_info *type, void *&adjustedPtr) argument
946 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
1019 pushCleanupException(_Unwind_Exception *exceptionObject, __cxa_exception *ex) argument
1052 __cxa_exception *ex = 0; variable
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp52 const Expr *ex = 0; local
61 ex = B->getLHS();
66 ex = B->getRHS();
72 ex = VD->getInit();
79 if (ex) {
80 R->addRange(ex->getSourceRange());
81 bugreporter::trackNullOrUndefValue(N, ex, *R);
/freebsd-10.0-release/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-10.0-release/usr.bin/find/
H A Dfind.h106 } ex; member in union:_plandata::__anon11420
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-10.0-release/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-10.0-release/usr.bin/ldd/
H A Dsods.c112 static const struct exec *ex; variable in typeref:struct:exec
211 ex = (const struct exec *) align_struct(file_base);
213 printf("%s: a_midmag = 0x%lx\n", fname, (long)ex->a_midmag);
215 (long)N_GETMAGIC(*ex), (long)N_GETMAGIC(*ex),
216 (long)N_GETMAGIC_NET(*ex), (long)N_GETMAGIC_NET(*ex));
218 if (N_BADMAG(*ex)) {
225 printf(" a_text = 0x%lx\n", (long)ex->a_text);
226 printf(" a_data = 0x%lx\n", (long)ex
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/ts/
H A Dts_lib.c103 X509_EXTENSION *ex; local
110 ex = X509v3_get_ext(extensions, i);
111 obj = X509_EXTENSION_get_object(ex);
113 critical = X509_EXTENSION_get_critical(ex);
115 if (!X509V3_EXT_print(bio, ex, 0, 4))
118 M_ASN1_OCTET_STRING_print(bio, ex->value);
/freebsd-10.0-release/sys/modules/ex/
H A DMakefile4 .PATH: ${.CURDIR}/../../dev/ex
/freebsd-10.0-release/usr.sbin/eeprom/
H A Dofw_options.c249 const struct ofwo_extabent *ex; local
262 for (ex = ofwo_extab; ex->ex_prop != NULL; ++ex)
263 if (strcmp(ex->ex_prop, prop) == 0)
265 if (ex->ex_prop != NULL)
266 (*ex->ex_handler)(ex, fd, pbuf, len, NULL);
280 const struct ofwo_extabent *ex; local
296 for (ex
[all...]
/freebsd-10.0-release/contrib/amd/amd/
H A Damfs_host.c100 make_mntpt(char *mntpt, size_t l, const exports ex, const char *mf_mount) argument
102 if (ex->ex_dir[0] == '/') {
103 if (ex->ex_dir[1] == 0)
106 xsnprintf(mntpt, l, "%s%s", mf_mount, ex->ex_dir);
107 } else if (ex->ex_dir[0] >= 'a' &&
108 ex->ex_dir[0] <= 'z' &&
109 ex->ex_dir[1] == ':' &&
110 ex->ex_dir[2] == '/' &&
111 ex->ex_dir[3] == 0)
112 xsnprintf(mntpt, l, "%s/%c%%", mf_mount, ex
305 exports exlist = 0, ex; local
[all...]
/freebsd-10.0-release/contrib/mdocml/
H A Dstyle.css14 h1 { margin-bottom: 1ex; font-size: 110%; margin-left: -4ex; } /* Section header (Sh, SH). */
15 h2 { margin-bottom: 1ex; font-size: 105%; margin-left: -2ex; } /* Sub-section header (Ss, SS). */
16 table { width: 100%; margin-top: 0ex; margin-bottom: 0ex; } /* All tables. */
19 blockquote { margin-left: 5ex; margin-top: 0ex; margin-bottom: 0ex; } /* D1. */
20 div.section { margin-bottom: 2ex; margi
[all...]

Completed in 148 milliseconds

123456789