Home | History | Annotate | Download | only in C

Lines Matching refs:numBytes

282   UInt32 numBytes = (numItems + 7) >> 3;

283 if (numBytes > sd->Size)
286 SKIP_DATA(sd, numBytes);
312 UInt32 numBytes = (numItems + 7) >> 3;
315 if (numBytes == 0)
319 if (numBytes > sd->Size)
321 MY_ALLOC_AND_CPY(*v, numBytes, sd->Data, alloc);
322 SKIP_DATA(sd, numBytes);
325 MY_ALLOC(Byte, *v, numBytes, alloc);
327 memset(v2, 0xFF, (size_t)numBytes);
331 v2[numBytes - 1] = (Byte)((((UInt32)1 << numBits) - 1) << (8 - numBits));
371 size_t numBytes = (numItems + 7) >> 3;
372 if (numBytes > sd->Size)
375 SKIP_DATA(sd, numBytes);
1319 size_t numBytes = (ssi.NumSubDigests + 7) >> 3;
1321 digestsVals = digestsDefs + numBytes;