Lines Matching defs:valuep
515 If the value of the number can fit an in UV, it is returned in the *valuep
516 IS_NUMBER_IN_UV will be set to indicate that *valuep is valid, IS_NUMBER_IN_UV
517 will never be set unless *valuep is valid, but *valuep may have been assigned
519 If valuep is NULL, IS_NUMBER_IN_UV will be set for the same cases as when
520 valuep is non-NULL, but no actual assignment (or SEGV) will occur.
523 seen (in which case *valuep gives the true value truncated to an integer), and
524 IS_NUMBER_NEG if the number is negative (in which case *valuep holds the
531 Perl_grok_number(pTHX_ const char *pv, STRLEN len, UV *valuep)
615 worry about setting *valuep. */
641 if (valuep)
642 *valuep = value;
652 numtype |= IS_NUMBER_NOT_INT | IS_NUMBER_IN_UV; /* valuep assigned below */
658 if (valuep) {
660 *valuep = 0;
714 if (valuep)
715 *valuep = 0;