/ast/src/cmd/dsslib/flat/ |
H A D | flat.c | 81 struct Physical_s /* physical field info */ 85 Cxarray_t* array; /* physical array info */ 115 Physical_t physical; /* physical field info */ member in struct:Field_s 125 unsigned char* map; /* physical.format.code map */ 348 d = f->physical.format.delimiter; 357 else if (f->physical.format.escape < 0 && f->physical.format.quotebegin < 0) 365 q = f->physical.format.quotebegin; 366 x = f->physical [all...] |
/ast/src/lib/libast/disc/ |
H A D | sfdcdos.c | 36 Sfoff_t physical; member in struct:map 77 dp->maptable[n].physical = dp->phere; 95 dummy.logical = dummy.physical = offset; 101 dummy.physical = dummy.logical+1; 104 while((++mp)->logical && (whence==SEEK_CUR?mp->physical:mp->logical) <= offset); 177 dp->maptable[0].physical = dp->maptable[0].logical+1; 226 * if <whence> is SEEK_CUR, physical offset converted to logical offset 227 * otherwise, logical offset is converted to physical offset 287 Sfoff_t physical; local 313 mp->physical [all...] |
/ast/src/cmd/cs/vcs_src/ |
H A D | ifs_agent.c | 692 char* physical; local 702 physical = argv[1]; 708 else if (strneq(argv[n], "physical=", 9)) 709 physical = argv[n] + 9; 716 sfsprintf(buf, sizeof(buf), "%s", physical); 718 sfsprintf(buf, sizeof(buf), "%s/%s", physical, argv[2]); 726 physical = strdup(srv.lpath); 727 if( IfsCacheValid(physical, expire) || 732 strcpy( buf, physical ); 733 free( physical ); [all...] |
/ast/src/cmd/3d/ |
H A D | map.c | 97 if (mp->physical) 98 p += sfsprintf(p, 0, "%-*s", mp->physicalsize ? mp->physicalsize : strlen(mp->physical), mp->physical); 107 + (mp ? ((mp->channel ? 16 : 0) + (mp->physical ? (mp->physicalsize ? mp->physicalsize : strlen(mp->physical)) : 0) + getattr(mp->attr, NiL)) : 0) 430 mp->physical = (char*)ov - 1; 431 mp->physicalsize = oe - mp->physical; 435 mp->physical = strcpy(newof(0, char, strlen(ov), 2), ov - 1);
|
H A D | fs.c | 116 if (!(pz = mp->physicalsize) && mp->physical) 117 pz = strlen(mp->physical); 118 n = sfsprintf(s, sizeof(dev) - 1, "%s %-*s %s%s%-*s pwd=%s%s%s", msgname(call), lz, mp->logical, up, pz ? " physical=" : "", pz, mp->physical ? mp->physical : "", state.pwd, mp->fs->attr, mp->attr); 649 if (state.mount[n].physical && !state.mount[n].physicalsize) 651 free(state.mount[n].physical); 652 state.mount[n].physical = 0;
|
H A D | 3d.h | 194 char* physical; member in struct:Mount
|
H A D | init.c | 1025 if (mp->physical) bprintf(&b, e, " physical=%-*s", mp->physicalsize ? mp->physicalsize : strlen(mp->physical), mp->physical);
|
/ast/src/cmd/ksh93/edit/ |
H A D | vi.c | 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 */ macro 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[ [all...] |
H A D | edit.c | 1156 * returns the line and column corresponding to offset <off> in the physical buffer 1204 int ed_setcursor(register Edit_t *ep,genchar *physical,register int old,register int new,int first) argument 1221 ep->e_curpos = ed_curpos(ep, physical, old,0,ep->e_curpos); 1228 newpos = ed_curpos(ep, physical, new,old,ep->e_curpos); 1253 if(m < ed_genlen(physical)) 1255 while(physical[m] && n-->0) 1256 ed_putchar(ep,physical[m++]); 1300 ed_putchar(ep,physical[old++]); 1305 * copy virtual to physical and return the index for cursor in physical buffe [all...] |
/ast/src/cmd/ie/ |
H A D | vi.c | 125 #define last_phys editb.e_peol /* last column in physical */ 136 #define ocur_phys editb.e_globals[5] /* old current physical position */ 142 #define physical editb.e_physbuf /* physical image */ macro 229 genchar Physical[2*MAXLINE]; /* physical image */ 383 physical = Physical; 430 /* and estimate last physical column */ 473 last_phys = ed_virt_to_phys(virtual,physical,last_virt,0,0); 1021 * physical column x in the window. 1032 while(physical[ [all...] |
/ast/src/cmd/pax/ |
H A D | testpax.sh | 53 set "$@" --physical --nosummary --noverify
|
/ast/src/lib/libast/misc/ |
H A D | fts.c | 596 int physical; local 603 physical = (fts->flags & FTS_PHYSICAL); 615 if (!physical) 1513 if (streq(s, "physical"))
|
/ast/src/lib/libast/comp/ |
H A D | omitted.c | 188 execrate(const char* path, char* buf, int size, int physical) argument 197 if (physical || strlen(path) >= size || !(s = pathcanon(strcpy(buf, path), size, PATH_PHYSICAL|PATH_DOTDOT|PATH_EXISTS)))
|