Searched refs:p1 (Results 1 - 19 of 19) sorted by relevance

/ast/src/lib/libast/uwin/
H A Dexp__E.c69 * where P := p1*x^2 + p2*x^4,
73 * (See the listing below for the values of p1,p2,q1,q2,q3. The poly-
95 vc(p1, 1.5150724356786683059E-2 ,3abe,3d78,066a,67e1, -6, .F83ABE67E1066A)
101 ic(p1, 1.3887401997267371720E-2, -7, 1.C70FF8B3CC2CF)
107 #define p1 vccast(p1) macro
121 p = z*( p1 +z* p2 );
H A Dexp.c63 * R1 = x - x^2*(p1+x^2*(p2+x^2*(p3+x^2*(p4+p5*x^2)))).
91 vc(p1, 1.6666666666666602251E-1 ,aaaa,3f2a,a9f1,aaaa, -2, .AAAAAAAAAAA9F1)
103 #define p1 vccast(p1) macro
110 ic(p1, 1.6666666666666601904E-1, -3, 1.555555555553E)
146 c= x - z*(p1+z*(p2+z*(p3+z*(p4+z*p5))));
192 c= x - z*(p1+z*(p2+z*(p3+z*(p4+z*p5))));
H A Dcrypt.c752 #define CRUNCH(p0, p1, q0, q1) \
758 DOXOR(p0, p1, 0); \
759 DOXOR(p0, p1, 1); \
760 DOXOR(p0, p1, 2); \
761 DOXOR(p0, p1, 3); \
762 DOXOR(p0, p1, 4); \
763 DOXOR(p0, p1, 5); \
764 DOXOR(p0, p1, 6); \
765 DOXOR(p0, p1, 7);
H A Derf.c76 * P = P(x ) = (p0 + p1 * x + p2 * x + ... + p10 * x )
178 p1 = -3.761263890318340796574473028946097022260e-0001, variable
287 r = y*(p1+y*(p2+y*(p3+y*(p4+y*(p5+
345 r = y*(p1+y*(p2+y*(p3+y*(p4+y*(p5+
H A Dlgamma.c126 #define p1 3.569659696950364669021382724168e-01 macro
244 p = p0+y*(p1+y*(p2+y*(p3+y*p4)));
/ast/src/lib/libcmd/
H A Dcmp.c149 register unsigned char* p1 = 0; local
161 if ((c1 = e1 - p1) <= 0)
165 if (!(p1 = (unsigned char*)sfreserve(f1, SF_UNBOUND, 0)) || (c1 = sfvalue(f1)) <= 0)
177 e1 = p1 + c1;
195 if (memcmp(p1, p2, c1))
197 p1 += c1;
202 last = p1 + c1;
203 while (p1 < last)
205 if ((c1 = *p1++) != *p2++)
215 sfprintf(sfstdout, "%s %s differ: char %I*d, line %I*u\n", file1, file2, sizeof(pos), pos - (last - p1), sizeo
[all...]
/ast/src/cmd/cs/vcs_src/
H A Difs_http.c43 char *ptr, *p1, *p2; local
74 while( (p1 = strchr( ptr, '<' )) != NULL &&
75 (p2 = strchr( p1, '>' )) != NULL ) {
76 p1++;
80 if( (*p1 == 'a' || *p1 == 'A') && p1[1] == ' ' )
81 fprintf( flink, "<%s>\n", p1 );
/ast/src/lib/libtksh/tcl/
H A DtclCmdIL.c652 char *p1, *p2, *element, savedChar, *dummy, *next;
692 for (count = 0, p1 = argv[1]; (count < first) && (*p1 != 0); count++) {
693 result = TclFindElement(interp, p1, &element, &next, &size,
701 p1 = next;
703 if (*p1 == 0) {
713 for (p2 = p1 ; (count <= last) && (*p2 != 0); count++) {
728 while ((p1 != argv[1]) && (isspace(UCHAR(p1[-1])))
729 && (((p1
643 char *p1, *p2, *element, savedChar, *dummy, *next; local
[all...]
H A DtclHash.c435 register char *p1, *p2;
446 for (p1 = key, p2 = hPtr->key.string; ; p1++, p2++) {
447 if (*p1 != *p2) {
450 if (*p1 == '\0') {
489 register char *p1, *p2;
500 for (p1 = key, p2 = hPtr->key.string; ; p1++, p2++) {
501 if (*p1 != *p2) {
504 if (*p1
427 register char *p1, *p2; local
480 register char *p1, *p2; local
[all...]
H A DtclLoad.c110 char *p, *fullFileName, *p1, *p2;
165 for (p1 = argv[2], p2 = pkgPtr->packageName; ; p1++, p2++) {
166 if ((isupper(UCHAR(*p1)) ? tolower(UCHAR(*p1)) : *p1)
171 if (*p1 == 0) {
109 char *p, *fullFileName, *p1, *p2; local
/ast/src/lib/libtk/generic/
H A DtkTrig.c1316 TkGetMiterPoints(p1, p2, p3, width, m1, m2)
1317 double p1[]; /* Points to x- and y-coordinates of point
1325 * point (see as you face from p1 to p2). */
1329 double theta1; /* Angle of segment p2-p1. */
1341 if (p2[1] == p1[1]) {
1342 theta1 = (p2[0] < p1[0]) ? 0 : PI;
1343 } else if (p2[0] == p1[0]) {
1344 theta1 = (p2[1] < p1[1]) ? PI/2.0 : -PI/2.0;
1346 theta1 = atan2(p1[1] - p2[1], p1[
[all...]
H A DtkInt.h721 EXTERN void TkGetButtPoints _ANSI_ARGS_((double p1[], double p2[],
732 EXTERN int TkGetMiterPoints _ANSI_ARGS_((double p1[], double p2[],
/ast/src/cmd/ksh93/tests/
H A Dlocale.sh321 unset i p1 p2 x
329 then p1=s p2="are not space characters"
330 else p1= p2="is not a space character"
332 err_exit "unicode char$p1 ${x#?} $p2 in locale $LC_ALL"
/ast/src/cmd/tests/sfio/
H A Dtsync.c91 int p1[2], p2[2]; local
98 if(pipe(p1) < 0 || close(1) < 0 || dup(p1[1]) != 1)
/ast/src/lib/libast/misc/
H A Dglob.c201 trim(register char* sp, register char* p1, int* n1, register char* p2, int* n2) argument
206 if (p1)
214 if (sp == p1)
216 p1 = 0;
/ast/src/cmd/dsslib/ip_t/
H A Dbgp.h290 unsigned char p1; /* parameter 1 */ member in struct:Bgproute_s
/ast/src/lib/libpp/
H A Dppcontrol.c296 static char* p1; local
519 p1 = p2 = p3 = p4 = 0;
564 p1 = s = oldof(0, char, 0, strlen(p) + 32);
566 debug((-4, "map: %s", p1));
570 PUSH_RESCAN(p1);
617 (*pp.pragma)(pp.valbuf + 1, p1, p3, p5, (pp.state & COMPILE) || (pp.mode & INIT) != 0);
689 formvals[mac->arity++] = p1 = p;
868 p1 = p;
1177 mac->formkeys = newof(0, struct ppkeyarg, n, p1 - p0 + 1);
1179 (void)memcpy(s, p0, p1
[all...]
/ast/src/lib/libbz/
H A Dblocksort.c259 static void vswap ( UInt32* zptr, Int32 p1, Int32 p2, Int32 n ) argument
262 swap(zptr[p1], zptr[p2]);
263 p1++; p2++; n--;
/ast/src/lib/libast/port/
H A Dlcgen.c195 macro(FILE* f, char* p1, char* p2, char* p3) argument
197 macro(f, p1, p2, p3)
199 char* p1;
214 part[0] = p1;

Completed in 85 milliseconds