Searched refs:dataLen (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/libkern/c++/
H A DOSString.cpp232 unsigned int dataLen = obj->getLength ();; local
235 if (dataLen != length) {
243 if ( (dataLen - length) == 1 ) {
244 if (dataPtr[dataLen-1] != 0)
246 dataLen--;
252 for ( unsigned int i=0; i < dataLen; i++ ) {
/darwin-on-arm/xnu/libkern/crypto/
H A Dlocalcrypto_sha1.c149 typedef kern_return_t (*InKernelPerformSHA1Func)(void *ref, const void *data, size_t dataLen, u_int32_t *inHash, u_int32_t options, u_int32_t *outHash, Boolean usePhysicalAddress);
247 static u_int32_t SHA1UpdateWithHardware(SHA1_CTX *context, const unsigned char *data, size_t dataLen, Boolean usePhysicalAddress) argument
253 result = performSHA1WithinKernelOnly(SHA1Ref, data, dataLen, inHashBuffer, options, inHashBuffer, usePhysicalAddress);
261 if ((context->bcount[1] += (dataLen << 3)) < (dataLen << 3))
263 context->bcount[0] += (dataLen >> 29);
264 return dataLen;
H A Dcorecrypto_sha1.c94 typedef kern_return_t (*InKernelPerformSHA1Func)(void *ref, const void *data, size_t dataLen, u_int32_t *inHash, u_int32_t options, u_int32_t *outHash, Boolean usePhysicalAddress);

Completed in 118 milliseconds