Home
last modified time | relevance | path

Searched refs:pt (Results 1 – 25 of 93) sorted by relevance

1234

/original-bsd/bin/pax/
H A Dtables.c144 pt = pt->fow;
240 pt = pt->fow;
430 pt = pt->fow;
555 pt = pt->fow;
633 pt = pt->fow;
763 while ((pt != NULL) && (pt->dev != dev))
764 pt = pt->fow;
1008 for (; pt != NULL; pt = pt->fow) in atdir_end()
1009 set_ftime(pt->name, pt->mtime, pt->atime, 1); in atdir_end()
1050 pt = pt->fow;
[all …]
H A Dsel_subs.c139 pt = pt->fow;
181 pt = pt->fow;
252 pt = pt->fow;
294 pt = pt->fow;
420 pt->low_time = pt->high_time = time((time_t *)NULL);
448 if (pt->low_time > pt->high_time) {
463 trtail = pt;
493 pt = trhead;
507 pt = pt->fow;
519 pt = pt->fow;
[all …]
H A Dpat_rep.c235 pt->flgs = 0;
241 pattail = pt;
266 for (pt = pathead; pt != NULL; pt = pt->fow) { in pat_chk()
363 pt->plen = strlen(pt->pstr);
386 pt = pathead;
388 while ((pt != NULL) && (pt != arcn->pat)) {
390 pt = pt->fow;
444 pt = pathead;
458 (strncmp(pt->pstr, arcn->name, pt->plen) == 0))
462 pt = pt->fow;
[all …]
H A Dgen_subs.c308 register char *pt; local
314 pt = str + len - 1;
322 while (pt >= str) {
331 while (pt >= str) {
341 while (pt >= str)
342 *pt-- = '0';
422 register char *pt; local
428 pt = str + len - 1;
436 while (pt >= str) {
455 while (pt >= str)
[all …]
H A Dtar.c164 *pt-- = '\0';
167 *pt-- = ' ';
168 *pt-- = '\0';
171 *pt-- = ' ';
176 *pt-- = ' ';
190 *pt-- = ' ';
231 *pt-- = ' ';
235 *pt-- = ' ';
240 *pt-- = ' ';
254 *pt-- = ' ';
[all …]
/original-bsd/local/ditroff/ditroff.okeeffe/grap/
H A Dplot.c22 Point pt;
28 range(pt);
32 Point pt; in xyname()
37 p = pt.obj;
48 sprintf(buf, "xy_%s(%g,%g)", p->name, pt.x, pt.y);
65 Point pt; in numlist() local
92 Point pt;
95 range(pt);
102 Point pt;
112 range(pt);
[all …]
H A Dprint.c39 Point pt, pt1; in print() local
40 pt = p->pt; in print()
43 p->name, pt.x, pt1.x, pt.y, pt1.y); in print()
45 if (pt.x <= 0.0) in print()
47 logit(pt.x); in print()
51 if (pt.y <= 0.0) in print()
53 logit(pt.y); in print()
67 p->pt = pt; in print()
70 p->pt.x = pow(10.0, pt.x); in print()
74 p->pt.y = pow(10.0, pt.y); in print()
[all …]
H A Dcoord.c18 coord_x(pt) /* remember x coord */ in coord_x() argument
19 Point pt; in coord_x()
21 xcoord = pt;
26 coord_y(pt) in coord_y() argument
27 Point pt; in coord_y()
29 ycoord = pt;
54 p->pt.x = min(xcoord.x,xcoord.y); /* "xcoord" is xmin, xmax */
56 if ((logcoord&XFLAG) && p->pt.x <= 0.0)
57 fatal("can't have log of x coord %g,%g", p->pt.x, p->pt1.x);
64 if ((logcoord&YFLAG) && p->pt.y <= 0.0)
[all …]
H A Dmisc.c51 Point pt; in range()
53 Obj *p = pt.obj;
57 p->pt1.x = pt.x;
58 if (pt.x < p->pt.x)
59 p->pt.x = pt.x;
63 p->pt1.y = pt.y;
64 if (pt.y < p->pt.y)
65 p->pt.y = pt.y;
76 p->pt.y = val;
81 p->pt.x = val;
[all …]
/original-bsd/local/ditroff/ditroff.old.okeeffe/gremlin.aed/gremlin/
H A Ddb2.c38 POINT *pt, *newlist; variable
42 pt = element->ptlist;
43 while ( !Nullpoint(pt) )
51 pt = pt->nextpt;
71 POINT *pt; local
75 pt = element->ptlist;
76 while ( !Nullpoint(pt) )
78 px = ( (pt->x) * transform[0][0] )
84 pt->x = px;
85 pt->y = py;
[all …]
H A Dpoint.c24 POINT *pt; in PTInit() local
26 pt = (POINT *) malloc(sizeof(POINT)); in PTInit()
27 pt->x = nullpt; in PTInit()
28 pt->y = nullpt; in PTInit()
29 return(pt); in PTInit()
54 PTDeletePoint(pt) in PTDeletePoint() argument
55 POINT *pt; in PTDeletePoint()
66 tempt = PTNextPoint(pt);
67 pt->x = tempt->x;
68 pt->y = tempt->y;
[all …]
H A Dgrem2.h7 #define Nullpoint(pt) ( pt->x == nullpt ) argument
8 #define PTNextPoint(pt) pt->nextpt argument
H A Dundodb.c81 POINT *pt; variable
95 pt = element->ptlist;
97 while ( !Nullpoint(pt) )
99 (void) PTMakePoint(pt->x, pt->y, &(hold->ptlist));
100 pt = PTNextPoint(pt);
/original-bsd/local/ditroff/ditroff.old.okeeffe/sunsrc/gremlin/
H A Dpoint.c60 PTDeletePoint(pt, plist) in PTDeletePoint() argument
68 if (*plist == pt) /* only POINT in list */
72 while (tempt->nextpt != pt)
76 free((char *) pt);
79 tempt = PTNextPoint(pt);
80 pt->x = tempt->x;
81 pt->y = tempt->y;
82 pt->nextpt = tempt->nextpt;
103 POINT *pt; local
107 pt = PTInit();
[all …]
H A Ddb.c164 pt = elt->ptlist;
168 free ((char *) pt);
169 pt = pt2;
406 register POINT *pt; local
411 pt = elt->ptlist;
420 pt = pt->nextpt;
440 register POINT *pt; local
444 pt = elt->ptlist;
451 pt->x = px;
452 pt->y = py;
[all …]
H A Dundodb.c82 register POINT *pt; variable
94 pt = element->ptlist;
97 while (!Nullpoint(pt)) {
98 (void) PTMakePoint(pt->x, pt->y, &(hold->ptlist));
99 pt = PTNextPoint(pt);
/original-bsd/usr.bin/systat/
H A Dpigs.c38 } *pt; variable
71 if (pt == NULL) in showpigs()
77 total += pt[i].pt_pctcpu; in showpigs()
90 if (pt[k].pt_kp == NULL) { in showpigs()
162 if (pt) in fetchpigs()
163 free(pt); in fetchpigs()
167 free(pt); in fetchpigs()
168 if ((pt = in fetchpigs()
179 pt[i].pt_kp = &kpp[i]; in fetchpigs()
181 pctp = &pt[i].pt_pctcpu; in fetchpigs()
[all …]
/original-bsd/lib/libc/gen/
H A Dgetcwd.c33 getcwd(pt, size) in getcwd() argument
34 char *pt; in getcwd()
57 pt[pwdlen] = '\0';
58 return (pt);
182 char *pt; in getcwd_physical()
203 if (pt) {
209 ept = pt + size;
257 return (pt);
325 off = bpt - pt;
327 if ((pt = realloc(pt, ptsize *= 2)) == NULL)
[all …]
/original-bsd/sbin/fsck/
H A Dpreen.c57 register struct part *pt; local
166 for (pt = badlist; pt; pt = pt->next)
167 fprintf(stderr, "%s (%s)%s", pt->name, pt->fsname,
168 pt->next ? ", " : "\n");
220 for (pt = dk->part; pt; ppt = &pt->next, pt = pt->next)
229 pt = *ppt;
234 (void)strcpy(pt->name, name);
239 (void)strcpy(pt->fsname, fsname);
240 pt->next = NULL;
241 pt->auxdata = auxdata;
[all …]
/original-bsd/lib/libm/ieee/
H A Dcbrt.c47 *pt = (unsigned long *) &t, local
66 {pt[n0]=0x43500000; /* set t= 2**54 */
67 t*=x; pt[n0]=pt[n0]/3+B2;
70 pt[n0]=px[n0]/3+B1;
79 pt[n1]=0; pt[n0]+=0x00000001;
91 pt[n0] |= sign;
/original-bsd/old/libm/libm/IEEE/
H A Dcbrt.c50 *pt = (unsigned long *) &t, local
69 {pt[n0]=0x43500000; /* set t= 2**54 */
70 t*=x; pt[n0]=pt[n0]/3+B2;
73 pt[n0]=px[n0]/3+B1;
82 pt[n1]=0; pt[n0]+=0x00000001;
94 pt[n0] |= sign;
H A Dsupport.c176 *pt=(unsigned short *) &tmp+3; local
182 *pt=(unsigned short *) &tmp; local
210 *pt += k ;
213 if( x < tmp ) *pt -= 128 ;
215 if( x < tmp ) *pt -= 16 ;
320 sign, *pt =(unsigned short *) &t ,
339 if(yexp==0) {t=1.0,pt[n0]+=m57; y*=t; nx=m57;}
349 t=y; pt[n3]=0; pt[n2]&=0xf800; y1=t;
360 {pt[n0]+=k;pt1[n0]+=k;}
372 if(nf!=0) { t=1.0; pt[n0]-=nf; x*=t;}
[all …]
/original-bsd/local/ditroff/ditroff.old.okeeffe/gremlin.aed/gprint/
H A Dhpoint.c22 register POINT *pt; in PTInit() local
24 pt = (POINT *) malloc(sizeof(POINT)); in PTInit()
25 pt->x = nullpt; in PTInit()
26 pt->y = nullpt; in PTInit()
27 return(pt); in PTInit()
/original-bsd/contrib/usr.x25/x29d/
H A Dx29d.c47 struct termios pt, old_pt; variable
463 if (--pcc > sizeof(pt)) in x29d()
464 pcc = sizeof(pt); in x29d()
465 old_pt = pt; in x29d()
546 char *lim = p + sizeof (pt); in set_x29_parameters()
551 f = pt.c_lflag & ICANON; in set_x29_parameters()
561 if (bcmp((char *)&pt, (char *)&old_pt, sizeof (pt)) == 0) in set_x29_parameters()
596 (0 == (pt.c_lflag & ICANON) || pt.c_cc[x] == _POSIX_VDISABLE) ? 0 : pt.c_cc[x] in set_x29_parameters()
617 if ((pt.c_lflag & EXTPROC) && (pt.c_lflag & ISIG)) {
630 pt.c_lflag &= ~ECHO;
[all …]
/original-bsd/local/ditroff/ditroff.old.okeeffe/grn/
H A Dgprint.h88 #define Nullpoint(pt) ((pt) == (POINT *) NULL) argument
89 #define PTNextPoint(pt) (pt->nextpt) argument

1234