1*7c478bd9Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 2*7c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 3*7c478bd9Sstevel@tonic-gate 4*7c478bd9Sstevel@tonic-gate 5*7c478bd9Sstevel@tonic-gate /* 6*7c478bd9Sstevel@tonic-gate * Copyright (c) 1980 Regents of the University of California. 7*7c478bd9Sstevel@tonic-gate * All rights reserved. The Berkeley software License Agreement 8*7c478bd9Sstevel@tonic-gate * specifies the terms and conditions for redistribution. 9*7c478bd9Sstevel@tonic-gate */ 10*7c478bd9Sstevel@tonic-gate 11*7c478bd9Sstevel@tonic-gate /* 12*7c478bd9Sstevel@tonic-gate * Copyright (c) 1983, 1984 1985, 1986, 1987, 1988, Sun Microsystems, Inc. 13*7c478bd9Sstevel@tonic-gate * All Rights Reserved. 14*7c478bd9Sstevel@tonic-gate */ 15*7c478bd9Sstevel@tonic-gate 16*7c478bd9Sstevel@tonic-gate #ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.1 */ 17*7c478bd9Sstevel@tonic-gate 18*7c478bd9Sstevel@tonic-gate # include "e.h" 19*7c478bd9Sstevel@tonic-gate 20*7c478bd9Sstevel@tonic-gate sqrt(p2) int p2; { 21*7c478bd9Sstevel@tonic-gate #ifndef NEQN 22*7c478bd9Sstevel@tonic-gate int nps; 23*7c478bd9Sstevel@tonic-gate 24*7c478bd9Sstevel@tonic-gate nps = EFFPS(((eht[p2]*9)/10+(resolution/POINT-1))/(resolution/POINT)); 25*7c478bd9Sstevel@tonic-gate #endif NEQN 26*7c478bd9Sstevel@tonic-gate yyval = p2; 27*7c478bd9Sstevel@tonic-gate #ifndef NEQN 28*7c478bd9Sstevel@tonic-gate eht[yyval] = VERT(EM(1.2, nps)); 29*7c478bd9Sstevel@tonic-gate if(dbg)printf(".\tsqrt: S%d <- S%d;b=%d, h=%d\n", 30*7c478bd9Sstevel@tonic-gate yyval, p2, ebase[yyval], eht[yyval]); 31*7c478bd9Sstevel@tonic-gate if (rfont[yyval] == ITAL) 32*7c478bd9Sstevel@tonic-gate printf(".as %d \\|\n", yyval); 33*7c478bd9Sstevel@tonic-gate #endif NEQN 34*7c478bd9Sstevel@tonic-gate nrwid(p2, ps, p2); 35*7c478bd9Sstevel@tonic-gate #ifndef NEQN 36*7c478bd9Sstevel@tonic-gate printf(".ds %d \\v'%du'\\s%d\\v'-.2m'\\(sr\\l'\\n(%du\\(rn'\\v'.2m'\\s%d", 37*7c478bd9Sstevel@tonic-gate yyval, ebase[p2], nps, p2, ps); 38*7c478bd9Sstevel@tonic-gate printf("\\v'%du'\\h'-\\n(%du'\\*(%d\n", -ebase[p2], p2, p2); 39*7c478bd9Sstevel@tonic-gate lfont[yyval] = ROM; 40*7c478bd9Sstevel@tonic-gate #else NEQN 41*7c478bd9Sstevel@tonic-gate printf(".ds %d \\v'%du'\\e\\L'%du'\\l'\\n(%du'", 42*7c478bd9Sstevel@tonic-gate p2, ebase[p2], -eht[p2], p2); 43*7c478bd9Sstevel@tonic-gate printf("\\v'%du'\\h'-\\n(%du'\\*(%d\n", eht[p2]-ebase[p2], p2, p2); 44*7c478bd9Sstevel@tonic-gate eht[p2] += VERT(1); 45*7c478bd9Sstevel@tonic-gate if(dbg)printf(".\tsqrt: S%d <- S%d;b=%d, h=%d\n", 46*7c478bd9Sstevel@tonic-gate p2, p2, ebase[p2], eht[p2]); 47*7c478bd9Sstevel@tonic-gate #endif NEQN 48*7c478bd9Sstevel@tonic-gate } 49