Searched refs:inLen (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.10/CommonCrypto-60061/libcn/
H A DCommonBufferingPriv.h42 typedef int (*cnProcessFunction)(void *ctx, const void *in, size_t inLen, void *out, size_t *outLen);
43 typedef size_t (*cnSizeFunction)(void *ctx, size_t inLen);
47 void *ctx, const void *in, const size_t inLen, void *out, size_t *outLen,
H A DCommonBuffering.c48 void *ctx, const void *in, const size_t inLen, void *out, size_t *outLen,
53 size_t inputLen = inLen, outputLen, inputUsing, outputAvailable;
57 if(sizeFunc(ctx, bufRef->bufferPos + inLen) > outputAvailable) return kCNBufferTooSmall;
47 CNBufferProcessData(CNBufferRef bufRef, void *ctx, const void *in, const size_t inLen, void *out, size_t *outLen, cnProcessFunction pFunc, cnSizeFunction sizeFunc) argument
H A DCommonBaseXX.c399 CNEncoderGetOutputLength(CNEncoderRef encoderRef, const size_t inLen) argument
407 retval = encodeLen(coderRef, inLen + coderRef->base256buffer->bufferPos) + 1;
409 retval = decodeLen(coderRef, inLen + coderRef->baseXXbuffer->bufferPos);
418 CNEncoderGetOutputLengthFromEncoding(CNEncodings encoding, CNEncodingDirection direction, const size_t inLen) argument
427 retval = encodeLen(coder, inLen) + 1;
429 retval = decodeLen(coder, inLen);
439 CNEncoderUpdate(CNEncoderRef coderRef, const void *in, const size_t inLen, void *out, size_t *outLen) argument
451 if(0 == inLen) {
461 retval = CNBufferProcessData(coderRef->base256buffer, coderRef, in, inLen, out, outLen, enCode, encodeLen);
463 retval = CNBufferProcessData(coderRef->baseXXbuffer, coderRef, in, inLen, ou
539 CNEncode(CNEncodings encoding, CNEncodingDirection direction, const void *in, const size_t inLen, void *out, size_t *outLen) argument
[all...]
/macosx-10.10/Security-57031.1.35/certificates/ota_cert_tool/ios_ota_cert_tool/
H A DCommonBufferingPriv.h42 typedef int (*cnProcessFunction)(void *ctx, const void *in, size_t inLen, void *out, size_t *outLen);
43 typedef size_t (*cnSizeFunction)(void *ctx, size_t inLen);
47 void *ctx, const void *in, const size_t inLen, void *out, size_t *outLen,
H A DCommonBaseXX.h83 @param inLen The number of bytes to be processed.
93 const void *in, const size_t inLen,
155 @param inLen The number of bytes to be processed.
162 CNEncoderGetOutputLength(CNEncoderRef coderRef, const size_t inLen)
174 @param inLen The number of bytes to be processed.
183 const size_t inLen)
196 @param inLen The number of bytes to be processed.
206 CNEncoderUpdate(CNEncoderRef coderRef, const void *in, const size_t inLen, void *out,
H A DCommonBuffering.c48 void *ctx, const void *in, const size_t inLen, void *out, size_t *outLen,
53 size_t inputLen = inLen, outputLen, inputUsing, outputAvailable;
57 if(sizeFunc(ctx, bufRef->bufferPos + inLen) > outputAvailable) return kCNBufferTooSmall;
47 CNBufferProcessData(CNBufferRef bufRef, void *ctx, const void *in, const size_t inLen, void *out, size_t *outLen, cnProcessFunction pFunc, cnSizeFunction sizeFunc) argument
/macosx-10.10/CommonCrypto-60061/include/
H A DCommonBaseXX.h83 @param inLen The number of bytes to be processed.
93 const void *in, const size_t inLen,
155 @param inLen The number of bytes to be processed.
162 CNEncoderGetOutputLength(CNEncoderRef coderRef, const size_t inLen)
174 @param inLen The number of bytes to be processed.
183 const size_t inLen)
196 @param inLen The number of bytes to be processed.
206 CNEncoderUpdate(CNEncoderRef coderRef, const void *in, const size_t inLen, void *out,
H A DCommonRSACryptor.h396 @param inLen The input data length.
413 size_t inLen,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/tests/
H A Dt-rsa.cpp87 unsigned int inLen; local
88 check(B_EncryptUpdate(enc, crypt, &inLen, sizeof(crypt),
90 printf("EncryptUpdate output = %u\n", inLen);
91 check(B_EncryptFinal(enc, crypt, &inLen, sizeof(crypt), random, NULL));
92 printf("EncryptFinal output=%u\n", inLen);
99 crypt, inLen, random, NULL));
H A Dt-dsa.cpp90 unsigned int inLen;
91 check(B_EncryptUpdate(enc, crypt, &inLen, sizeof(crypt),
93 printf("EncryptUpdate output = %u\n", inLen);
94 check(B_EncryptFinal(enc, crypt, &inLen, sizeof(crypt), random, NULL));
95 printf("EncryptFinal output=%u\n", inLen);
102 crypt, inLen, random, NULL));
/macosx-10.10/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibUnitDirectory.h61 size_t inLen,
83 size_t inLen,
H A DIOFireWireLibUnitDirectory.cpp258 size_t inLen,
261 return IOFireWireIUnknown::InterfaceMap<LocalUnitDirectory>::GetThis(self)->AddEntry(key, inBuffer, inLen, inDesc);
254 SAddEntry_Ptr( DirRef self, int key, void* inBuffer, size_t inLen, CFStringRef inDesc) argument
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/genErrorStrings/
H A DgenErrorStrings.cpp130 unsigned inLen,
147 while(inLen != 0) {
149 getLine(in, inLen, lineBuf);
127 processFile( const char *fileName, const char *in, unsigned inLen, FILE *f) argument
/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSSymbol.cpp269 unsigned int j, inLen, hash; local
272 hashSymbol(cString, &hash, &inLen); inLen++;
282 if (inLen == probeSymbol->length
290 if (inLen == probeSymbol->length
302 unsigned int j, inLen, hash; local
305 hashSymbol(cString, &hash, &inLen); inLen++;
319 if (inLen == probeSymbol->length
338 if (inLen
361 unsigned int j, inLen, hash; local
[all...]
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWAddressSpace.cpp362 UInt32 IOFWAddressSpace::doLock(UInt16 nodeID, IOFWSpeed &speed, FWAddress addr, UInt32 inLen, argument
373 size = inLen/8; // Depends on type, right for 'compare and swap'
374 outLen = inLen/2; // right for 'compare and swap'
H A DIOFWUserPseudoAddressSpace.cpp577 UInt32 IOFWUserPseudoAddressSpace::doLock(UInt16 nodeID, IOFWSpeed &speed, FWAddress addr, UInt32 inLen, argument
587 if(addr.addressLo + inLen > fBase.addressLo+fLen)
592 return doPacket( nodeID, speed, addr, inLen, newVal, refcon, IOFWPacketHeader::kLockPacket, oldVal ) ;
595 return IOFWPseudoAddressSpace::doLock( nodeID, speed, addr, inLen, newVal, outLen, oldVal, type, refcon ) ;
H A DIOFWUserPseudoAddressSpace.h257 UInt32 inLen,
/macosx-10.10/OpenSSL098-52/src/demos/engines/ibmca/
H A Dhw_ibmca.c481 int inLen, outLen, tmpLen; local
575 inLen = outLen;
579 if( (rc = p_icaRsaModExpo(handle, inLen,(unsigned char *)argument->d,
642 int inLen, outLen; local
795 inLen = outLen;
801 if ( (rc = p_icaRsaCrt(handle, inLen, (unsigned char *)argument->d,
/macosx-10.10/ppp-786.1.1/Helpers/pppd/
H A Dmd5.c141 account for the presence of each of the characters inBuf[0..inLen-1]
144 void MD5Update (mdContext, inBuf, inLen)
147 unsigned int inLen;
157 if ((mdContext->i[0] + ((UINT4)inLen << 3)) < mdContext->i[0])
159 mdContext->i[0] += ((UINT4)inLen << 3);
160 mdContext->i[1] += ((UINT4)inLen >> 29);
162 while (inLen--) {
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/md5/
H A Dmd5.c114 account for the presence of each of the characters inBuf[0..inLen-1]
117 void MD5Update (mdContext, inBuf, inLen)
119 unsigned int inLen;
129 if ((mdContext->i[0] + ((UINT4)inLen << 3)) < mdContext->i[0])
131 mdContext->i[0] += ((UINT4)inLen << 3);
132 mdContext->i[1] += ((UINT4)inLen >> 29);
134 while (inLen--) {
/macosx-10.10/tcl-105/tcl_ext/trf/trf/generic/md5/
H A Dmd5.c114 account for the presence of each of the characters inBuf[0..inLen-1]
117 void MD5Update (mdContext, inBuf, inLen)
119 unsigned int inLen;
129 if ((mdContext->i[0] + ((UINT4)inLen << 3)) < mdContext->i[0])
131 mdContext->i[0] += ((UINT4)inLen << 3);
132 mdContext->i[1] += ((UINT4)inLen >> 29);
134 while (inLen--) {
/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Dtokenfactory.c97 int inLen; local
100 inLen = 0;
102 inLen = strlen(inStr);
104 if (inLen > MSC_MAXSIZE_AID)
109 for (i = 0; i < inLen; i += 2)
/macosx-10.10/ICU-531.30/icuSources/test/iotest/
H A Dfiletst.c924 size_t inLen =0;
946 inLen = fread(inBuf, 1, 200, myCFile);
949 if(inLen<=0) {
955 for(i=0;i<(int32_t)inLen;i++) {
971 if(inLen != 12) {
972 log_err("Expected 12 bytes, read %d\n", inLen);
974 log_verbose("OK: read %d bytes\n", inLen);
/macosx-10.10/CommonCrypto-60061/lib/
H A DCommonRSACryptor.c386 CCRSACryptorCrypt(CCRSACryptorRef rsaKey, const void *in, size_t inLen, void *out, size_t *outLen) argument
393 if(inLen != keysizeBytes || *outLen < keysizeBytes) return kCCMemoryFailure;
397 ccn_read_uint(n, buf, inLen, in);
/macosx-10.10/security_ocspd-55124/server/
H A DocspdServer.cpp277 size_t inLen)
279 size_t outStrLen = (inLen*2)+1;
285 size_t dataLen = inLen;
275 crlPrintableStringWithData( unsigned char *inData, size_t inLen) argument

Completed in 324 milliseconds

12