Lines Matching defs:num

60     double num;
65 num = 1e24;
67 if(num1 != num){
72 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
74 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
78 num = 0.001e7;
80 if(num1 != num){
84 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
86 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
90 num = 0.0000000000000753;
92 if(num1 != num){
97 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
99 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
103 num = 1.867e73;
105 if(num1 != num){
109 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
111 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
116 num = -1.867e73;
118 if(num1 != num){
122 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
124 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
128 num = -1.867e-73;
130 if(num1 != num){
135 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
137 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
142 num = 1.0 / zero;
144 if(num1 != num){
149 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
151 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
155 num = -1.0 / zero;
157 if(num1 != num){
162 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
164 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
169 num = zero / zero;
171 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
173 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
177 num = - zero / zero;
178 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
180 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
184 num = 1.0000000001e21;
186 if(num1 != num){
192 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
194 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);
199 num = -1.0000000001e-21;
201 if(num1 != num){
206 PR_cnvtf(cnvt,sizeof(cnvt),20,num);
208 fprintf(stderr,"Failed to convert numeric value %lf %s\n",num,cnvt);