Lines Matching defs:uBase
145 static int usbReadNum(const char *pszValue, unsigned uBase, uint32_t u32Mask, PCUSBSUFF paSuffs, void *pvNum, char **ppszNext)
164 RTStrToUInt32Ex(pszValue, &pszNext, uBase, &u32);
224 static int usbRead8(const char *pszValue, unsigned uBase, uint8_t *pu8, char **ppszNext)
226 return usbReadNum(pszValue, uBase, 0xff, NULL, pu8, ppszNext);
230 static int usbRead16(const char *pszValue, unsigned uBase, uint16_t *pu16, char **ppszNext)
232 return usbReadNum(pszValue, uBase, 0xffff, NULL, pu16, ppszNext);
237 static int usbRead16Suff(const char *pszValue, unsigned uBase, PCUSBSUFF paSuffs, uint16_t *pu16, char **ppszNext)
239 return usbReadNum(pszValue, uBase, 0xffff, paSuffs, pu16, ppszNext);
248 static int usbReadBCD(const char *pszValue, unsigned uBase, uint16_t *pu16, char **ppszNext)
263 RTStrToUInt32Ex(pszValue, &pszNext, uBase, &u32Int);
283 RTStrToUInt32Ex(pszValue2, &pszNext, uBase, &u32Dec);