Searched refs:bytes (Results 226 - 250 of 1605) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Darcshimmer.c50 obj->bytes = ckalloc (obj->length + 1);
52 memcpy (obj->bytes, a->base.name->bytes, obj->length + 1);
H A Dnodeshimmer.c50 obj->bytes = ckalloc (obj->length + 1);
52 memcpy (obj->bytes, n->base.name->bytes, obj->length + 1);
/macosx-10.9.5/webdavfs-352.92.2/mount.tproj/
H A Dwebdav_utils.c33 * date/time bytes and returns time_t. If the parse fails, this function
37 const UInt8 *bytes, /* -> pointer to bytes to parse */
38 CFIndex length) /* -> number of bytes to parse */
46 finish = _CFGregorianDateCreateWithBytes(kCFAllocatorDefault, bytes, length, &gdate, NULL);
47 require_action(finish != bytes, _CFGregorianDateCreateWithBytes, clock = -1);
36 DateBytesToTime( const UInt8 *bytes, CFIndex length) argument
/macosx-10.9.5/CF-855.17/
H A DCFBundle.c1962 static CFMutableDictionaryRef _CFBundleCreateInfoDictFromData(const char *bytes, uint32_t length) { argument
1965 if (bytes && 0 < length) {
1966 infoData = CFDataCreateWithBytesNoCopy(kCFAllocatorSystemDefault, (uint8_t *)bytes, length, kCFAllocatorNull);
2010 char *bytes = NULL; local
2012 if (getsegbyname(TEXT_SEGMENT)) bytes = _CFBundleGetSectData(TEXT_SEGMENT, PLIST_SECTION, &length);
2013 return _CFBundleCreateInfoDictFromData(bytes, length);
2019 char *bytes = NULL; local
2022 if (getsegbyname(OBJC_SEGMENT_64)) bytes = _CFBundleGetSectData(OBJC_SEGMENT_64, IMAGE_INFO_SECTION_64, &length);
2024 if (getsegbyname(OBJC_SEGMENT)) bytes = _CFBundleGetSectData(OBJC_SEGMENT, IMAGE_INFO_SECTION, &length);
2026 if (bytes
2036 _CFBundleGrokX11FromFile(int fd, const void *bytes, CFIndex length, uint32_t offset, Boolean swapped, Boolean sixtyFour) argument
2086 _CFBundleCreateInfoDictFromFile(int fd, const void *bytes, CFIndex length, uint32_t offset, Boolean swapped, Boolean sixtyFour) argument
2158 _CFBundleGrokObjcImageInfoFromFile(int fd, const void *bytes, CFIndex length, uint32_t offset, Boolean swapped, Boolean sixtyFour, Boolean *hasObjc, uint32_t *objcVersion, uint32_t *objcFlags) argument
2237 _CFBundleGrokMachTypeForFatFile(int fd, const void *bytes, CFIndex length, Boolean swap, Boolean *isX11, CFArrayRef *architectures, CFDictionaryRef *infodict, Boolean *hasObjc, uint32_t *objcVersion, uint32_t *objcFlags) argument
2311 _CFBundleGrokMachType(int fd, const void *bytes, CFIndex length, Boolean *isX11, CFArrayRef *architectures, CFDictionaryRef *infodict, Boolean *hasObjc, uint32_t *objcVersion, uint32_t *objcFlags) argument
2363 _CFBundleGrokFileTypeForZipMimeType(const unsigned char *bytes, CFIndex length, const char **ext) argument
2407 _CFBundleGrokFileTypeForZipFile(int fd, const unsigned char *bytes, CFIndex length, off_t fileLength) argument
2503 _CFBundleCheckOLEName(const char *name, const char *bytes, unsigned length) argument
2510 _CFBundleGrokFileTypeForOLEFile(int fd, const void *bytes, CFIndex length, off_t offset) argument
2539 const unsigned char *bytes = NULL; local
3733 void *bytes = NULL; local
[all...]
/macosx-10.9.5/CPANInternal-140/JSON-Any/t/
H A D02-JSON-XS.t24 foreach my $bytes ( 0, 1 ) {
27 utf8::encode($str) if $bytes;
/macosx-10.9.5/CommonCrypto-60049/test/CommonCrypto/
H A DCommonCryptoSymOffset.c63 retval = CCCrypt(kCCEncrypt, kCCAlgorithmAES128, 0, key->bytes, key->len, NULL, iLikeBigBuffs+i, ILIKEEMDISBIG-16, andICannotLie+i, ILIKEEMDISBIG, &moved);
65 retval = CCCrypt(kCCDecrypt, kCCAlgorithmAES128, 0, key->bytes, key->len, NULL, andICannotLie+i, moved, iLikeEmRoundandBig+i, ILIKEEMDISBIG, &moved);
/macosx-10.9.5/ICU-511.35/icuSources/tools/
H A Dicu-svnprops-check.py168 bytes = f.read()
171 if all(ord(byte) < 128 for byte in bytes):
177 bytes.decode("UTF-8")
182 if ord(bytes[0]) != 0xef:
/macosx-10.9.5/ICU-511.35/icuSources/tools/makeconv/
H A Dmakeconv.h49 const uint8_t *bytes, int32_t length);
/macosx-10.9.5/IOGraphics-471.92.1/tools/
H A Di2cexample.c15 SInt32 EDIDSum( const UInt8 * bytes, IOByteCount len ) argument
24 sum += bytes[j+i];
31 void EDIDDump( const UInt8 * bytes, IOByteCount len ) argument
40 fprintf(stderr, "0x%02x,", bytes[i]);
70 fprintf(stderr, "/* Read result 0x%x, 0x%lx bytes */\n", request.result, request.replyBytes);
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DMarkedAllocator.h78 inline void* MarkedAllocator::allocate(size_t bytes) argument
82 void* result = allocateSlowCase(bytes);
84 memset(result, 0xCD, bytes);
91 memset(head, 0xCD, bytes);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DGCActivityCallback.cpp149 void DefaultGCActivityCallback::didAllocate(size_t bytes) argument
158 // The first byte allocated in an allocation cycle will report 0 bytes to didAllocate.
160 if (!bytes)
161 bytes = 1;
163 double gcTimeSlice = std::min((static_cast<double>(bytes) / MB) * gcTimeSlicePerMB, maxGCTimeSlice);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/include/
H A Dlutil_sha1.h23 #include <ac/bytes.h>
/macosx-10.9.5/OpenSSH-186/osslshim/ossl/
H A Dossl-rand-arc4.c82 .bytes = arc4_bytes,
H A Dossl-rand-cc.c124 .bytes = cc_bytes,
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A DFEECSPUtils.h86 unsigned char *bytes, // must be alloc'd by caller
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DFileWriterSync.h61 void didWrite(long long bytes, bool complete);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DDIBPixelData.cpp108 RGBQUAD* bytes = reinterpret_cast<RGBQUAD*>(pixelData.buffer());
109 bytes += drawRect.y() * pixelDataWidth;
115 RGBQUAD* p = bytes + x;
120 bytes += pixelDataWidth;
/macosx-10.9.5/apache-786.1/httpd/modules/filters/
H A Dmod_substitute.c108 apr_size_t bytes; local
150 if (apr_bucket_read(b, &buff, &bytes, APR_BLOCK_READ)
154 while ((repl = apr_strmatch(script->pattern, buff, bytes)))
189 bytes -= len;
197 s2 = apr_pstrmemdup(tmp_pool, buff, bytes);
216 if (!scratch || (bytes + 1 > fbytes)) {
217 fbytes = bytes + 1;
222 memcpy(p, buff, bytes);
223 p[bytes] = '\0';
272 apr_size_t bytes; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/include/isc/
H A Dmd5.h32 * To compute the message digest of a chunk of bytes, declare an
34 * needed on buffers full of bytes, and then call MD5Final, which
62 isc_uint32_t bytes[2]; member in struct:__anon6609
/macosx-10.9.5/cups-372.4/cups/backend/
H A Dsocket.c91 ssize_t bytes = 0, /* Initial bytes read */ local
92 tbytes; /* Total number of bytes written */
315 else if ((bytes = read(0, buffer, sizeof(buffer))) <= 0)
417 if (bytes > 0)
418 tbytes += write(device_fd, buffer, bytes);
482 static int /* O - # bytes read or -1 on error */
488 ssize_t bytes; /* Number of back-channel bytes read */ local
508 if ((bytes
[all...]
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dsidechannel.c70 * update the value to contain the number of data bytes in the buffer.
79 int *datalen, /* IO - Size of data buffer on entry, number of bytes in buffer on return */
109 * update the value to contain the number of data bytes in the buffer.
119 int *datalen, /* IO - Size of data buffer on entry, number of bytes in buffer on return */
123 int bytes; /* Bytes read */ local
198 while ((bytes = read(CUPS_SC_FD, buffer, _CUPS_SC_MAX_BUFFER)) < 0)
212 * Watch for EOF or too few bytes...
215 if (bytes < 4)
217 DEBUG_printf(("1cupsSideChannelRead: Short read of %d bytes", bytes));
548 int bytes; /* Bytes written */ local
[all...]
/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dtool_sdecls.h56 * 'bytes' member represents amount written so far.
73 curl_off_t bytes; member in struct:OutStruct
/macosx-10.9.5/libutil-34/
H A Dhumanize_number.c53 humanize_number(char *buf, size_t len, int64_t bytes, argument
59 // We multiply bytes by 100 to deal with rounding, so we need something
63 __int128_t scalable = (__int128_t)bytes;
65 long double scalable = (long double)bytes;
104 if (bytes < 0) {
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfdata.py20 bytes = buffer("hello world")
23 data = CFDataCreateWithBytesNoCopy(None, bytes, 5, kCFAllocatorNull)
59 bytes = CFDataGetBytes(data, (1,3), None)
60 self.assertEquals(bytes, 'hello'[1:4])
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/
H A Dtkphoto.tcl46 proc ffidl-photo-get-block-bytes {block} {
48 set bytes [binary format x$nbytes]
49 ffidl::memcpy bytes [ffidl-photo-block.pixelPtr $block] $nbytes
50 set bytes

Completed in 2319 milliseconds

1234567891011>>