• Home
  • Raw
  • Download

Lines Matching refs:nLen

86    int nLen = *pnLen;  in BufBound_ValidateWrite()  local
90 if ( nMaxCopy < nLen ) { in BufBound_ValidateWrite()
94 if (nLen > nMaxAdvance) { in BufBound_ValidateWrite()
95 nLen = nMaxAdvance; in BufBound_ValidateWrite()
102 nMaxCopy = nLen; in BufBound_ValidateWrite()
106 me->pcWrite = pcWrite + nLen; in BufBound_ValidateWrite()
110 void BufBound_Write(BufBound *me, const char *pc, int nLen) in BufBound_Write() argument
112 if (nLen > 0) { in BufBound_Write()
113 char *pcDest = BufBound_ValidateWrite(me, &nLen); in BufBound_Write()
115 while (--nLen >= 0) { in BufBound_Write()
116 pcDest[nLen] = pc[nLen]; in BufBound_Write()
121 void BufBound_Putnc(BufBound *me, char c, int nLen) in BufBound_Putnc() argument
123 if (nLen > 0) { in BufBound_Putnc()
124 char *pcDest = BufBound_ValidateWrite(me, &nLen); in BufBound_Putnc()
126 while (--nLen >= 0) { in BufBound_Putnc()
127 pcDest[nLen] = c; in BufBound_Putnc()
132 void BufBound_Advance(BufBound *me, int nLen) in BufBound_Advance() argument
134 uint32 uOffset = (uint32)((me->pcWrite - me->pcBuf) + nLen); in BufBound_Advance()
138 if (nLen < 0) { in BufBound_Advance()
145 void BufBound_Init(BufBound *me, char *pBuf, int nLen) in BufBound_Init() argument
147 if (nLen < 0) { in BufBound_Init()
148 nLen = 0; in BufBound_Init()
151 me->pcEnd = pBuf + nLen; in BufBound_Init()
208 int nLen = nSrcSize; in BufBound_WriteLE() local
209 char *pcDest = BufBound_ValidateWrite(me, &nLen); in BufBound_WriteLE()
211 (void)std_CopyLE(pcDest, nLen, pvSrc, nSrcSize, pszFields); in BufBound_WriteLE()
220 int nLen = nSrcSize; in BufBound_WriteBE() local
221 char *pcDest = BufBound_ValidateWrite(me, &nLen); in BufBound_WriteBE()
223 (void)std_CopyBE(pcDest, nLen, pvSrc, nSrcSize, pszFields); in BufBound_WriteBE()