Lines Matching refs:cchWidth

2130                                             unsigned uBase, signed int cchWidth, signed int cchPrecision, uint32_t fFlags)
2135 return RTStrFormatU8(pszTmp, cbTmp, pValue->u8, uBase, cchWidth, cchPrecision, fFlags);
2137 return RTStrFormatU16(pszTmp, cbTmp, pValue->u16, uBase, cchWidth, cchPrecision, fFlags);
2139 return RTStrFormatU32(pszTmp, cbTmp, pValue->u32, uBase, cchWidth, cchPrecision, fFlags);
2141 return RTStrFormatU64(pszTmp, cbTmp, pValue->u64, uBase, cchWidth, cchPrecision, fFlags);
2143 return RTStrFormatU128(pszTmp, cbTmp, &pValue->u128, uBase, cchWidth, cchPrecision, fFlags);
2145 return RTStrFormatR80u2(pszTmp, cbTmp, &pValue->r80Ex, cchWidth, cchPrecision, fFlags);
2178 * @param cchWidth The width if RTSTR_F_WIDTH is set, otherwise
2185 unsigned uBase, signed int cchWidth, signed int cchPrecision, uint32_t fFlags)
2191 ssize_t cchOutput = dbgfR3RegFormatValueInt(szTmp, sizeof(szTmp), pValue, enmType, uBase, cchWidth, cchPrecision, fFlags);
2223 int cchWidth = 0;
2226 case DBGFREGVALTYPE_U8: cchWidth = 2 + fSpecial*2; break;
2227 case DBGFREGVALTYPE_U16: cchWidth = 4 + fSpecial*2; break;
2228 case DBGFREGVALTYPE_U32: cchWidth = 8 + fSpecial*2; break;
2229 case DBGFREGVALTYPE_U64: cchWidth = 16 + fSpecial*2; break;
2230 case DBGFREGVALTYPE_U128: cchWidth = 32 + fSpecial*2; break;
2231 case DBGFREGVALTYPE_R80: cchWidth = 0; break;
2232 case DBGFREGVALTYPE_DTR: cchWidth = 16+1+4 + fSpecial*2; break;
2243 if (cchWidth != 0)
2245 return DBGFR3RegFormatValueEx(pszBuf, cbBuf, pValue, enmType, 16, cchWidth, 0, fFlags);
2255 PCDBGFREGLOOKUP pLookupRec, int cchWidth, int cchPrecision, unsigned fFlags)
2259 NOREF(cchWidth); NOREF(cchPrecision); NOREF(fFlags);
2350 PCDBGFREGLOOKUP pLookupRec, unsigned uBase, int cchWidth, int cchPrecision, unsigned fFlags)
2371 ssize_t cchOutput = dbgfR3RegFormatValueInt(szTmp, sizeof(szTmp), &Value, enmType, uBase, cchWidth, cchPrecision, fFlags);
2386 const char **ppszFormat, va_list *pArgs, int cchWidth,
2462 16, cchWidth, cchPrecision, fFlags);
2465 10, cchWidth, cchPrecision, fFlags);
2468 8, cchWidth, cchPrecision, fFlags);
2471 2, cchWidth, cchPrecision, fFlags);
2473 return dbgfR3RegPrintfCbFormatField(pThis, pfnOutput, pvArgOutput, pLookupRec, cchWidth, cchPrecision, fFlags);