Lines Matching refs:j
648 Awkfloat j; in relop() local
653 j = x->fval - y->fval; in relop()
654 i = j<0? -1: (j>0? 1: 0); in relop()
998 Awkfloat i, j = 0; in arith() local
1007 j = getfval(y); in arith()
1013 i += j; in arith()
1016 i -= j; in arith()
1019 i *= j; in arith()
1022 if (j == 0) in arith()
1024 i /= j; in arith()
1027 if (j == 0) in arith()
1029 modf(i/j, &v); in arith()
1030 i = i - j * v; in arith()
1036 if (j >= 0 && modf(j, &v) == 0.0) /* pos integer exponent */ in arith()
1037 i = ipow(i, (int) j); in arith()
1039 i = errcheck(pow(i, j), "pow"); in arith()