Lines Matching defs:cch
1050 * @param cch The number of characters to write.
1052 static RTEXITCODE vbcppOutputWrite(PVBCPP pThis, const char *pch, size_t cch)
1054 int rc = ScmStreamWrite(&pThis->StrmOutput, pch, cch);
2864 ssize_t cch = 0;
2896 cch = ScmStreamPrintf(&pThis->StrmOutput, "inline %s %s = %.*s;\n",
2935 cch = ScmStreamPrintf(&pThis->StrmOutput, "inline %s %s = %.*s;\n",
2938 cch = ScmStreamPrintf(&pThis->StrmOutput, "inline uint32_t %s = 1U << %llu;\n",
2941 cch = ScmStreamPrintf(&pThis->StrmOutput, "inline uint64_t %s = 1ULL << %llu;\n",
2954 if (cch < 0)
3053 ssize_t cch;
3055 cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*sdefine %.*s(%.*s)",
3058 cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*sdefine %.*s",
3060 if (cch > 0)
3061 vbcppOutputComment(pThis, pStrmInput, offValue, cch, 1);
3122 ssize_t cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*sundef %.*s",
3124 if (cch > 0)
3125 vbcppOutputComment(pThis, pStrmInput, offMaybeComment, cch, 1);
3229 ssize_t cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*s%s %.*s",
3231 if (cch < 0)
3232 return vbcppError(pThis, "Output error %Rrc", (int)cch);
4538 ssize_t cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*selif", pCond->iKeepLevel - 1, "");
4539 if (cch > 0)
4540 rcExit = vbcppOutputComment(pThis, pStrmInput, offStart, cch, 2);
4542 rcExit = vbcppError(pThis, "Output error %Rrc", (int)cch);
4696 ssize_t cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*selse", pCond->iKeepLevel - 1, "");
4697 if (cch > 0)
4698 rcExit = vbcppOutputComment(pThis, pStrmInput, offStart, cch, 2);
4700 rcExit = vbcppError(pThis, "Output error %Rrc", (int)cch);
4748 ssize_t cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*sendif", pCond->iKeepLevel - 1, "");
4749 if (cch > 0)
4750 rcExit = vbcppOutputComment(pThis, pStrmInput, offStart, cch, 1);
4752 rcExit = vbcppError(pThis, "Output error %Rrc", (int)cch);
4886 ssize_t cch;
4888 cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*sinclude <%.*s>",
4891 cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*sinclude \"%.*s\"",
4894 cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*sinclude %.*s",
4896 if (cch > 0)
4897 rcExit = vbcppOutputComment(pThis, pStrmInput, offIncEnd, cch, 1);
4899 rcExit = vbcppError(pThis, "Output error %Rrc", (int)cch);
4954 ssize_t cch = ScmStreamPrintf(&pThis->StrmOutput, "#%*spragma %.*s",
4956 if (cch > 0)
4957 rcExit = vbcppOutputComment(pThis, pStrmInput, off2nd, cch, 1);