Lines Matching refs:strval
189 char *strval; in convert_scalar_to_number() local
191 strval = Z_STRVAL_P(op); in convert_scalar_to_number()
192 …if ((Z_TYPE_P(op)=is_numeric_string(strval, Z_STRLEN_P(op), &Z_LVAL_P(op), &Z_DVAL_P(op), 1)) == 0… in convert_scalar_to_number()
195 str_efree(strval); in convert_scalar_to_number()
391 char *strval = Z_STRVAL_P(op); in convert_to_long_base() local
393 Z_LVAL_P(op) = strtol(strval, NULL, base); in convert_to_long_base()
394 str_efree(strval); in convert_to_long_base()
451 char *strval = Z_STRVAL_P(op); in convert_to_double() local
453 Z_DVAL_P(op) = zend_strtod(strval, NULL); in convert_to_double()
454 str_efree(strval); in convert_to_double()
535 char *strval = Z_STRVAL_P(op); in convert_to_boolean() local
543 str_efree(strval); in convert_to_boolean()