res_scale          53 ext/bcmath/libbcmath/src/add.c   int res_scale;
res_scale          73 ext/bcmath/libbcmath/src/add.c 	  res_scale = MAX (scale_min, MAX(n1->n_scale, n2->n_scale));
res_scale          74 ext/bcmath/libbcmath/src/add.c 	  sum = bc_new_num (1, res_scale);
res_scale          75 ext/bcmath/libbcmath/src/add.c 	  memset (sum->n_value, 0, res_scale+1);
res_scale          53 ext/bcmath/libbcmath/src/sub.c   int res_scale;
res_scale          74 ext/bcmath/libbcmath/src/sub.c 	  res_scale = MAX (scale_min, MAX(n1->n_scale, n2->n_scale));
res_scale          75 ext/bcmath/libbcmath/src/sub.c 	  diff = bc_new_num (1, res_scale);
res_scale          76 ext/bcmath/libbcmath/src/sub.c 	  memset (diff->n_value, 0, res_scale+1);