Searched defs:cchWord (Results 1 - 7 of 7) sorted by relevance

/vbox/include/iprt/crypto/
H A Dpem.h52 uint32_t cchWord; member in struct:RTCRPEMMARKERWORD
/vbox/src/VBox/Runtime/common/crypto/
H A Dpemfile.cpp137 uint32_t const cchWord = pWord->cchWord; local
138 if (cbContent <= cchWord)
140 if (memcmp(pbContent, pWord->pszWord, cchWord))
142 pbContent += cchWord;
143 cbContent -= cchWord;
/vbox/src/VBox/Debugger/
H A DDBGCEval.cpp643 unsigned cchWord = 0; local
662 cchWord++;
668 cchWord = 0;
672 cchWord++;
676 if (fBinary || cchWord)
685 if (!cPar && fBinary && !cchWord)
689 cchWord = 0;
697 cchWord = 0;
734 cchWord = 0;
736 else if (fBinary && !cchWord)
[all...]
/vbox/src/bldprogs/
H A Dscmstream.cpp1249 * @param cchWord The length of the word.
1252 bool ScmStreamCMatchingWordM1(PSCMSTREAM pStream, const char *pszWord, size_t cchWord) argument
1263 if (cchWord > cchLeft)
1268 if (memcmp(psz, pszWord, cchWord))
1272 if (cchWord < cchLeft)
1274 psz += cchWord;
1280 pStream->off += cchWord - 1;
H A DVBoxTpG.cpp1987 size_t cchWord; local
1988 const char *pszWord = ScmStreamCGetWordM1(pStrm, &cchWord);
1999 if (cchWord + 1 > sizeof(szArg))
2001 memcpy(szArg, pszWord, cchWord);
2002 szArg[cchWord] = '\0';
2003 cchArg = cchWord;
2008 if (cchArg + 1 + cchWord + 1 > sizeof(szArg))
2012 memcpy(&szArg[cchArg], pszWord, cchWord);
2013 cchArg += cchWord;
2015 cchName = cchWord;
[all...]
/vbox/src/VBox/Devices/BiosCommonCode/
H A DMakeAlternativeSource.cpp1390 size_t cchWord = (uintptr_t)psz - (uintptr_t)pszStart; local
1391 if (cchWord >= cbBuf)
1393 memcpy(pszBuf, pszStart, cchWord);
1394 pszBuf[cchWord] = '\0';
1416 size_t cchWord = strlen(szWord);
1420 if (cchWord < cchAddr)
1433 if ( cchWord > cchAddr
1441 if (cchWord > cchAddr)
1446 cchWord = cchAddr;
1474 size_t cchWord
[all...]
/vbox/src/VBox/VMM/tools/
H A DVBoxCpuReport.cpp4527 size_t cchWord = strlen(pszWord); local
4530 memmove(pszHit, pszHit + cchWord, strlen(pszHit + cchWord) + 1);

Completed in 80 milliseconds