Lines Matching defs:cch

105     size_t cch; /* result */
161 cch = 0;
167 cch += pfnOutput(pvArgOutput, ":", 1);
168 cch += pfnOutput(pvArgOutput, szHexWord, rtstrFormatIPv6HexWord(szHexWord, RT_BE2H_U16(pIpv6Addr->au16[idx])));
172 cch += pfnOutput(pvArgOutput, ":", 1);
179 cch += pfnOutput(pvArgOutput, ":", 1);
183 cch += pfnOutput(pvArgOutput, szHexWord, rtstrFormatIPv6HexWord(szHexWord, RT_BE2H_U16(pIpv6Addr->au16[idx])));
184 cch += pfnOutput(pvArgOutput, ":", 1);
188 cch += pfnOutput(pvArgOutput, ":", 1);
193 cch += pfnOutput(pvArgOutput, ":", 1);
194 cch += pfnOutput(pvArgOutput, szHexWord, rtstrFormatIPv6HexWord(szHexWord, RT_BE2H_U16(pIpv6Addr->au16[idx])));
198 cch += pfnOutput(pvArgOutput, ":", 1);
203 cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
210 return cch;
234 size_t cch;
273 uint8_t cch; /**< the length of the string. */
382 int iDiff = strncmp(pszType, s_aTypes[i].sz, s_aTypes[i].cch);
405 *ppszFormat += s_aTypes[i].cch - 1;
477 cch = RTStrFormatNumber(szBuf, u.u64, s_aTypes[i].u8Base, cchWidth, cchPrecision, fFlags);
490 cch = RTStrFormatNumber(szBuf, u.u64, s_aTypes[i].u8Base, cchWidth, cchPrecision, fFlags);
509 cch = RTStrFormatNumber(&szBuf[0], u.fp16.sel, 16, 4, -1, fFlags | RTSTR_F_16BIT);
510 Assert(cch == 4);
512 cch = RTStrFormatNumber(&szBuf[5], u.fp16.off, 16, 4, -1, fFlags | RTSTR_F_16BIT);
513 Assert(cch == 4);
514 cch = 4 + 1 + 4;
520 cch = RTStrFormatNumber(&szBuf[0], u.fp32.sel, 16, 4, -1, fFlags | RTSTR_F_16BIT);
521 Assert(cch == 4);
523 cch = RTStrFormatNumber(&szBuf[5], u.fp32.off, 16, 8, -1, fFlags | RTSTR_F_32BIT);
524 Assert(cch == 8);
525 cch = 4 + 1 + 8;
531 cch = RTStrFormatNumber(&szBuf[0], u.fp64.sel, 16, 4, -1, fFlags | RTSTR_F_16BIT);
532 Assert(cch == 4);
534 cch = RTStrFormatNumber(&szBuf[5], u.fp64.off, 16, 16, -1, fFlags | RTSTR_F_64BIT);
535 Assert(cch == 16);
536 cch = 4 + 1 + 16;
649 return pfnOutput(pvArgOutput, szBuf, cch);
765 cch = 0;
773 cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%s%0*p %04x:", off ? "\n" : "", sizeof(pu8) * 2, (uintptr_t)pu8, off);
775 cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
778 cch += pfnOutput(pvArgOutput, " ", 3);
780 cch += pfnOutput(pvArgOutput, " ", 1);
785 cch += pfnOutput(pvArgOutput, u8 < 127 && u8 >= 32 ? (const char *)&u8 : ".", 1);
792 return cch;
802 cch = RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%02x", *pu8++);
804 cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, " %02x", *pu8);
805 return cch;
941 uint8_t cch; /**< the length of the string. */
973 int iDiff = strncmp(pszType, s_aTypes[i].sz, s_aTypes[i].cch);
992 *ppszFormat += s_aTypes[i].cch - 1;
1147 cch = RTStrFormatNumber(&szBuf[0], (a_uVal), 16, 1, -1, fFlags); \
1148 cchOutput += pfnOutput(pvArgOutput, szBuf, cch); \
1171 cch = RTStrFormatNumber(&szBuf[0], cr0, 16, 8, -1, fFlags | RTSTR_F_ZEROPAD);
1172 cchOutput += pfnOutput(pvArgOutput, szBuf, cch);
1190 cch = RTStrFormatNumber(&szBuf[0], cr4, 16, 8, -1, fFlags | RTSTR_F_ZEROPAD);
1191 cchOutput += pfnOutput(pvArgOutput, szBuf, cch);