Searched refs:genchar (Results 1 – 5 of 5) sorted by relevance
/titanic_50/usr/src/lib/libshell/common/include/ |
H A D | edit.h | 54 typedef wchar_t genchar; typedef 57 typedef char genchar; typedef 103 genchar *e_inbuf; /* pointer to input buffer */ 105 genchar *e_ubuf; /* pointer to the undo buffer */ 106 genchar *e_killbuf; /* pointer to delete buffer */ 108 genchar *e_Ubuf; /* temporary workspace buffer */ 109 genchar *e_physbuf; /* temporary workspace buffer */ 129 genchar *e_window; /* display window image */ 201 extern int ed_virt_to_phys(Edit_t*,genchar*,genchar*,int,int,int); 207 extern Edpos_t ed_curpos(Edit_t*, genchar*, int, int, Edpos_t); [all …]
|
/titanic_50/usr/src/lib/libshell/common/edit/ |
H A D | edit.c | 1139 Edpos_t ed_curpos(Edit_t *ep,genchar *phys, int off, int cur, Edpos_t curpos) 1141 register genchar *sp=phys; 1184 int ed_setcursor(register Edit_t *ep,genchar *physical,register int old,register int new,int first) 1287 int ed_virt_to_phys(Edit_t *ep,genchar *virt,genchar *phys,int cur,int voff,int poff) 1289 register genchar *sp = virt; 1290 register genchar *dp = phys; 1292 genchar *curp = sp + cur; 1293 genchar *dpmax = phys+MAXLINE; 1357 int ed_internal(const char *src, genchar *dest) 1362 if(dest == (genchar*)roundof(cp-(unsigned char*)0,sizeof(genchar))) [all …]
|
H A D | emacs.c | 104 genchar *screen; /* pointer to window buffer */ 105 genchar *cursor; /* Cursor in real screen */ 171 static int escape(Emacs_t*,genchar*, int); 173 static void search(Emacs_t*,genchar*,int); 183 register genchar *out; in ed_emacsread() 188 genchar *kptr; in ed_emacsread() 190 genchar Screen[MAXLINE]; in ed_emacsread() 209 out = (genchar*)buff; in ed_emacsread() 211 out = (genchar*)roundof(buff-(char*)0,sizeof(genchar)); in ed_emacsread() 217 kstack = (genchar*)malloc(CHARSIZE*MAXLINE); in ed_emacsread() [all …]
|
H A D | vi.c | 81 static genchar _c; 113 genchar *lastline; 127 genchar *U_space; /* used for U command */ 128 genchar *u_space; /* used for u command */ 224 genchar Physical[2*MAXLINE]; /* physical image */ in ed_viread() 225 genchar Ubuf[MAXLINE]; /* used for U command */ in ed_viread() 226 genchar ubuf[MAXLINE]; /* used for u command */ in ed_viread() 227 genchar Window[MAXLINE]; /* window image */ in ed_viread() 243 vp->lastline = (genchar*)malloc(MAXLINE*CHARSIZE); in ed_viread() 364 virtual = (genchar*)shbuf; in ed_viread() [all …]
|
H A D | completion.c | 226 register genchar *cp; in ed_expand() 228 cp = (genchar *)outbuff + *cur; in ed_expand() 231 *cur = ed_external((genchar*)outbuff,(char*)stakptr(0)); in ed_expand() 233 *eol = ed_external((genchar*)outbuff,outbuff); in ed_expand() 484 *eol = ed_internal(outbuff,(genchar*)outbuff); in ed_expand() 498 genchar buff[LOOKAHEAD+1]; in ed_macro()
|