Searched refs:rawBytes (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsdata.py8 rawBytes = "a\x13b\x00cd\xFFef\xEFgh" variable
41 data = NSData.dataWithBytes_length_(rawBytes, len(rawBytes))
42 mutableData = NSMutableData.dataWithBytes_length_(rawBytes, len(rawBytes))
43 self.assertDataContents(data, mutableData, rawBytes)
58 data = NSData.dataWithBytesNoCopy_length_freeWhenDone_(rawBytes, len(rawBytes), False)
59 mutableData = NSMutableData.dataWithBytesNoCopy_length_freeWhenDone_(rawBytes, len(rawBytes), Fals
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsdata.py9 rawBytes = b"a\x13b\x00cd\xFFef\xEFgh" variable
63 data = NSData.dataWithBytes_length_(rawBytes, len(rawBytes))
64 mutableData = NSMutableData.dataWithBytes_length_(rawBytes, len(rawBytes))
65 self.assertDataContents(data, mutableData, rawBytes)
80 data = NSData.dataWithBytesNoCopy_length_freeWhenDone_(rawBytes, len(rawBytes), False)
81 mutableData = NSMutableData.dataWithBytesNoCopy_length_freeWhenDone_(rawBytes, len(rawBytes), Fals
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nsdata.py31 rawBytes = b"a\x13b\x00cd\xFFef\xEFgh" variable
86 data = NSData.dataWithBytes_length_(rawBytes, len(rawBytes))
87 mutableData = NSMutableData.dataWithBytes_length_(rawBytes, len(rawBytes))
88 self.assertDataContents(data, mutableData, rawBytes)
103 data = NSData.dataWithBytesNoCopy_length_freeWhenDone_(rawBytes, len(rawBytes), False)
104 mutableData = NSMutableData.dataWithBytesNoCopy_length_freeWhenDone_(rawBytes, len(rawBytes), Fals
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DJSDataViewPrototype.cpp123 uint8_t rawBytes[dataSize]; member in union:JSC::__anon2666
130 u.rawBytes[i] = *dataPtr++;
133 u.rawBytes[i] = *dataPtr++;
156 uint8_t rawBytes[dataSize]; member in union:JSC::__anon2667
179 *dataPtr++ = u.rawBytes[i];
182 *dataPtr++ = u.rawBytes[i];
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A DRSA_asymmetric.cpp219 size_t rawBytes = inSize + inBufSize(); local
220 size_t rawBlocks = (rawBytes + inBlockSize() - 1) / inBlockSize();
H A DBlockCryptor.cpp607 size_t rawBytes = inSize + mInBufSize;
609 //size_t rawBlocks = (rawBytes + mInBlockSize - 1) / mInBlockSize;
610 size_t rawBlocks = rawBytes / mInBlockSize;
/macosx-10.10.1/mDNSResponder-561.1.1/Clients/Java/
H A DDNSSDUnitTest.java54 byte[] rawBytes = txtRecord.getRawBytes();
55 System.out.println( ( new String( rawBytes, 0, rawBytes.length)) + " has count " +
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cryptkit/
H A DCryptKitDER.cpp308 unsigned char *rawBytes = (unsigned char *)fmalloc(numBytes);
309 if(rawBytes == NULL) {
310 feeException::throwMe(FR_Memory, "giantToBigIntStr fmalloc(rawBytes)");
312 unsigned char *outp = rawBytes;
337 twosComplement(rawBytes, numBytes);
341 outp = rawBytes;
358 ffree(rawBytes);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A DCryptKitDER.cpp308 unsigned char *rawBytes = (unsigned char *)fmalloc(numBytes);
309 if(rawBytes == NULL) {
310 feeException::throwMe(FR_Memory, "giantToBigIntStr fmalloc(rawBytes)");
312 unsigned char *outp = rawBytes;
337 twosComplement(rawBytes, numBytes);
341 outp = rawBytes;
358 ffree(rawBytes);

Completed in 413 milliseconds