Searched refs:bytes (Results 176 - 200 of 1564) sorted by relevance

1234567891011>>

/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dbytestriebuilder.cpp29 * Note: This builder implementation stores (bytes, value) pairs with full copies
81 // If the stringOffset is negative, then the first two strings bytes contain
83 // (Compared with a stringLength field here, this saves 3 bytes per string for most strings.)
96 // Too long: We store the length in 1 or 2 bytes.
129 bytes(NULL), bytesCapacity(0), bytesLength(0) {
142 uprv_free(bytes);
195 newTrie=new BytesTrie(bytes, bytes+(bytesCapacity-bytesLength));
199 bytes=NULL; // The new trie now owns the array.
211 result.set(bytes
338 BTLinearMatchNode(const char *bytes, int32_t len, Node *nextNode) argument
[all...]
H A Dbytestream.cpp42 void CheckedArrayByteSink::Append(const char* bytes, int32_t n) { argument
52 if (n > 0 && bytes != (outbuf_ + size_)) {
53 uprv_memcpy(outbuf_ + size_, bytes, n);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Modules/
H A D_Foundation_data.m3 * -bytes
15 const void* bytes;
29 bytes = objc_msgSendSuper(&super,
37 bytes = NULL;
41 if (bytes == NULL && PyErr_Occurred()) return NULL;
43 result = PyBuffer_FromMemory((void*)bytes, bytes_len);
124 void* bytes;
138 bytes = objc_msgSendSuper(&super,
145 bytes = NULL;
149 if (bytes
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DPersistKeyBinding.java66 * Binds bytes to an object for use by PersistComparator as well as
69 Object bytesToObject(byte[] bytes, int offset, int length) { argument
70 return readKey(keyFormat, catalog, bytes, offset, length, rawAccess);
74 * Binds bytes to an object for use by PersistComparator as well as
79 byte[] bytes,
84 (catalog, rawAccess, null, 0, bytes, offset, length);
77 readKey(Format keyFormat, Catalog catalog, byte[] bytes, int offset, int length, boolean rawAccess) argument
/macosx-10.10.1/CommonCrypto-60061/lib/
H A DCommonRandomPriv.h29 uint8_t *bytes; member in struct:devrandom_t
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dtestutil.h30 static UnicodeString hex(const uint8_t* bytes, int32_t len);
H A Dtestutil.cpp54 UnicodeString TestUtility::hex(const uint8_t* bytes, int32_t len) { argument
57 buf.append(HEX[0x0F & (bytes[i] >> 4)]);
58 buf.append(HEX[0x0F & bytes[i]]);
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DGCActivityCallback.cpp119 void GCActivityCallback::didAllocate(size_t bytes) argument
128 // The first byte allocated in an allocation cycle will report 0 bytes to didAllocate.
130 if (!bytes)
131 bytes = 1;
132 double bytesExpectedToReclaim = static_cast<double>(bytes) * deathRate();
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DTCSystemAlloc.h41 // Allocate and return "N" bytes of zeroed memory.
44 // requested size. If actual bytes is non-NULL then the allocator
45 // may optionally return more bytes than asked for (i.e. return an
51 extern void* TCMalloc_SystemAlloc(size_t bytes, size_t *actual_bytes,
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/X86/
H A DX86MachineFunctionInfo.h33 /// stack frame in bytes.
36 /// BytesToPopOnReturn - Number of bytes function pops on return (in addition
44 /// TailCallReturnAddrDelta - The number of bytes by which return address
66 /// ArgumentStackSize - The number of bytes on stack consumed by the arguments
106 void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; } argument
109 void setBytesToPopOnReturn (unsigned bytes) { BytesToPopOnReturn = bytes;} argument
/macosx-10.10.1/ntp-92/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
53 isc_uint32_t bytes[2]; member in struct:__anon11250
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest3_typecheck.py16 self.assertIsInstance(m.selector, bytes)
17 self.assertIsInstance(m.signature, bytes)
20 self.assertIsInstance(meta['retval']['type'], bytes)
22 self.assertIsInstance(a['type'], bytes)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest3_typecheck.py16 self.assertIsInstance(m.selector, bytes)
17 self.assertIsInstance(m.signature, bytes)
20 self.assertIsInstance(meta['retval']['type'], bytes)
22 self.assertIsInstance(a['type'], bytes)
/macosx-10.10.1/BerkeleyDB-21/db/os_windows/
H A Dos_truncate.c52 u_int32_t mbytes, bytes; local
56 __os_ioinfo(env, NULL, fhp, &mbytes, &bytes, NULL)) != 0)
58 stat_offset = (off_t)mbytes * MEGABYTE + bytes;
/macosx-10.10.1/IOKitUser-1050.1.21/kext.subproj/
H A Dmisc_util.c60 const uint8_t * bytes = NULL; // do not free local
73 bytes = CFDataGetBytePtr(aData);;
76 (unsigned)(bytes[i]),
81 CFSTR("...(%u bytes total)"), (unsigned)count);
/macosx-10.10.1/OpenSSL098-52/src/crypto/rand/
H A Drand.h84 int (*bytes)(unsigned char *buf, int num); member in struct:rand_meth_st
110 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes);
112 int RAND_egd_bytes(const char *path,int bytes);
/macosx-10.10.1/OpenSSL098-52/src/include/openssl/
H A Drand.h84 int (*bytes)(unsigned char *buf, int num); member in struct:rand_meth_st
110 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes);
112 int RAND_egd_bytes(const char *path,int bytes);
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsmethodsignature.py24 self.assertIsInstance(v, bytes)
27 self.assertIsInstance(v, bytes)
30 self.assertIsInstance(v, bytes)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nsmethodsignature.py24 self.assertIsInstance(v, bytes)
27 self.assertIsInstance(v, bytes)
30 self.assertIsInstance(v, bytes)
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Dfifo.tcl104 method write {c bytes} {
105 append write $bytes
106 set n [string length $bytes]
/macosx-10.10.1/xnu-2782.1.97/osfmk/x86_64/
H A Dloose_ends.c97 extern void bcopy_no_overwrite(const char *from, char *to,vm_size_t bytes);
168 uint32_t bytes)
170 bzero_phys(src64,bytes);
176 uint32_t bytes)
178 bzero(PHYSMAP_PTOV(src64), bytes); local
190 vm_size_t bytes)
193 if (((((uint32_t)src64 & (NBPG-1)) + bytes) > NBPG) ||
194 ((((uint32_t)dst64 & (NBPG-1)) + bytes) > NBPG) ) {
197 bcopy(PHYSMAP_PTOV(src64), PHYSMAP_PTOV(dst64), bytes); local
207 vm_size_t bytes,
166 bzero_phys_nc( addr64_t src64, uint32_t bytes) argument
174 bzero_phys( addr64_t src64, uint32_t bytes) argument
187 bcopy_phys( addr64_t src64, addr64_t dst64, vm_size_t bytes) argument
205 apply_func_phys( addr64_t dst64, vm_size_t bytes, int (*func)(void * buffer, vm_size_t bytes, void * arg), void * arg) argument
225 ovbcopy( const char *from, char *to, vm_size_t bytes) argument
[all...]
/macosx-10.10.1/Libc-1044.1.2/locale/FreeBSD/
H A Dgb2312.c49 u_char bytes[2]; member in struct:__anon2782
105 if (gs->count < 0 || gs->count > sizeof(gs->bytes)) {
116 ncopy = MIN(MIN(n, GB2312_MB_CUR_MAX), sizeof(gs->bytes) - gs->count);
117 memcpy(gs->bytes + gs->count, s, ncopy);
120 s = (char *)gs->bytes;
/macosx-10.10.1/apache-793/httpd/modules/http/
H A Dchunk_filter.c57 apr_off_t bytes = 0; local
107 bytes += len;
120 bytes += e->length;
125 * XXX: if there aren't very many bytes at this point it may
129 /* if there are content bytes, then wrap them in a chunk */
130 if (bytes > 0) {
133 * Insert the chunk header, specifying the number of bytes in
137 "%" APR_UINT64_T_HEX_FMT CRLF, (apr_uint64_t)bytes);
/macosx-10.10.1/emacs-93/emacs/src/
H A Dcharset.c129 #define SPLIT_MULTIBYTE_SEQ(str, length, bytes, charset, c1, c2) \
132 (bytes) = BYTES_BY_CHAR_HEAD (c1); \
133 if ((bytes) == 1) \
135 else if ((bytes) == 2) \
142 else if ((bytes) == 3) \
296 int c, bytes, charset, c1, c2;
298 SPLIT_MULTIBYTE_SEQ (str, len, bytes, charset, c1, c2);
301 *actual_len = bytes;
312 int bytes;
314 PARSE_MULTIBYTE_SEQ (str, len, bytes);
295 int c, bytes, charset, c1, c2; local
311 int bytes; local
329 register int bytes, cs, code1, code2 = -1; local
491 int bytes; local
843 int bytes, charset, c1, c2; local
1293 int bytes, thiswidth; local
1360 int chars, bytes, thiswidth; local
1479 int chars, bytes; local
1504 int n, chars = 0, bytes = 0; local
1578 int bytes; local
[all...]
/macosx-10.10.1/msdosfs-209.1.1/
H A Dmsdosfs.py32 "Create the raw bytes for a directory entry"
40 def parse_dirent(bytes):
42 Parse the raw bytes of a directory entry, returning a dictionary of
45 assert len(bytes) == 32
46 fields = struct.unpack("<3B7HI", bytes[11:])
47 return dict(name = bytes[0:11],
284 raise RuntimeError("Invalid bytes per sector")
337 def WriteCluster(self, cluster, bytes):
340 assert (len(bytes) % self.bytesPerSector) == 0
343 return self.dev.write(bytes)
[all...]

Completed in 179 milliseconds

1234567891011>>