Lines Matching defs:physical
114 int ocur_phys; /* old current physical position */
148 #define last_phys editb.e_peol /* last column in physical */
156 #define physical editb.e_physbuf /* physical image */
219 genchar Physical[2*MAXLINE]; /* physical image */
379 physical = Physical;
412 /* and estimate last physical column */
451 last_phys = ed_virt_to_phys(vp->ed,virtual,physical,last_virt,0,0);
1078 * physical column x in the window.
1085 while(physical[x]==MARKER)
1088 cur_phys = ed_setcursor(vp->ed, physical, cur_phys,x,vp->first_wind);
1540 physical[++last_phys] = 0;
1830 * Put nchars starting at column of physical into the workspace
1838 putchar(physical[col++]);
1844 * This routine will refresh the crt so the physical image matches
1851 * = TRANSLATE, perform virtual to physical translation
1860 * | | | physical | | |
1909 ed_setcursor(vp->ed,physical,0,cur_phys,0);
1938 ncur_phys = ed_virt_to_phys(vp->ed,virtual,physical,cur_virt,v,p);
1939 p = genlen(physical);
1962 /*** out where physical and window images differ ***/
1977 if( window[w] != physical[p] )
1989 /*** copy the physical image to the window image ***/
1994 window[w++] = physical[p++];
2045 ed_setcursor(vp->ed, physical, last_phys+1, last_phys+1, -1);
2101 physical[cur_phys] = c;
2296 * This routine will move the physical cursor to the same
2311 /*** find physical col that corresponds to virtual col ***/
2319 while(physical[p]==MARKER)