Searched refs:bytes (Results 251 - 275 of 1605) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclUtf.c103 * Find the number of bytes in the Utf character "ch".
106 * The return values is the number of bytes in the Utf character "ch".
146 * Store the given Tcl_UniChar as a sequence of UTF-8 bytes in the
150 * The return values is the number of bytes in the buffer that were
166 * (at most TCL_UTF_MAX bytes). */
250 * UTF-8 string length in bytes will be <= Unicode string length *
281 * looking for trail bytes. If the source buffer is known to be '\0'
284 * enough bytes remain in the string.
288 * number of bytes from the UTF-8 string that were consumed.
312 * Also treats \0 and naked trail bytes
826 int bytes; local
879 int bytes; local
933 int bytes; local
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclUtf.c104 * Find the number of bytes in the Utf character "ch".
107 * The return values is the number of bytes in the Utf character "ch".
147 * Store the given Tcl_UniChar as a sequence of UTF-8 bytes in the
151 * The return values is the number of bytes in the buffer that
167 * (at most TCL_UTF_MAX bytes). */
252 * UTF-8 string length in bytes will be <= Unicode string length *
283 * memory looking for trail bytes. If the source buffer is known to
286 * ensure that enough bytes remain in the string.
290 * number of bytes from the UTF-8 string that were consumed.
314 * Also treats \0 and naked trail bytes
828 int bytes; local
881 int bytes; local
935 int bytes; local
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/src/powerpc/
H A Dffi_darwin.c87 const unsigned bytes = ecif->cif->bytes; local
91 unsigned *const stacktop = stack + (bytes / sizeof(unsigned));
113 FFI_ASSERT((bytes & 0xF) == 0);
191 /* Structures that match the basic modes (QI 1 byte, HI 2 bytes,
192 SI 4 bytes) are aligned as if they were those modes.
233 unsigned bytes; local
238 /* All the machine-independent calculation of cif->bytes will be wrong.
244 bytes = (6 + ASM_NEEDS_REGISTERS) * sizeof(long);
248 - Structures of size <= 4 bytes als
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/sasl/
H A Dntlm.tcl334 binary scan $key @${n}c7 bytes
336 lappend b [expr { [lindex $bytes 0] & 0xFF}]
337 lappend b [expr {(([lindex $bytes 0] & 0x01) << 7) | (([lindex $bytes 1] >> 1) & 0x7F)}]
338 lappend b [expr {(([lindex $bytes 1] & 0x03) << 6) | (([lindex $bytes 2] >> 2) & 0x3F)}]
339 lappend b [expr {(([lindex $bytes 2] & 0x07) << 5) | (([lindex $bytes 3] >> 3) & 0x1F)}]
340 lappend b [expr {(([lindex $bytes 3] & 0x0F) << 4) | (([lindex $bytes
[all...]
/macosx-10.9.5/CommonCrypto-60049/test/CommonCrypto/
H A DCommonRSA.c45 ok((retval = CCRSACryptorEncrypt(publicKey, padding, keydata->bytes, keydata->len,
46 encryptedKey->bytes, &encryptedKey->len,
50 ok((retval = CCRSACryptorDecrypt(privateKey, padding, encryptedKey->bytes, encryptedKey->len,
51 decryptedKey->bytes, &decryptedKey->len,
72 hash->bytes, CCDigestGetOutputSize(digest),
74 signature->bytes, &signature->len);
80 hash->bytes, CCDigestGetOutputSize(digest),
82 signature->bytes, signature->len);
104 retval = CCRSACryptorExport(publicKey, tmp->bytes, &tmp->len);
108 retval = CCRSACryptorImport(tmp->bytes, tm
[all...]
H A DCommonCryptoSymmetricWrap.c37 ok(CCSymmetricKeyWrap(kCCWRAPAES, iv , ivLen, kek->bytes, kek->len, key->bytes, key->len, wrapped, &wrapped_size) == 0, "function is successful");
50 ok(CCSymmetricKeyUnwrap(kCCWRAPAES, iv, ivLen, kek->bytes, kek->len, wrapped, wrapped_size, unwrapped, &unwrapped_size) == 0, "function is successful");
89 for(int i=0; i<2048; i++) keybuf->bytes[i] = i%256;
H A DCommonCryptorWithData.c33 kCCOptionECBMode, key->bytes, key->len, NULL,
H A DCommonEC.c45 retval = CCECCryptorWrapKey(publicKey, keydata->bytes, keydata->len, encryptedKey, &encryptedKeyLen, kCCDigestSHA1);
66 hash->bytes, hash->len,
75 hash->bytes, hash->len,
86 hash->bytes, hash->len,
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextCodecLatin1.cpp121 String TextCodecLatin1::decode(const char* bytes, size_t length, bool, bool, bool&) argument
128 const uint8_t* source = reinterpret_cast<const uint8_t*>(bytes);
129 const uint8_t* end = reinterpret_cast<const uint8_t*>(bytes + length);
218 char* bytes = result.data(); local
235 bytes = result.data();
236 memcpy(bytes + resultLength, replacement, replacementLength);
241 bytes[resultLength++] = b;
244 return CString(bytes, resultLength);
250 char* bytes; local
251 CString string = CString::newUninitialized(length, bytes);
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/db/
H A Ddb_ovfl_vrfy.c306 u_int32_t bytesgot, bytes; local
312 bytesgot = bytes = 0;
363 bytes = OV_LEN(h);
365 if (bytes + P_OVERHEAD(dbp) > dbp->pgsize)
366 bytes = dbp->pgsize - P_OVERHEAD(dbp);
373 bytesgot + bytes, buf)) != 0)
377 bytesgot += bytes;
379 memcpy(dest, src, bytes);
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/internal/
H A DDbMpoolFile.java49 public void set_maxsize(long bytes) throws com.sleepycat.db.DatabaseException { db_javaJNI.DbMpoolFile_set_maxsize(swigCPtr, this, bytes); } argument
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dbytestream.h7 // Abstract interface that consumes a sequence of bytes (ByteSink).
35 * \brief C++ API: Interface for writing bytes, and implementation classes.
45 * A ByteSink can be filled with bytes.
62 * Append "bytes[0,n-1]" to this.
63 * @param bytes the pointer to the bytes
64 * @param n the number of bytes; must be non-negative
67 virtual void Append(const char* bytes, int32_t n) = 0;
77 * After writing at most *result_capacity bytes, call Append() with the
78 * pointer returned from this function and the number of bytes writte
[all...]
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFWRingBufferQ.h55 virtual IOByteCount readBytes(IOByteCount offset, void * bytes, IOByteCount withLength);
56 virtual bool enqueueBytes( void * bytes, IOByteCount size );
/macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/
H A DIOHIDValue.h87 @param bytes Pointer to a buffer of uint8_t to be copied to this object.
88 @param length Number of bytes in the passed buffer.
92 IOHIDValueRef IOHIDValueCreateWithBytes(CFAllocatorRef allocator, IOHIDElementRef element, uint64_t timeStamp, const uint8_t * bytes, CFIndex length)
105 @param bytes Pointer to a buffer of uint8_t to be referenced by this object.
106 @param length Number of bytes in the passed buffer.
110 IOHIDValueRef IOHIDValueCreateWithBytesNoCopy(CFAllocatorRef allocator, IOHIDElementRef element, uint64_t timeStamp, const uint8_t * bytes, CFIndex length)
136 @abstract Returns the size, in bytes, of the value contained in this IOHIDValueRef.
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DCopiedSpace.cpp67 CheckedBoolean CopiedSpace::tryAllocateSlowCase(size_t bytes, void** outPtr) argument
69 if (isOversize(bytes))
70 return tryAllocateOversize(bytes, outPtr);
77 *outPtr = m_allocator.forceAllocate(bytes);
81 CheckedBoolean CopiedSpace::tryAllocateOversize(size_t bytes, void** outPtr) argument
83 ASSERT(isOversize(bytes));
85 CopiedBlock* block = CopiedBlock::create(m_heap->blockAllocator().allocateCustomSize(sizeof(CopiedBlock) + bytes, CopiedBlock::blockSize));
92 *outPtr = allocator.forceAllocate(bytes);
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A DSecOTR.h49 SecOTRFullIdentityRef SecOTRFullIdentityCreateFromBytes(CFAllocatorRef allocator, const uint8_t**bytes, size_t *size, CFErrorRef *error);
68 SecOTRPublicIdentityRef SecOTRPublicIdentityCreateFromBytes(CFAllocatorRef allocator, const uint8_t**bytes, size_t * size, CFErrorRef *error);
/macosx-10.9.5/WebCore-7537.78.1/icu/unicode/
H A Dbytestream.h7 // Abstract interface that consumes a sequence of bytes (ByteSink).
35 * \brief C++ API: Interface for writing bytes, and implementation classes.
45 * A ByteSink can be filled with bytes.
62 * Append "bytes[0,n-1]" to this.
63 * @param bytes the pointer to the bytes
64 * @param n the number of bytes; must be non-negative
67 virtual void Append(const char* bytes, int32_t n) = 0;
77 * After writing at most *result_capacity bytes, call Append() with the
78 * pointer returned from this function and the number of bytes writte
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DWorkerPlatformFileWriterClient.h44 virtual void notifyWrite(long long bytes, bool complete);
65 static void notifyWriteOnWorkerThread(ScriptExecutionContext*, WorkerPlatformFileWriterClient* platformClient, long long bytes, bool complete);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebKeyGenerator.mm58 return toWebCertificateParseResult(WKAddCertificatesToKeychainFromData([data bytes], [data length]));
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DEncoderAdapter.cpp48 void EncoderAdapter::encodeBytes(const uint8_t* bytes, size_t size) argument
50 *m_encoder << CoreIPC::DataReference(bytes, size);
/macosx-10.9.5/file_cmds-230/dd/
H A Dmisc.c85 "%qu bytes transferred in %.6f secs (%.0f bytes/sec)\n",
86 st.bytes, secs, st.bytes / secs);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Modules/
H A D_CoreFoundation_CFBitVector.m30 void* bytes;
40 r = PyObjC_PythonToCArray(NO, NO, "z", py_bytes, &bytes, &byteCount, &buf);
49 vector = CFBitVectorCreate(allocator, bytes, count);
51 PyObjC_FreeCArray(r, bytes);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A Dregistry.m83 PyObject* bytes = PyUnicode_AsEncodedString(nm, NULL, NULL);
84 if (bytes == NULL) {
87 cur_class = objc_lookUpClass(PyBytes_AsString(bytes));
88 Py_DECREF(bytes);
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_strip.c41 uint32 bytes = summand1 + summand2; local
43 if (bytes - summand1 != summand2) {
45 bytes = 0;
48 return (bytes);
54 uint32 bytes = nmemb * elem_size; local
56 if (elem_size && bytes / elem_size != nmemb) {
58 bytes = 0;
61 return (bytes);
104 * Compute the # bytes in a variable height, row-aligned strip.
155 * Compute the # bytes i
[all...]
H A Dtif_tile.c41 uint32 bytes = summand1 + summand2; local
43 if (bytes - summand1 != summand2) {
45 bytes = 0;
48 return (bytes);
54 uint32 bytes = nmemb * elem_size; local
56 if (elem_size && bytes / elem_size != nmemb) {
58 bytes = 0;
61 return (bytes);
171 * Compute the # bytes in each row of a tile.
190 * Compute the # bytes i
[all...]

Completed in 227 milliseconds

<<11121314151617181920>>