Searched refs:bytes (Results 1 - 25 of 1605) sorted by relevance

1234567891011>>

/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utils/
H A DcuFileIo.h31 unsigned char **bytes, // mallocd and returned
36 const unsigned char *bytes,
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utils/lib/
H A DcuFileIo.h31 unsigned char **bytes, // mallocd and returned
36 const unsigned char *bytes,
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/sslViewer/
H A DfileIo.h34 unsigned char **bytes, // mallocd and returned
39 const unsigned char *bytes,
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/libDER/libDERUtils/
H A DfileIo.h17 unsigned char **bytes, // mallocd and returned
22 const unsigned char *bytes,
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A DfileIo.h16 unsigned char **bytes, // mallocd and returned
21 const unsigned char *bytes,
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A DfileIo.h16 unsigned char **bytes, // mallocd and returned
21 const unsigned char *bytes,
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/test/
H A Dproc_child.c14 int bytes; local
16 bytes = (int)read(STDIN_FILENO, buf, 256);
17 if (bytes > 0)
18 write(STDOUT_FILENO, buf, (unsigned int)bytes);
/macosx-10.9.5/apr-30/apr/apr/test/
H A Dproc_child.c14 int bytes; local
16 bytes = (int)read(STDIN_FILENO, buf, 256);
17 if (bytes > 0)
18 write(STDOUT_FILENO, buf, (unsigned int)bytes);
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/bind/
H A DByteArrayBinding.java39 byte[] bytes = new byte[len];
41 bytes, 0, bytes.length);
42 return bytes;
49 byte[] bytes = (byte[]) object;
50 entry.setData(bytes, 0, bytes.length);
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dxmalloc.c52 to hold BYTES number of bytes. If the memory cannot be allocated,
55 xmalloc (bytes)
56 size_t bytes;
60 temp = malloc (bytes);
67 xrealloc (pointer, bytes)
69 size_t bytes;
73 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dvm_external.c77 * For example, a map N bytes long can record:
79 * 16 bytes = 128 pages = (@ 4KB/page) 512KB
80 * 1024 bytes = 8192 pages = (@ 4KB/page) 32MB
81 * 4096 bytes = 32768 pages = (@ 4KB/page) 128MB
103 * when existence_size <= 4 bytes (i.e., 32 pages).
127 vm_object_size_t bytes; local
130 bytes = stob(size);
131 if (bytes <= SMALL_SIZE) {
136 } else if (bytes <= LARGE_SIZE) {
137 bytes
154 vm_object_size_t bytes; local
178 vm_object_size_t bytes; local
197 vm_object_size_t bytes; local
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecRandom.c42 int SecRandomCopyBytes(SecRandomRef rnd, size_t count, uint8_t *bytes) { argument
45 return CCRandomCopyBytes(kCCRandomDefault, bytes, count);
52 uint8_t *bytes; local
56 if((bytes = malloc(count)) == NULL) return NULL;
57 if(CCRandomCopyBytes(kCCRandomDefault, bytes, count) == kCCSuccess)
58 retval = CFDataCreate(kCFAllocatorDefault, bytes, count);
59 bzero(bytes, count);
60 free(bytes);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecRandom.c42 int SecRandomCopyBytes(SecRandomRef rnd, size_t count, uint8_t *bytes) { argument
45 return CCRandomCopyBytes(kCCRandomDefault, bytes, count);
52 uint8_t *bytes; local
56 if((bytes = malloc(count)) == NULL) return NULL;
57 if(CCRandomCopyBytes(kCCRandomDefault, bytes, count) == kCCSuccess)
58 retval = CFDataCreate(kCFAllocatorDefault, bytes, count);
59 bzero(bytes, count);
60 free(bytes);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecRandom.c42 int SecRandomCopyBytes(SecRandomRef rnd, size_t count, uint8_t *bytes) { argument
45 return CCRandomCopyBytes(kCCRandomDefault, bytes, count);
52 uint8_t *bytes; local
56 if((bytes = malloc(count)) == NULL) return NULL;
57 if(CCRandomCopyBytes(kCCRandomDefault, bytes, count) == kCCSuccess)
58 retval = CFDataCreate(kCFAllocatorDefault, bytes, count);
59 bzero(bytes, count);
60 free(bytes);
/macosx-10.9.5/dtrace-118.1/DTTk/Bin/
H A Dreadbytes.d3 * readbytes.d - read bytes by process name. DTrace OneLiner.
10 sysinfo:::readch { @bytes[execname] = sum(arg0); }
H A Dwritebytes.d3 * writebytes.d - write bytes by process name. DTrace OneLiner.
10 sysinfo:::writech { @bytes[execname] = sum(arg0); }
/macosx-10.9.5/dtrace-118.1/DTTk/Proc/
H A Dreadbytes.d3 * readbytes.d - read bytes by process name. DTrace OneLiner.
10 sysinfo:::readch { @bytes[execname] = sum(arg0); }
H A Dwritebytes.d3 * writebytes.d - write bytes by process name. DTrace OneLiner.
10 sysinfo:::writech { @bytes[execname] = sum(arg0); }
/macosx-10.9.5/bash-92/bash-3.2/
H A Dxmalloc.c79 to hold BYTES number of bytes. If the memory cannot be allocated,
82 xmalloc (bytes)
83 size_t bytes;
87 temp = malloc (bytes);
93 fatal_error (_("xmalloc: cannot allocate %lu bytes (%lu bytes allocated)"), (unsigned long)bytes, (unsigned long)allocated);
95 fatal_error (_("xmalloc: cannot allocate %lu bytes"), (unsigned long)bytes);
103 xrealloc (pointer, bytes)
[all...]
/macosx-10.9.5/text_cmds-87/sort/
H A Dcalloc.c34 size_t bytes; local
41 bytes = n * s;
42 if (bytes / s != n)
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Di386dynix.c61 struct external_exec *bytes = (struct external_exec *)raw_bytes; local
68 /* Now fill in fields in the execp, from the bytes in the raw data. */
69 execp->a_info = H_GET_32 (abfd, bytes->e_info);
70 execp->a_text = GET_WORD (abfd, bytes->e_text);
71 execp->a_data = GET_WORD (abfd, bytes->e_data);
72 execp->a_bss = GET_WORD (abfd, bytes->e_bss);
73 execp->a_syms = GET_WORD (abfd, bytes->e_syms);
74 execp->a_entry = GET_WORD (abfd, bytes->e_entry);
75 execp->a_trsize = GET_WORD (abfd, bytes->e_trsize);
76 execp->a_drsize = GET_WORD (abfd, bytes
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/malloc/
H A Dxmalloc.c60 to hold BYTES number of bytes. If the memory cannot be allocated,
63 xmalloc (bytes)
64 size_t bytes;
68 temp = malloc (bytes);
75 xrealloc (pointer, bytes)
77 size_t bytes;
81 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
/macosx-10.9.5/CF-855.17/
H A DCFXMLInputStream.c37 const uint8_t *bytes = (uint8_t *)CFDataGetBytePtr(stream->data); local
47 if ((*bytes == 0xFF && *(bytes+1) == 0xFE) ||*(bytes+1) == 0x00) {
53 if (*bytes == 0xFF) {
54 stream->currentByte = bytes + 2;
58 } else if ((*bytes == 0xFE && *(bytes+1) == 0xFF) || *bytes == 0x00) {
64 if (*bytes
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebData.h42 static PassRefPtr<WebData> createWithoutCopying(const unsigned char* bytes, size_t size, FreeDataFunction freeDataFunction, const void* context) argument
44 return adoptRef(new WebData(bytes, size, freeDataFunction, context));
47 static PassRefPtr<WebData> create(const unsigned char* bytes, size_t size) argument
53 memcpy(copiedBytes, bytes, size);
69 const unsigned char* bytes() const { return m_bytes; } function in class:WebKit::WebData
75 WebData(const unsigned char* bytes, size_t size, FreeDataFunction freeDataFunction, const void* context) argument
76 : m_bytes(bytes)
83 static void fastFreeBytes(unsigned char* bytes, const void*) argument
85 if (bytes)
86 fastFree(static_cast<void*>(bytes));
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/util/
H A DUtfOps.java26 * @param bytes the data containing the UTF string.
32 * @return the number of bytes.
34 public static int getZeroTerminatedByteLength(byte[] bytes, int offset) argument
38 while (bytes[offset++] != 0) {
89 * @param bytes the UTF string.
99 public static int getCharLength(byte[] bytes) argument
102 return getCharLength(bytes, 0, bytes.length);
108 * @param bytes the data containing the UTF string.
120 public static int getCharLength(byte[] bytes, in argument
167 bytesToChars(byte[] bytes, int byteOffset, char[] chars, int charOffset, int len, boolean isByteLen) argument
218 charsToBytes(char[] chars, int charOffset, byte[] bytes, int byteOffset, int charLength) argument
255 bytesToString(byte[] bytes, int offset, int length) argument
[all...]

Completed in 175 milliseconds

1234567891011>>