/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/edit/ |
H A D | emacs.c | 82 #define putchar(ed,c) ed_putchar(ed,c) argument 123 Edit_t *ed; /* pointer to edit data */ member 126 #define editb (*ep->ed) 182 Edit_t *ed = (Edit_t*)context; in ed_emacsread() local 187 register Emacs_t *ep = ed->e_emacs; in ed_emacsread() 196 ep = ed->e_emacs = newof(0,Emacs_t,1,0); in ed_emacsread() 197 ep->ed = ed; in ed_emacsread() 211 ed_setup(ep->ed,fd,reedit); in ed_emacsread() 241 if(ep->ed->e_multiline) in ed_emacsread() 245 ed_flush(ep->ed); in ed_emacsread() [all …]
|
H A D | vi.c | 132 Edit_t *ed; /* pointer to edit data */ member 135 #define editb (*vp->ed) 138 #define putchar(c) ed_putchar(vp->ed,c) 214 Edit_t *ed = (Edit_t*)context; in ed_viread() local 217 register Vi_t *vp = ed->e_vi; in ed_viread() 229 int viraw = (sh_isoption(SH_VIRAW) || ed->sh->st.trap[SH_KEYTRAP]); in ed_viread() 237 ed->e_vi = vp = newof(0,Vi_t,1,0); in ed_viread() 240 vp->ed = ed; in ed_viread() 246 ed_setup(vp->ed,fd, reedit); in ed_viread() 265 if(ed->sh->trapnote&SH_SIGSET) in ed_viread() [all …]
|
/illumos-gate/usr/src/cmd/fm/fmd/common/ |
H A D | fmd_sysevent.c | 281 erpt_dump_t ed; in sysev_replay() local 288 if (pread64(fd, &ed, sizeof (ed), off) != sizeof (ed)) { in sysev_replay() 294 if (ed.ed_magic == 0 && ed.ed_size == 0) in sysev_replay() 297 if (ed.ed_magic == 0) { in sysev_replay() 298 off += sizeof (ed) + ed.ed_size; in sysev_replay() 302 if (ed.ed_magic != ERPT_MAGIC) { in sysev_replay() 313 (u_longlong_t)off, ed.ed_magic, ERPT_MAGIC); in sysev_replay() 317 if (ed.ed_size > ERPT_DATA_SZ) { in sysev_replay() 320 (u_longlong_t)off, ed.ed_size); in sysev_replay() 324 if (pread64(fd, nvbuf, ed.ed_size, in sysev_replay() [all …]
|
/illumos-gate/usr/src/lib/libc/i386/fp/ |
H A D | _X_cplx_div_ix.c | 99 int eb, ec, ed, ew, i, j; in _X_cplx_div_ix() local 116 ed = dd.i[2] & 0x7fff; in _X_cplx_div_ix() 117 ew = (ec > ed)? ec : ed; in _X_cplx_div_ix() 168 ed = (ed - 0x3800) >> 12; in _X_cplx_div_ix() 169 d = (d * scl[ed + 4].e) * b; in _X_cplx_div_ix() 170 ed += eb; in _X_cplx_div_ix() 182 if (ed < 0) { in _X_cplx_div_ix() 183 ed = -ed; in _X_cplx_div_ix() 186 while (ed--) in _X_cplx_div_ix()
|
H A D | _X_cplx_div_rx.c | 99 int ea, ec, ed, ew, i, j; in _X_cplx_div_rx() local 116 ed = dd.i[2] & 0x7fff; in _X_cplx_div_rx() 117 ew = (ec > ed)? ec : ed; in _X_cplx_div_rx() 168 ed = (ed - 0x3800) >> 12; in _X_cplx_div_rx() 169 d = -(d * scl[ed + 4].e) * a; in _X_cplx_div_rx() 170 ed += ea; in _X_cplx_div_rx() 182 if (ed < 0) { in _X_cplx_div_rx() 183 ed = -ed; in _X_cplx_div_rx() 186 while (ed--) in _X_cplx_div_rx()
|
H A D | _X_cplx_div.c | 89 int ea, eb, ec, ed, ez, ew, es, i, j; in _X_cplx_div() local 112 ed = dd.i[2] & 0x7fff; in _X_cplx_div() 113 ew = (ec > ed)? ec : ed; in _X_cplx_div()
|
/illumos-gate/usr/src/lib/libcurses/ |
H A D | Makefile | 85 screen/curses.h: screen/curses.ed screen/keycaps screen/tmp 86 (cd screen; $(ED) - < curses.ed) 96 screen/termcap.c: screen/termcap.ed 97 (cd screen; $(ED) - < termcap.ed) 100 screen/tifget.c: screen/tifget.ed 101 (cd screen; $(ED) - < tifget.ed) 103 screen/tiget.c: screen/tiget.ed 104 (cd screen; $(ED) - < tiget.ed) 107 screen/term.h: screen/maketerm.ed 108 (cd screen; $(ED) - < maketerm.ed)
|
/illumos-gate/usr/src/cmd/ed/ |
H A D | Makefile | 27 PROG= ed 28 XPG4PROG= ed 29 XPG6PROG= ed 31 EDOBJ= ed.o compile.o 32 XPG4EDOBJ= edobjs.xpg4/ed.o edobjs.xpg4/compile.o values-xpg4.o 33 XPG6EDOBJ= edobjs.xpg6/ed.o edobjs.xpg6/compile.o values-xpg6.o 35 SRCS= ./ed.c ../expr/compile.c 53 XGETFLAGS += -a -x ed.xcl 108 $(LN) $(ROOTBIN)/ed $(ROOTBIN)/red
|
/illumos-gate/usr/src/cmd/mailx/ |
H A D | edit.c | 52 static void edit1(int *msgvec, char *ed); 91 edit1(int *msgvec, char *ed) in edit1() argument 111 ed = safeexpand(ed); in edit1() 181 execlp(ed, ed, tempZedit, (char *)0); in edit1() 182 perror(ed); in edit1()
|
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/features/ |
H A D | cmds | 3 #pth ed fail{ 4 # echo '#define _pth_ed "ed" /* ed not found on standard PATH */' 26 define _pth_ed "/usr/bin/ed"
|
/illumos-gate/usr/src/test/zfs-tests/tests/functional/mmp/ |
H A D | mmp_on_zdb.ksh | 71 log_must zdb -ed $TESTPOOL 72 log_must zdb -ed $TESTPOOL/ 73 log_must zdb -ed $TESTPOOL/$TESTFS 74 log_must zdb -ed $TESTPOOL/$TESTFS@snap
|
/illumos-gate/usr/src/cmd/mandoc/ |
H A D | dba_array.c | 37 int32_t ed; /* Entries deleted. */ member 54 array->ed = 0; in dba_array_new() 135 array->ed++; in dba_array_del() 160 assert(array->ed == 0); in dba_array_sort() 167 dba_int_write(array->eu - array->ed); in dba_array_writelen() 168 return dba_skip(nmemb, array->eu - array->ed); in dba_array_writelen()
|
/illumos-gate/usr/src/uts/common/io/elxl/ |
H A D | elxl.c | 289 ex_desc_t *ed = &r->r_desc[i]; in ex_free_ring() local 290 if (ed->ed_bufaddr) in ex_free_ring() 291 (void) ddi_dma_unbind_handle(ed->ed_dmah); in ex_free_ring() 292 if (ed->ed_acch) in ex_free_ring() 293 ddi_dma_mem_free(&ed->ed_acch); in ex_free_ring() 294 if (ed->ed_dmah) in ex_free_ring() 295 ddi_dma_free_handle(&ed->ed_dmah); in ex_free_ring() 312 ex_desc_t *ed; in elxl_reset_ring() local 318 ed = &r->r_desc[i]; in elxl_reset_ring() 319 pd = ed->ed_pd; in elxl_reset_ring() [all …]
|
/illumos-gate/usr/src/cmd/svc/svcadm/ |
H A D | svcadm.c | 631 set_enabled_props(scf_propertygroup_t *pg, enable_data_t *ed) in set_enabled_props() argument 673 scf_value_set_boolean(v1, !!(ed->ed_flags & SET_ENABLED)); in set_enabled_props() 688 if (scf_value_set_astring(v2, ed->ed_comment) != SCF_SUCCESS) in set_enabled_props() 733 set_inst_enabled(const char *fmri, scf_instance_t *inst, enable_data_t *ed) in set_inst_enabled() argument 782 if (ed->ed_flags & SET_TEMPORARY) { in set_inst_enabled() 788 switch (set_enabled_props(pg, ed)) { in set_inst_enabled() 812 (void) printf((ed->ed_flags & SET_ENABLED) ? in set_inst_enabled() 827 switch (set_enabled_props(pg, ed)) { in set_inst_enabled() 841 if (!(b) == !(ed->ed_flags & SET_ENABLED)) in set_inst_enabled() 897 (void) printf((ed->ed_flags & SET_ENABLED) ? in set_inst_enabled() [all …]
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | errorq.c | 968 erpt_dump_t ed; in errorq_dump() local 990 ed.ed_magic = ERPT_MAGIC; in errorq_dump() 991 ed.ed_chksum = checksum32(ereport_dumpbuf, len); in errorq_dump() 992 ed.ed_size = (uint32_t)len; in errorq_dump() 993 ed.ed_pad = 0; in errorq_dump() 994 ed.ed_hrt_nsec = 0; in errorq_dump() 995 ed.ed_hrt_base = panic_hrtime; in errorq_dump() 996 ed.ed_tod_base.sec = panic_hrestime.tv_sec; in errorq_dump() 997 ed.ed_tod_base.nsec = panic_hrestime.tv_nsec; in errorq_dump() 999 dumpvp_write(&ed, sizeof (ed)); in errorq_dump()
|
H A D | fm.c | 464 erpt_dump_t ed; in fm_ereport_dump() local 492 ed.ed_magic = ERPT_MAGIC; in fm_ereport_dump() 493 ed.ed_chksum = checksum32(buf, len); in fm_ereport_dump() 494 ed.ed_size = (uint32_t)len; in fm_ereport_dump() 495 ed.ed_pad = 0; in fm_ereport_dump() 496 ed.ed_hrt_nsec = SE_TIME(sep); in fm_ereport_dump() 497 ed.ed_hrt_base = now; in fm_ereport_dump() 498 ed.ed_tod_base.sec = tod.tv_sec; in fm_ereport_dump() 499 ed.ed_tod_base.nsec = tod.tv_nsec; in fm_ereport_dump() 501 dumpvp_write(&ed, sizeof (ed)); in fm_ereport_dump()
|
/illumos-gate/usr/src/test/util-tests/tests/dis/i386/ |
H A D | 64.ifma.out | 5 libdis_test+0x18: 62 e2 ed 03 b5 98 vpmadd52huq 0x23(%rax),%xmm18,%xmm19{%k3} 16 libdis_test+0x55: 62 e2 ed 23 b5 98 vpmadd52huq 0x23(%rax),%ymm18,%ymm19{%k3} 27 libdis_test+0x92: 62 e2 ed 43 b5 98 vpmadd52huq 0x23(%rax),%zmm18,%zmm19{%k3} 38 libdis_test+0xcf: 62 e2 ed 03 b4 98 vpmadd52luq 0x23(%rax),%xmm18,%xmm19{%k3} 49 libdis_test+0x10c: 62 e2 ed 23 b4 98 vpmadd52luq 0x23(%rax),%ymm18,%ymm19{%k3} 60 libdis_test+0x149: 62 e2 ed 43 b4 98 vpmadd52luq 0x23(%rax),%zmm18,%zmm19{%k3}
|
H A D | 32.avx2.out | 39 libdis_test+0xcc: c4 e2 ed 8c 18 vpmaskmovq (%eax),%ymm2,%ymm3 46 libdis_test+0xef: c4 e2 ed 47 d9 vpsllvq %ymm1,%ymm2,%ymm3 47 libdis_test+0xf4: c4 e2 ed 47 18 vpsllvq (%eax),%ymm2,%ymm3 58 libdis_test+0x12b: c4 e2 ed 45 d9 vpsrlvq %ymm1,%ymm2,%ymm3 59 libdis_test+0x130: c4 e2 ed 45 18 vpsrlvq (%eax),%ymm2,%ymm3
|
H A D | 64.avx2.out | 39 libdis_test+0xcc: c4 e2 ed 8c 18 vpmaskmovq (%rax),%ymm2,%ymm3 46 libdis_test+0xef: c4 e2 ed 47 d9 vpsllvq %ymm1,%ymm2,%ymm3 47 libdis_test+0xf4: c4 e2 ed 47 18 vpsllvq (%rax),%ymm2,%ymm3 58 libdis_test+0x12b: c4 e2 ed 45 d9 vpsrlvq %ymm1,%ymm2,%ymm3 59 libdis_test+0x130: c4 e2 ed 45 18 vpsrlvq (%rax),%ymm2,%ymm3
|
H A D | 32.gfni.out | 36 libdis_test+0xa0: c4 e3 ed cf 30 51 vgf2p8affineinvqb $0x51,(%eax),%ymm2,%ymm6 54 libdis_test+0xee: 62 f3 ed 48 cf 30 vgf2p8affineinvqb $0x51,(%eax),%zmm2,%zmm6 78 libdis_test+0x160: 62 f3 ed 4b cf 30 vgf2p8affineinvqb $0x51,(%eax),%zmm2,%zmm6{%k3} 80 libdis_test+0x167: 62 f3 ed cc cf 30 vgf2p8affineinvqb $0x51,(%eax),%zmm2,%zmm6{%k4}{z} 122 libdis_test+0x236: 62 f3 ed 2b cf 30 vgf2p8affineinvqb $0x51,(%eax),%ymm2,%ymm6{%k3} 124 libdis_test+0x23d: 62 f3 ed ac cf 30 vgf2p8affineinvqb $0x51,(%eax),%ymm2,%ymm6{%k4}{z} 166 libdis_test+0x30c: 62 f3 ed 0b cf 30 vgf2p8affineinvqb $0x51,(%eax),%xmm2,%xmm6{%k3} 168 libdis_test+0x313: 62 f3 ed 8c cf 30 vgf2p8affineinvqb $0x51,(%eax),%xmm2,%xmm6{%k4}{z}
|
/illumos-gate/usr/src/cmd/csh/ |
H A D | make.sh.tconst.h.ed | 7 * This file was made from sh.tconst by the ed script make.sh.tconst.h.ed.
|
/illumos-gate/usr/src/cmd/getopt/ |
H A D | getoptcvt.sh | 45 ed <<'!' - $1 85 ed <<'!' - $1
|
/illumos-gate/usr/src/cmd/fs.d/ufs/edquota/ |
H A D | edquota.c | 242 char *ed; in editit() local 249 if ((ed = getenv("EDITOR")) == (char *)0) in editit() 250 ed = DEFEDITOR; in editit() 267 (void) execlp(ed, ed, tmpfil, 0); in editit() 269 "Can't exec editor \"%s\": ", ed); in editit() 288 (void) printf("Non-zero return from \"%s\", ", ed); in editit()
|
/illumos-gate/usr/src/cmd/bnu/ |
H A D | Dialers | 135 # ed expect "ed" (actually "Answered") 140 att4024 =+-, "" atzod,o12=y,o4=n\r\c \006 atT\T\r\c ed 157 # ed expect "ed" (actually "Answered") 162 att2212c =+-, "" atzod,o12=y,o4=n\r\c \006 atT\T\r\c ed 163 att2212C =+-, "" atzod,o12=y,o4=n\r\c \006 atT\T\r\c ed 177 # ed expect "ed" (actually "Answered") 179 att2224b =+-, "" atT\T\r\c ed 180 att2224B =+-, "" atT\T\r\c ed 212 # Connected expect "ed" (actually "Connected")
|
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | mamprobe.sh | 225 ed <<! 229 then STDED=ed
|