Lines Matching defs:cch

54     size_t cch = pfnOutput(pvArgOutput, pszType, 5);
55 cch += pfnOutput(pvArgOutput, "=", 1);
58 cch += pfnOutput(pvArgOutput, szNum, cchNum);
59 return cch;
70 size_t cch = RTStrPrintf(szBuf, sizeof(szBuf), "%N", pszFormat, &va);
77 else if (cch != cchExpect)
79 iLine, cch, cchExpect);
82 cch = RTStrPrintf(szBuf, sizeof(szBuf), "%uxxx%Nyyy%u", 43, pszFormat, &va, 43);
91 else if (cch != 5 + cchExpect + 5)
93 iLine, cch, 5 + cchExpect + 5);
114 size_t cch = RTStrPrintf(pszBuf, BUF_SIZE, "u32=%d u64=%lld u64=%#llx", u32, u64, u64);
123 cch = RTStrPrintf(pszBuf, BUF_SIZE, "u64=%#llx 42=%d u64=%lld 42=%d", u64, 42, u64, 42);
133 cch = RTStrPrintf(pszBuf, BUF_SIZE, "u64=%#llx 42=%d u64=%llu 42=%d u64=%lld 42=%d", u64, 42, u64, 42, u64, 42);
144 cch = RTStrPrintf(pszBuf, BUF_SIZE, "u64=%#llx 42=%d u64=%lld 42=%d", u64, 42, u64, 42);
154 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%RTuuid", &Uuid);
186 cch = RTStrPrintf(pszBuf, BUF_SIZE, fmt " 42=%d " fmt " 42=%d", arg, 42, arg, 42); \
192 else if (cch != sizeof(out " 42=42 " out " 42=42") - 1) \
194 __LINE__, cch, sizeof(out " 42=42 " out " 42=42") - 1); \
527 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%RTuuid", &Uuid);
602 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%-10s %-30s %s", "cmd", "args", "description");
605 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%-10s %-30s %s", "cmd", "", "description");
609 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%*s", 0, "");
616 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%ls", s_wsz1);
618 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%Ls", s_usz1);
621 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.5ls", s_wsz1);
623 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.5Ls", s_usz1);
637 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%-10ls %-30ls %ls", s_wszCmd, s_wszArgs, s_wszDesc);
640 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%-10ls %-30ls %ls", s_wszCmd, s_wszEmpty, s_wszDesc);
649 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%ls", s_wsz2);
651 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%Ls", s_usz2);
660 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.1Rhxs", s_abHex1);
662 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.2Rhxs", s_abHex1);
664 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%Rhxs", s_abHex1);
666 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.*Rhxs", sizeof(s_abHex1), s_abHex1);
668 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%4.*Rhxs", sizeof(s_abHex1), s_abHex1);
670 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%1.*Rhxs", sizeof(s_abHex1), s_abHex1);
672 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%256.*Rhxs", sizeof(s_abHex1), s_abHex1);
675 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%4.8Rhxd", s_abHex1);
682 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%4.6Rhxd", s_abHex1);
689 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%.*Rhxd", sizeof(s_abHex1), s_abHex1);
714 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3]", (void *)1);
719 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1]", (void *)1, (void *)2);
724 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4]", (void *)1, (void *)2, (void *)3);
729 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4] %R[type2]", (void *)1, (void *)2, (void *)3, (void *)4);
734 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4] %R[type2] %R[type5]", (void *)1, (void *)2, (void *)3, (void *)4, (void *)5);
743 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4] %R[type2] %R[type5]", (void *)10, (void *)20, (void *)30, (void *)40, (void *)50);
747 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4] %R[type5]", (void *)10, (void *)20, (void *)30, (void *)40);
751 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1] %R[type4]", (void *)10, (void *)20, (void *)30);
755 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3] %R[type1]", (void *)10, (void *)20);
759 cch = RTStrPrintf(pszBuf, BUF_SIZE, "%R[type3]", (void *)10);