PLUS               58 bcmath/libbcmath/src/compare.c       if (n1->n_sign == PLUS)
PLUS               70 bcmath/libbcmath/src/compare.c 	  if (!use_sign || n1->n_sign == PLUS)
PLUS               78 bcmath/libbcmath/src/compare.c 	  if (!use_sign || n1->n_sign == PLUS)
PLUS              104 bcmath/libbcmath/src/compare.c 	  if (!use_sign || n1->n_sign == PLUS)
PLUS              112 bcmath/libbcmath/src/compare.c 	  if (!use_sign || n1->n_sign == PLUS)
PLUS              128 bcmath/libbcmath/src/compare.c 		if (!use_sign || n1->n_sign == PLUS)
PLUS              140 bcmath/libbcmath/src/compare.c 		if (!use_sign || n1->n_sign == PLUS)
PLUS              109 bcmath/libbcmath/src/div.c 	  qval->n_sign = (n1->n_sign == n2->n_sign ? PLUS : MINUS);
PLUS              261 bcmath/libbcmath/src/div.c   qval->n_sign = ( n1->n_sign == n2->n_sign ? PLUS : MINUS );
PLUS              262 bcmath/libbcmath/src/div.c   if (bc_is_zero (qval TSRMLS_CC)) qval->n_sign = PLUS;
PLUS               64 bcmath/libbcmath/src/init.c   temp->n_sign = PLUS;
PLUS               65 bcmath/libbcmath/src/num2long.c   if (num->n_sign == PLUS)
PLUS               52 bcmath/libbcmath/src/num2str.c   signch = ( num->n_sign == PLUS ? 0 : 1 );  /* Number of sign chars. */
PLUS              143 bcmath/libbcmath/src/output.c 	int_part->n_sign = PLUS;
PLUS              144 bcmath/libbcmath/src/output.c 	frac_part->n_sign = PLUS;
PLUS               71 bcmath/libbcmath/src/recmul.c   temp->n_sign = PLUS;
PLUS              297 bcmath/libbcmath/src/recmul.c   pval->n_sign = ( n1->n_sign == n2->n_sign ? PLUS : MINUS );
PLUS              303 bcmath/libbcmath/src/recmul.c     pval->n_sign = PLUS;
PLUS               87 bcmath/libbcmath/src/str2num.c       (*num)->n_sign = PLUS;
PLUS               70 bcmath/libbcmath/src/sub.c 	  diff->n_sign = (n2->n_sign == PLUS ? MINUS : PLUS);