Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 25 of 342) sorted by relevance

12345678910>>...14

/openbsd-src/sys/kern/
H A Dsubr_extent.c107 extent_register(struct extent *ex) in extent_register() argument
121 if (ep == ex) in extent_register()
127 LIST_INSERT_HEAD(&ext_list, ex, ex_link); in extent_register()
168 struct extent *ex; in extent_create() local
202 ex = (struct extent *)fex; in extent_create()
220 ex = (struct extent *)malloc(sizeof(struct extent), in extent_create()
222 if (ex == NULL) in extent_create()
227 LIST_INIT(&ex->ex_regions); in extent_create()
228 ex->ex_name = name; in extent_create()
229 ex->ex_start = start; in extent_create()
[all …]
/openbsd-src/sys/sys/
H A Dexec.h226 N_PAGSIZ(ex) global() argument
321 N_GETMAGIC(ex) global() argument
323 N_GETMAGIC2(ex) global() argument
326 N_GETMID(ex) global() argument
328 N_GETFLAG(ex) global() argument
330 N_SETMAGIC(ex,mag,mid,flag) global() argument
334 N_ALIGN(ex,x) global() argument
339 N_BADMAG(ex) global() argument
344 N_TXTADDR(ex) global() argument
347 N_DATADDR(ex) global() argument
352 N_BSSADDR(ex) global() argument
356 N_TXTOFF(ex) global() argument
362 N_DATOFF(ex) global() argument
366 N_TRELOFF(ex) global() argument
370 N_DRELOFF(ex) global() argument
374 N_SYMOFF(ex) global() argument
378 N_STROFF(ex) global() argument
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/init/
H A Dref9.C3 struct ex;
6 ex eval() const;
10 struct ex { struct
12 ex() : bp(0) { } in ex() argument
13 ex(const basic &);
14 virtual ~ex();
18 ex basic::eval() const { in eval()
22 inline ex::ex(const basic &b) { construct_from_basic (b); } in ex() function
23 inline ex::~ex() { if (--bp->refcount == 0) delete bp; } in ~ex()
24 void ex::construct_from_basic(const basic &b) { in construct_from_basic()
[all …]
/openbsd-src/usr.sbin/eeprom/
H A Dophandlers.c78 struct extabent *ex; in op_handler() local
86 for (ex = opextab; ex->ex_keyword != NULL; ++ex) in op_handler()
87 if (strcmp(ex->ex_keyword, keyword) == 0) in op_handler()
113 if (ex->ex_keyword != NULL) in op_handler()
114 (*ex->ex_handler)(ex, &opio, NULL); in op_handler()
119 if (ex->ex_keyword != NULL) in op_handler()
120 (*ex->ex_handler)(ex, &opio, arg); in op_handler()
131 if (ex->ex_keyword != NULL) in op_handler()
132 (*ex->ex_handler)(ex, &opio, NULL); in op_handler()
149 if (ex->ex_keyword != NULL) in op_handler()
[all …]
/openbsd-src/lib/libm/src/ld80/
H A De_coshl.c43 int32_t ex; in coshl() local
47 GET_LDOUBLE_WORDS(ex,mx,lx,x); in coshl()
48 ex &= 0x7fff; in coshl()
51 if(ex==0x7fff) return x*x; in coshl()
54 if(ex < 0x3ffd || (ex == 0x3ffd && mx < 0xb17217f7u)) { in coshl()
57 if (ex<0x3fbc) return w; /* cosh(tiny) = 1 */ in coshl()
62 if (ex < 0x4003 || (ex == 0x4003 && mx < 0xb0000000u)) { in coshl()
68 if (ex < 0x400c || (ex == 0x400c && mx < 0xb1700000u)) in coshl()
72 if (ex == 0x400c && (mx < 0xb174ddc0u in coshl()
/openbsd-src/sys/arch/i386/i386/
H A Drbus_machdep.c53 struct extent *ex = pa->pa_memex; in rbus_pccbb_parent_mem() local
57 if (ex == NULL) in rbus_pccbb_parent_mem()
61 size = ex->ex_end - start; in rbus_pccbb_parent_mem()
63 return (rbus_new_root_share(pa->pa_memt, ex, start, size)); in rbus_pccbb_parent_mem()
69 struct extent *ex = pa->pa_ioex; in rbus_pccbb_parent_io() local
73 if (ex == NULL) in rbus_pccbb_parent_io()
76 start = ex->ex_start; in rbus_pccbb_parent_io()
77 if (ex == pciio_ex) { in rbus_pccbb_parent_io()
86 size = ex->ex_end - start; in rbus_pccbb_parent_io()
88 return (rbus_new_root_share(pa->pa_iot, ex, start, size)); in rbus_pccbb_parent_io()
/openbsd-src/sys/arch/amd64/amd64/
H A Drbus_machdep.c55 struct extent *ex = pa->pa_memex; in rbus_pccbb_parent_mem() local
59 if (ex == NULL) in rbus_pccbb_parent_mem()
63 size = ex->ex_end - start; in rbus_pccbb_parent_mem()
65 return (rbus_new_root_share(pa->pa_memt, ex, start, size)); in rbus_pccbb_parent_mem()
71 struct extent *ex = pa->pa_ioex; in rbus_pccbb_parent_io() local
75 if (ex == NULL) in rbus_pccbb_parent_io()
78 start = ex->ex_start; in rbus_pccbb_parent_io()
79 if (ex == pciio_ex) { in rbus_pccbb_parent_io()
88 size = ex->ex_end - start; in rbus_pccbb_parent_io()
90 return (rbus_new_root_share(pa->pa_iot, ex, start, size)); in rbus_pccbb_parent_io()
/openbsd-src/regress/lib/libc/cephes/
H A Dieetst.c774 unsigned short ea[NE], em[NE], en[NE], ex[NE]; local
798 e53toe( &x, ex ); /* x = WIDTH * ( x - 1.0 ) + LOW; */
799 esub( eone, ex, ex );
800 emul( WIDTH, ex, ex );
801 eexp( ex, ex ); /* x = exp(x); */
805 emul( ea, ex, ea ); /* a = 1.0e-13 * x * a; */
808 eadd( ea, ex, ex ); /* add fuzz */
809 emul( ex, ex, ex ); /* square it, to get range to 10^17 - 1 */
810 efloor( ex, em ); /* this is M */
814 e53toe( &a, ex );
[all …]
/openbsd-src/usr.bin/find/
H A Dfind.h88 } ex; member
112 #define e_argv p_un.ex._e_argv
113 #define e_orig p_un.ex._e_orig
114 #define e_len p_un.ex._e_len
115 #define ep_p p_un.ex._ep_p
116 #define ep_bbp p_un.ex._ep_bbp
117 #define ep_ebp p_un.ex._ep_ebp
118 #define ep_bxp p_un.ex._ep_bxp
119 #define ep_cnt p_un.ex._ep_cnt
120 #define ep_maxargs p_un.ex._ep_maxargs
[all …]
/openbsd-src/lib/libm/src/ld128/
H A De_coshl.c60 int32_t ex; in coshl() local
64 ex = u.parts32.mswhi & 0x7fffffff; in coshl()
67 u.parts32.mswhi = ex; in coshl()
70 if (ex >= 0x7fff0000) in coshl()
74 if (ex < 0x3ffd62e4) /* 0.3465728759765625 */ in coshl()
78 if (ex < 0x3fb80000) /* |x| < 2^-116 */ in coshl()
85 if (ex < 0x40044000) in coshl()
92 if (ex <= 0x400c62e3) /* 11356.375 */ in coshl()
/openbsd-src/usr.bin/vi/docs/USD.doc/exref/
H A DMakefile4 DIR= usd/13.ex
5 SRCS= ex.rm
6 EXTRA= ex.summary
15 summary.ps: ex.summary
16 ${TBL} ex.summary | ${ROFF} > ${.TARGET}
17 summary.txt: ex.summary
18 ${TBL} ex.summary | ${ROFF} -Tascii > ${.TARGET}
/openbsd-src/sys/dev/cardbus/
H A Drbus.c184 rbus_new_body(bus_space_tag_t bt, struct extent *ex, in rbus_new_body() argument
198 rb->rb_ext = ex; in rbus_new_body()
204 ex != NULL ? ex->ex_name : "noname")); in rbus_new_body()
219 struct extent *ex; in rbus_new_root_delegate() local
221 if ((ex = extent_create("rbus root", start, start + size, M_DEVBUF, in rbus_new_root_delegate()
225 rb = rbus_new_body(bt, ex, start, start + size, in rbus_new_root_delegate()
229 extent_destroy(ex); in rbus_new_root_delegate()
241 rbus_new_root_share(bus_space_tag_t bt, struct extent *ex, bus_addr_t start, in rbus_new_root_share() argument
245 if (start < ex->ex_start || start + size > ex->ex_end) { in rbus_new_root_share()
253 return (rbus_new_body(bt, ex, start, start + size, in rbus_new_root_share()
/openbsd-src/usr.sbin/mopd/common/
H A Dfile.c887 struct exec ex, ex_swap; in CheckAOutFile()
890 if (read(fd, (char *)&ex, sizeof(ex)) != sizeof(ex)) in CheckAOutFile()
900 mid = getMID(mid, N_GETMID (ex)); in CheckAOutFile()
920 struct exec ex, ex_swap; in GetAOutFileInfo()
924 if (read(dl->ldfd, (char *)&ex, sizeof(ex)) != sizeof(ex)) in GetAOutFileInfo()
935 mid = getMID(mid, N_GETMID (ex)); in GetAOutFileInfo()
[all...]
/openbsd-src/usr.sbin/amd/amd/
H A Dhost_ops.c69 #define MAKE_MNTPT(mntpt, ex, mf) { \ argument
70 if (strcmp((ex)->ex_dir, "/") == 0) \
73 snprintf((mntpt), sizeof(mntpt), "%s%s", (mf)->mf_mount, (ex)->ex_dir); \
220 exports exlist = 0, ex; in host_fmount() local
285 for (n_export = 0, ex = exlist; ex; ex = ex->ex_next) { in host_fmount()
299 for (j = 0, ex = exlist; ex; ex = ex->ex_next) { in host_fmount()
300 MAKE_MNTPT(mntpt, ex, mf); in host_fmount()
302 ep[j++] = ex; in host_fmount()
352 ex = ep[j]; in host_fmount()
353 if (ex) { in host_fmount()
[all …]
/openbsd-src/sys/dev/usb/
H A Dehci.c638 struct ehci_xfer *ex, *nextex; in ehci_softintr() local
656 for (ex = TAILQ_FIRST(&sc->sc_intrhead); ex; ex = nextex) { in ehci_softintr()
657 nextex = TAILQ_NEXT(ex, inext); in ehci_softintr()
658 ehci_check_intr(sc, &ex->xfer); in ehci_softintr()
689 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; in ehci_check_qh_intr() local
690 struct ehci_soft_qtd *sqtd, *lsqtd = ex->sqtdend; in ehci_check_qh_intr()
693 KASSERT(ex->sqtdstart != NULL && ex in ehci_check_qh_intr()
743 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_check_itd_intr() local
783 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_isoc_idone() local
868 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_idone() local
1130 struct ehci_xfer *ex; ehci_allocx() local
1143 struct ehci_xfer *ex = (struct ehci_xfer*)xfer; ehci_freex() local
1344 ehci_dump_exfer(struct ehci_xfer * ex) ehci_dump_exfer() argument
1648 ehci_rem_itd_chain(struct ehci_softc * sc,struct ehci_xfer * ex) ehci_rem_itd_chain() argument
1685 ehci_free_itd_chain(struct ehci_softc * sc,struct ehci_xfer * ex) ehci_free_itd_chain() argument
2491 ehci_free_sqtd_chain(struct ehci_softc * sc,struct ehci_xfer * ex) ehci_free_sqtd_chain() argument
2611 struct ehci_xfer *ex = (struct ehci_xfer*)xfer; ehci_abort_xfer() local
2719 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_abort_isoc_xfer() local
2866 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_device_ctrl_start() local
2979 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_device_ctrl_done() local
3019 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_device_bulk_start() local
3082 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_device_bulk_done() local
3132 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_device_intr_start() local
3200 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_device_intr_done() local
3260 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_device_isoc_start() local
3376 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_alloc_itd_chain() local
3503 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_alloc_sitd_chain() local
3605 struct ehci_xfer *ex = (struct ehci_xfer *)xfer; ehci_device_isoc_done() local
[all...]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp62 const Expr *ex = nullptr; in checkBind() local
69 ex = U->getSubExpr(); in checkBind()
78 ex = B->getLHS(); in checkBind()
83 ex = B->getRHS(); in checkBind()
89 ex = VD->getInit(); in checkBind()
112 if (ex) { in checkBind()
113 R->addRange(ex->getSourceRange()); in checkBind()
114 bugreporter::trackExpressionValue(N, ex, *R); in checkBind()
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-v850.c476 expressionS ex; in v850_longcode() local
486 expression (&ex); in v850_longcode()
488 if (ex.X_op != O_symbol || ex.X_add_number != 0) in v850_longcode()
497 fix_new_exp (frag_now, frag_now_fix (), 4, & ex, 1, in v850_longcode()
500 fix_new_exp (frag_now, frag_now_fix (), 4, & ex, 1, in v850_longcode()
1674 expressionS ex; in md_assemble() local
1707 expression (&ex); in md_assemble()
1709 if (ex.X_op == O_constant) in md_assemble()
1722 ex.X_add_number = SEXT16 (ex.X_add_number); in md_assemble()
1729 ex.X_add_number = SEXT16 (ex.X_add_number >> 16); in md_assemble()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dtc-v850.c492 expressionS ex; local
502 expression (&ex);
504 if (ex.X_op != O_symbol || ex.X_add_number != 0)
513 fix_new_exp (frag_now, frag_now_fix (), 4, & ex, 1,
516 fix_new_exp (frag_now, frag_now_fix (), 4, & ex, 1,
1731 expressionS ex; local
1766 expression (&ex);
1768 if (ex.X_op == O_constant)
1780 ex.X_add_number = SEXT16 (ex.X_add_number);
1787 ex.X_add_number = SEXT16 (ex.X_add_number >> 16);
[all …]
/openbsd-src/lib/libelf/
H A Delf_update.c350 struct _Elf_Extent *ex; in _libelf_release_extents() local
352 while ((ex = SLIST_FIRST(extents)) != NULL) { in _libelf_release_extents()
354 free(ex); in _libelf_release_extents()
410 struct _Elf_Extent *ex, *prevt; in _libelf_insert_extent() local
426 if ((ex = malloc(sizeof(struct _Elf_Extent))) == NULL) { in _libelf_insert_extent()
430 ex->ex_start = start; in _libelf_insert_extent()
431 ex->ex_size = size; in _libelf_insert_extent()
432 ex->ex_desc = desc; in _libelf_insert_extent()
433 ex->ex_type = type; in _libelf_insert_extent()
437 SLIST_INSERT_AFTER(prevt, ex, ex_next); in _libelf_insert_extent()
[all …]
/openbsd-src/regress/lib/libm/msun/
H A Dnext_test.c46 #define test(exp, ans, ex) do { \ argument
49 _testl(#exp, __LINE__, (exp), __ans, (ex)); \
51 #define testf(exp, ans, ex) do { \ argument
54 _testl(#exp, __LINE__, (exp), __ans, (ex)); \
56 #define testl(exp, ans, ex) do { \ argument
59 _testl(#exp, __LINE__, (exp), __ans, (ex)); \
61 #define testboth(arg1, arg2, ans, ex, prec) do { \ argument
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) do { \ argument
[all …]
/openbsd-src/lib/libm/src/
H A Ds_rintl.c60 int ex, sign; in rintl() local
64 ex = expsign & 0x7fff; in rintl()
66 if (ex >= BIAS + LDBL_MANT_DIG - 1) { in rintl()
67 if (ex == BIAS + LDBL_MAX_EXP) in rintl()
87 if (ex < BIAS && x == 0.0L) in rintl()
/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/
H A Drcparse.y349 dialog.ex = NULL;
374 dialog.ex = ((struct dialog_ex *)
376 memset (dialog.ex, 0, sizeof (struct dialog_ex));
401 dialog.ex = ((struct dialog_ex *)
403 memset (dialog.ex, 0, sizeof (struct dialog_ex));
404 dialog.ex->help = $9;
460 if (dialog.ex != NULL)
462 dialog.ex->weight = 0;
463 dialog.ex->italic = 0;
464 dialog.ex->charset = 1;
[all …]
/openbsd-src/gnu/usr.bin/binutils/binutils/
H A Drcparse.y347 dialog.ex = NULL;
372 dialog.ex = ((struct dialog_ex *)
374 memset (dialog.ex, 0, sizeof (struct dialog_ex));
399 dialog.ex = ((struct dialog_ex *)
401 memset (dialog.ex, 0, sizeof (struct dialog_ex));
402 dialog.ex->help = $9;
458 if (dialog.ex != NULL)
460 dialog.ex->weight = 0;
461 dialog.ex->italic = 0;
462 dialog.ex->charset = 1;
[all …]
/openbsd-src/usr.bin/vi/build/
H A DMakefile20 cut.c delete.c ex.c ex_abbrev.c ex_append.c ex_args.c ex_argv.c \
38 LINKS= ${BINDIR}/vi ${BINDIR}/ex
45 ex_def.h: ex/ex.awk ex/ex_cmd.c
46 awk -f ${.CURDIR}/../ex/ex.awk ${.CURDIR}/../ex/ex_cmd.c > $@.tmp \
52 .PATH: ${.CURDIR}/../vi ${.CURDIR}/../ex ${.CURDIR}/../cl ${.CURDIR}/../common ${.CURDIR}/../docs/U…
/openbsd-src/lib/libcrypto/ts/
H A Dts_lib.c117 X509_EXTENSION *ex; in TS_ext_print_bio()
123 ex = X509v3_get_ext(extensions, i); in TS_ext_print_bio()
124 obj = X509_EXTENSION_get_object(ex); in TS_ext_print_bio()
126 critical = X509_EXTENSION_get_critical(ex); in TS_ext_print_bio()
128 if (!X509V3_EXT_print(bio, ex, 0, 4)) { in TS_ext_print_bio()
130 ASN1_STRING_print(bio, ex->value); in TS_ext_print_bio()
112 X509_EXTENSION *ex; TS_ext_print_bio() local

12345678910>>...14