Lines Matching refs:num

155 	register Sfdouble_t num=0,*dp,*sp;  in arith_exec()  local
191 if((c==A_JMPZ && num) || (c==A_JMPNZ &&!num)) in arith_exec()
197 num = (num!=0); in arith_exec()
202 (*ep->fun)(&ptr,&node,ASSIGN,num+1); in arith_exec()
206 (*ep->fun)(&ptr,&node,ASSIGN,num-1); in arith_exec()
209 num = num+1; in arith_exec()
211 num = (*ep->fun)(&ptr,&node,ASSIGN,num); in arith_exec()
214 num = num-1; in arith_exec()
216 num = (*ep->fun)(&ptr,&node,ASSIGN,num); in arith_exec()
219 num = sp[-1]; in arith_exec()
237 num = (*ep->fun)(&ptr,&node,VALUE,num); in arith_exec()
240 *++sp = num; in arith_exec()
242 if(num > LDBL_ULLONG_MAX || num < LDBL_LLONG_MIN) in arith_exec()
246 Sfdouble_t d=num; in arith_exec()
247 if(num > LDBL_LLONG_MAX && num <= LDBL_ULLONG_MAX) in arith_exec()
270 num = (*ep->fun)(&ptr,&node,ASSIGN,num); in arith_exec()
281 num = *((Sfdouble_t*)cp); in arith_exec()
283 *++sp = num; in arith_exec()
288 num = !num; in arith_exec()
291 num = -num; in arith_exec()
294 num = ~((Sflong_t)(num)); in arith_exec()
297 num += sp[-1]; in arith_exec()
300 num = sp[-1] - num; in arith_exec()
303 num *= sp[-1]; in arith_exec()
306 num = pow(sp[-1],num); in arith_exec()
309 if(!(Sflong_t)num) in arith_exec()
312 num = U2F((Sfulong_t)(sp[-1]) % (Sfulong_t)(num)); in arith_exec()
314 num = (Sflong_t)(sp[-1]) % (Sflong_t)(num); in arith_exec()
319 num = sp[-1]/num; in arith_exec()
322 else if((Sfulong_t)(num)==0) in arith_exec()
325 num = U2F((Sfulong_t)(sp[-1]) / (Sfulong_t)(num)); in arith_exec()
327 num = (Sflong_t)(sp[-1]) / (Sflong_t)(num); in arith_exec()
331 num = U2F((Sfulong_t)(sp[-1]) << (long)(num)); in arith_exec()
333 num = (Sflong_t)(sp[-1]) << (long)(num); in arith_exec()
337 num = U2F((Sfulong_t)(sp[-1]) >> (long)(num)); in arith_exec()
339 num = (Sflong_t)(sp[-1]) >> (long)(num); in arith_exec()
343 num = U2F((Sfulong_t)(sp[-1]) ^ (Sfulong_t)(num)); in arith_exec()
345 num = (Sflong_t)(sp[-1]) ^ (Sflong_t)(num); in arith_exec()
349 num = U2F((Sfulong_t)(sp[-1]) | (Sfulong_t)(num)); in arith_exec()
351 num = (Sflong_t)(sp[-1]) | (Sflong_t)(num); in arith_exec()
355 num = U2F((Sfulong_t)(sp[-1]) & (Sfulong_t)(num)); in arith_exec()
357 num = (Sflong_t)(sp[-1]) & (Sflong_t)(num); in arith_exec()
360 num = (sp[-1]==num); in arith_exec()
364 num = (sp[-1]!=num); in arith_exec()
368 num = (sp[-1]<=num); in arith_exec()
372 num = (sp[-1]>=num); in arith_exec()
376 num = (sp[-1]>num); in arith_exec()
380 num = (sp[-1]<num); in arith_exec()
387 num = (*((Math_1f_f)fun))(num); in arith_exec()
393 num = (*((Math_1i_f)fun))(num); in arith_exec()
399 num = (*((Math_2f_f)fun))(sp[1],num); in arith_exec()
405 num = (*((Math_2i_f)fun))(sp[1],num); in arith_exec()
411 num = (*((Math_3f_f)fun))(sp[1],sp[2],num); in arith_exec()
416 *sp = num; in arith_exec()
421 return(num); in arith_exec()