Lines Matching defs:physical
119 int ocur_phys; /* old current physical position */
153 #define last_phys editb.e_peol /* last column in physical */
161 #define physical editb.e_physbuf /* physical image */
224 genchar Physical[2*MAXLINE]; /* physical image */
384 physical = Physical;
417 /* and estimate last physical column */
456 last_phys = ed_virt_to_phys(vp->ed,virtual,physical,last_virt,0,0);
1030 * physical column x in the window.
1037 while(physical[x]==MARKER)
1040 cur_phys = ed_setcursor(vp->ed, physical, cur_phys,x,vp->first_wind);
1765 * Put nchars starting at column of physical into the workspace
1773 putchar(physical[col++]);
1779 * This routine will refresh the crt so the physical image matches
1786 * = TRANSLATE, perform virtual to physical translation
1795 * | | | physical | | |
1849 ncur_phys = ed_virt_to_phys(vp->ed,virtual,physical,cur_virt,v,p);
1850 p = genlen(physical);
1873 /*** out where physical and window images differ ***/
1888 if( window[w] != physical[p] )
1900 /*** copy the physical image to the window image ***/
1905 window[w++] = physical[p++];
1956 ed_setcursor(vp->ed, physical, last_phys+1, last_phys+1, -1);
2012 physical[cur_phys] = c;
2206 * This routine will move the physical cursor to the same
2221 /*** find physical col that corresponds to virtual col ***/
2229 while(physical[p]==MARKER)