Lines Matching defs:pszValue

103  * @param   pszValue    Pointer to the string value.
109 RTDECL(int) RTStrToUInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint64_t *pu64)
111 const char *psz = pszValue;
163 pszValue = psz; /* (Prefix and sign doesn't count in the digit counting.) */
192 if (psz == pszValue)
227 * @param pszValue Pointer to the string value.
232 RTDECL(int) RTStrToUInt64Full(const char *pszValue, unsigned uBase, uint64_t *pu64)
235 int rc = RTStrToUInt64Ex(pszValue, &psz, uBase, pu64);
258 * @param pszValue Pointer to the string value.
260 RTDECL(uint64_t) RTStrToUInt64(const char *pszValue)
263 int rc = RTStrToUInt64Ex(pszValue, NULL, 0, &u64);
283 * @param pszValue Pointer to the string value.
289 RTDECL(int) RTStrToUInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint32_t *pu32)
292 int rc = RTStrToUInt64Ex(pszValue, ppszNext, uBase, &u64);
318 * @param pszValue Pointer to the string value.
323 RTDECL(int) RTStrToUInt32Full(const char *pszValue, unsigned uBase, uint32_t *pu32)
326 int rc = RTStrToUInt64Full(pszValue, uBase, &u64);
345 * @param pszValue Pointer to the string value.
347 RTDECL(uint32_t) RTStrToUInt32(const char *pszValue)
350 int rc = RTStrToUInt32Ex(pszValue, NULL, 0, &u32);
370 * @param pszValue Pointer to the string value.
376 RTDECL(int) RTStrToUInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint16_t *pu16)
379 int rc = RTStrToUInt64Ex(pszValue, ppszNext, uBase, &u64);
405 * @param pszValue Pointer to the string value.
410 RTDECL(int) RTStrToUInt16Full(const char *pszValue, unsigned uBase, uint16_t *pu16)
413 int rc = RTStrToUInt64Full(pszValue, uBase, &u64);
432 * @param pszValue Pointer to the string value.
434 RTDECL(uint16_t) RTStrToUInt16(const char *pszValue)
437 int rc = RTStrToUInt16Ex(pszValue, NULL, 0, &u16);
457 * @param pszValue Pointer to the string value.
463 RTDECL(int) RTStrToUInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint8_t *pu8)
466 int rc = RTStrToUInt64Ex(pszValue, ppszNext, uBase, &u64);
492 * @param pszValue Pointer to the string value.
497 RTDECL(int) RTStrToUInt8Full(const char *pszValue, unsigned uBase, uint8_t *pu8)
500 int rc = RTStrToUInt64Full(pszValue, uBase, &u64);
519 * @param pszValue Pointer to the string value.
521 RTDECL(uint8_t) RTStrToUInt8(const char *pszValue)
524 int rc = RTStrToUInt8Ex(pszValue, NULL, 0, &u8);
548 * @param pszValue Pointer to the string value.
554 RTDECL(int) RTStrToInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, int64_t *pi64)
556 const char *psz = pszValue;
608 pszValue = psz; /* (Prefix and sign doesn't count in the digit counting.) */
633 if (psz == pszValue)
667 * @param pszValue Pointer to the string value.
672 RTDECL(int) RTStrToInt64Full(const char *pszValue, unsigned uBase, int64_t *pi64)
675 int rc = RTStrToInt64Ex(pszValue, &psz, uBase, pi64);
698 * @param pszValue Pointer to the string value.
700 RTDECL(int64_t) RTStrToInt64(const char *pszValue)
703 int rc = RTStrToInt64Ex(pszValue, NULL, 0, &i64);
722 * @param pszValue Pointer to the string value.
728 RTDECL(int) RTStrToInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, int32_t *pi32)
731 int rc = RTStrToInt64Ex(pszValue, ppszNext, uBase, &i64);
757 * @param pszValue Pointer to the string value.
762 RTDECL(int) RTStrToInt32Full(const char *pszValue, unsigned uBase, int32_t *pi32)
765 int rc = RTStrToInt64Full(pszValue, uBase, &i64);
785 * @param pszValue Pointer to the string value.
787 RTDECL(int32_t) RTStrToInt32(const char *pszValue)
790 int rc = RTStrToInt32Ex(pszValue, NULL, 0, &i32);
809 * @param pszValue Pointer to the string value.
815 RTDECL(int) RTStrToInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, int16_t *pi16)
818 int rc = RTStrToInt64Ex(pszValue, ppszNext, uBase, &i64);
844 * @param pszValue Pointer to the string value.
849 RTDECL(int) RTStrToInt16Full(const char *pszValue, unsigned uBase, int16_t *pi16)
852 int rc = RTStrToInt64Full(pszValue, uBase, &i64);
872 * @param pszValue Pointer to the string value.
874 RTDECL(int16_t) RTStrToInt16(const char *pszValue)
877 int rc = RTStrToInt16Ex(pszValue, NULL, 0, &i16);
896 * @param pszValue Pointer to the string value.
902 RTDECL(int) RTStrToInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, int8_t *pi8)
905 int rc = RTStrToInt64Ex(pszValue, ppszNext, uBase, &i64);
931 * @param pszValue Pointer to the string value.
936 RTDECL(int) RTStrToInt8Full(const char *pszValue, unsigned uBase, int8_t *pi8)
939 int rc = RTStrToInt64Full(pszValue, uBase, &i64);
959 * @param pszValue Pointer to the string value.
961 RTDECL(int8_t) RTStrToInt8(const char *pszValue)
964 int rc = RTStrToInt8Ex(pszValue, NULL, 0, &i8);