Searched refs:ex (Results 26 - 50 of 238) sorted by relevance

12345678910

/freebsd-11-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 &&
90 j = ex;
119 if(ex==0x7fff) { /* x is inf or NaN */
124 e0 = ex - BIAS - 23; /* e0 = ilogb(|x|)-23; */
125 u1.xbits.expsign = ex - e0;
/freebsd-11-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)) {
100 j = ex;
129 if(ex==0x7fff) { /* x is inf or NaN */
134 e0 = ex - BIAS - 23; /* e0 = ilogb(|x|)-23; */
135 u1.xbits.expsign = ex - e0;
/freebsd-11-stable/lib/msun/tests/
H A Dnext_test.c46 #define test(exp, ans, ex) do { \
49 _testl(#exp, __LINE__, (exp), __ans, (ex)); \
51 #define testf(exp, ans, ex) do { \
54 _testl(#exp, __LINE__, (exp), __ans, (ex)); \
56 #define testl(exp, ans, ex) do { \
59 _testl(#exp, __LINE__, (exp), __ans, (ex)); \
61 #define testboth(arg1, arg2, ans, ex, prec) do { \
62 test##prec(nextafter##prec((arg1), (arg2)), (ans), (ex)); \
63 test##prec(nexttoward##prec((arg1), (arg2)), (ans), (ex)); \
65 #define testall(arg1, arg2, ans, ex) d
[all...]
/freebsd-11-stable/sbin/ggate/ggated/
H A Dggated.c153 struct ggd_export *ex; local
216 ex = malloc(sizeof(*ex));
217 if (ex == NULL)
219 ex->e_path = strdup(path);
220 if (ex->e_path == NULL)
224 ex->e_ip = (ip & mask);
225 ex->e_mask = mask;
226 ex->e_flags = flags;
228 SLIST_INSERT_HEAD(&exports, ex, e_nex
237 struct ggd_export *ex; local
306 exports_check(struct ggd_export *ex, struct g_gate_cinit *cinit, struct ggd_connection *conn) argument
366 struct ggd_export *ex; local
841 struct ggd_export *ex; local
[all...]
/freebsd-11-stable/contrib/elftoolchain/libelf/
H A Delf_update.c351 struct _Elf_Extent *ex; local
353 while ((ex = SLIST_FIRST(extents)) != NULL) {
355 free(ex);
411 struct _Elf_Extent *ex, *prevt; local
427 if ((ex = malloc(sizeof(struct _Elf_Extent))) == NULL) {
431 ex->ex_start = start;
432 ex->ex_size = size;
433 ex->ex_desc = desc;
434 ex->ex_type = type;
438 SLIST_INSERT_AFTER(prevt, ex, ex_nex
719 _libelf_write_scn(Elf *e, unsigned char *nf, struct _Elf_Extent *ex) argument
848 _libelf_write_ehdr(Elf *e, unsigned char *nf, struct _Elf_Extent *ex) argument
892 _libelf_write_phdr(Elf *e, unsigned char *nf, struct _Elf_Extent *ex) argument
954 _libelf_write_shdr(Elf *e, unsigned char *nf, struct _Elf_Extent *ex) argument
1039 struct _Elf_Extent *ex; local
[all...]
/freebsd-11-stable/contrib/gdtoa/
H A Dg_ddfmt.c44 int bx, by, decpt, ex, ey, i, j, mode; local
108 z = d2b(dval(&dd[0]), &ex, &bx);
113 if ( (i = ex - ey) !=0) {
116 ex = ey;
140 ex += i;
166 s = gdtoa(&fpi, ex, bits, &i, mode, ndig, &decpt, &se);
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509_ext.c109 int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc) argument
111 return (X509v3_add_ext(&(x->crl->extensions), ex, loc) != NULL);
145 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc) argument
147 return (X509v3_add_ext(&(x->cert_info->extensions), ex, loc) != NULL);
193 int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc) argument
195 return (X509v3_add_ext(&(x->extensions), ex, loc) != NULL);
/freebsd-11-stable/usr.sbin/kgzip/
H A Dkgzld.c65 struct exec ex; member in union:__anon8760
71 else if (n >= sizeof(hdr.ex) &&
72 N_GETMAGIC(hdr.ex) == OMAGIC)
/freebsd-11-stable/contrib/gcc/config/soft-fp/
H A Dsoft-fp.h113 #define FP_SET_EXCEPTION(ex) \
114 _fex |= (ex)
116 #define FP_UNSET_EXCEPTION(ex) \
117 _fex &= ~(ex)
/freebsd-11-stable/contrib/gdb/gdb/
H A Dscm-exp.c111 char ex = 0; local
151 ex = 2;
157 ex = 1;
163 switch (ex)
/freebsd-11-stable/share/man/man4/man4.i386/
H A DMakefile15 ex.4 \
/freebsd-11-stable/tests/sys/opencrypto/
H A Druntests.sh32 set -ex
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A Dslc-gram.y113 ex(struct assignment *a, const char *fmt, ...)
154 ex(a, "unknown name %s", a->name);
159 ex(as, "neither long nor short option");
163 ex(as, "either of long or name option must be used");
167 ex(as, "multiple long options");
171 ex(as, "multiple short options");
175 ex(as, "multiple types");
179 ex(as, "multiple arguments");
183 ex(as, "multiple help strings");
187 ex(a
[all...]
/freebsd-11-stable/usr.sbin/btxld/
H A Dbtxld.c327 const struct exec *ex; local
347 ex = p;
348 if (hdr->size >= sizeof(struct exec) && !N_BADMAG(*ex)) {
350 x = N_GETMAGIC(*ex);
357 hdr->text = le32toh(ex->a_text);
358 hdr->data = le32toh(ex->a_data);
359 hdr->bss = le32toh(ex->a_bss);
360 hdr->entry = le32toh(ex->a_entry);
361 if (le32toh(ex->a_entry) >= BTX_PGSIZE)
404 struct exec ex; local
[all...]
/freebsd-11-stable/crypto/openssl/util/pl/
H A DOS2-EMX.pl100 local($ex)=($target =~ /O_SSL/)?' $(L_CRYPTO)':'';
101 $ex.=' -lsocket';
102 $ret.="\t\$(LINK_CMD) \$(SHLIB_CFLAGS) \$(MLFLAGS) $efile$target \$(SHLIB_EX_OBJ) \$(${Name}OBJ) $ex os2/${Name}.def\n";
H A DBC-32.pl119 local($ex)=($target =~ /O_SSL/)?' $(L_CRYPTO)':'';
120 $ex.=' ws2_32.lib gdi32.lib';
121 $ret.="\t\$(LINK_CMD) \$(MLFLAGS) $efile$target /def:ms/${Name}.def @<<\n \$(SHLIB_EX_OBJ) $objs $ex\n<<\n";
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwindLevel1-gcc-ext.c119 _Unwind_Exception ex; local
120 memset(&ex, '\0', sizeof(ex));
121 ex.exception_class = 0x434C4E47554E5700; // CLNGUNW\0
146 ex.pr_cache.fnstart = frameInfo.start_ip;
147 ex.pr_cache.ehtp = (_Unwind_EHT_Header *) unwindInfo;
148 ex.pr_cache.additional= frameInfo.flags;
156 if (handler(_US_VIRTUAL_UNWIND_FRAME | _US_FORCE_UNWIND, &ex, context) !=
/freebsd-11-stable/stand/i386/isoboot/
H A Disoboot.c327 struct exec ex; member in union:__anon4958
348 if (N_GETMAGIC(hdr.ex) == ZMAGIC)
357 addr = hdr.ex.a_entry & 0xffffff;
360 if (xfsread(ino, p, hdr.ex.a_text))
362 p += roundup2(hdr.ex.a_text, PAGE_SIZE);
363 if (xfsread(ino, p, hdr.ex.a_data))
365 p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE);
367 memcpy(p, &hdr.ex.a_syms, sizeof(hdr.ex
[all...]
/freebsd-11-stable/sys/sys/
H A Dlock.h198 #define MPASS(ex) MPASS4(ex, #ex, __FILE__, __LINE__)
199 #define MPASS2(ex, what) MPASS4(ex, what, __FILE__, __LINE__)
200 #define MPASS3(ex, file, line) MPASS4(ex, #ex, file, line)
201 #define MPASS4(ex, what, file, line) \
202 KASSERT((ex), ("Assertio
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Drcparse.y363 dialog.ex = NULL;
388 dialog.ex = ((rc_dialog_ex *)
390 memset (dialog.ex, 0, sizeof (rc_dialog_ex));
415 dialog.ex = ((rc_dialog_ex *)
417 memset (dialog.ex, 0, sizeof (rc_dialog_ex));
418 dialog.ex->help = $9;
474 if (dialog.ex != NULL)
476 dialog.ex->weight = 0;
477 dialog.ex->italic = 0;
478 dialog.ex
[all...]
/freebsd-11-stable/lib/msun/src/
H A Ds_fmal.c171 int ex, ey, ez; local
188 xs = frexpl(x, &ex);
192 spread = ex + ey - ez;
243 spread = ex + ey;
/freebsd-11-stable/sys/dev/ex/
H A Dif_ex_pccard.c47 #include <dev/ex/if_exreg.h>
48 #include <dev/ex/if_exvar.h>
224 "ex",
229 DRIVER_MODULE(ex, pccard, ex_pccard_driver, ex_devclass, 0, 0);
230 MODULE_DEPEND(ex, pccard, 1, 1, 1);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-core.h146 uint32_t ex : 1; /**< Count in exception context */ member in struct:__anon8450::__anon8451
148 uint32_t ex : 1;
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_prn.c201 X509_EXTENSION *ex; local
202 ex = sk_X509_EXTENSION_value(exts, i);
205 obj = X509_EXTENSION_get_object(ex);
207 j = X509_EXTENSION_get_critical(ex);
210 if (!X509V3_EXT_print(bp, ex, flag, indent + 4)) {
212 M_ASN1_OCTET_STRING_print(bp, ex->value);
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dt_req.c220 X509_EXTENSION *ex; local
222 ex = sk_X509_EXTENSION_value(exts, i);
225 obj = X509_EXTENSION_get_object(ex);
227 j = X509_EXTENSION_get_critical(ex);
230 if (!X509V3_EXT_print(bp, ex, cflag, 16)) {
232 M_ASN1_OCTET_STRING_print(bp, ex->value);

Completed in 317 milliseconds

12345678910