Lines Matching refs:psz

111     const char   *psz = pszValue;
121 for (;; psz++)
123 if (*psz == '+')
125 else if (*psz == '-')
136 if ( psz[0] == '0'
137 && (psz[1] == 'x' || psz[1] == 'X')
138 && g_auchDigits[(unsigned char)psz[2]] < 16)
141 psz += 2;
143 else if ( psz[0] == '0'
144 && g_auchDigits[(unsigned char)psz[1]] < 8)
147 psz++;
153 && psz[0] == '0'
154 && (psz[1] == 'x' || psz[1] == 'X')
155 && g_auchDigits[(unsigned char)psz[2]] < 16)
156 psz += 2;
163 pszValue = psz; /* (Prefix and sign doesn't count in the digit counting.) */
166 while ((uch = (unsigned char)*psz) != 0)
179 psz++;
192 if (psz == pszValue)
196 *ppszNext = (char *)psz;
202 && *psz)
204 while (*psz == ' ' || *psz == '\t')
205 psz++;
206 rc = *psz ? VWRN_TRAILING_CHARS : VWRN_TRAILING_SPACES;
234 char *psz;
235 int rc = RTStrToUInt64Ex(pszValue, &psz, uBase, pu64);
236 if (RT_SUCCESS(rc) && *psz)
242 while (*psz == ' ' || *psz == '\t')
243 psz++;
244 rc = *psz ? VERR_TRAILING_CHARS : VERR_TRAILING_SPACES;
556 const char *psz = pszValue;
566 for (;; psz++)
568 if (*psz == '+')
570 else if (*psz == '-')
581 if ( *psz == '0'
582 && (psz[1] == 'x' || psz[1] == 'X')
583 && g_auchDigits[(unsigned char)psz[2]] < 16)
586 psz += 2;
588 else if ( *psz == '0'
589 && g_auchDigits[(unsigned char)psz[1]] < 8)
592 psz++;
598 && *psz == '0'
599 && (psz[1] == 'x' || psz[1] == 'X')
600 && g_auchDigits[(unsigned char)psz[2]] < 16)
601 psz += 2;
608 pszValue = psz; /* (Prefix and sign doesn't count in the digit counting.) */
611 while ((uch = (unsigned char)*psz) != 0)
624 psz++;
633 if (psz == pszValue)
637 *ppszNext = (char *)psz;
643 && *psz)
645 while (*psz == ' ' || *psz == '\t')
646 psz++;
647 rc = *psz ? VWRN_TRAILING_CHARS : VWRN_TRAILING_SPACES;
674 char *psz;
675 int rc = RTStrToInt64Ex(pszValue, &psz, uBase, pi64);
676 if (RT_SUCCESS(rc) && *psz)
682 while (*psz == ' ' || *psz == '\t')
683 psz++;
684 rc = *psz ? VERR_TRAILING_CHARS : VERR_TRAILING_SPACES;