Searched refs:bytes (Results 126 - 150 of 1605) sorted by relevance

1234567891011>>

/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSStringAdditions.h8 - (id) initWithBytes:(const void *) bytes encoding:(NSStringEncoding) encoding;
9 + (id) stringWithBytes:(const void *) bytes encoding:(NSStringEncoding) encoding;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonData.h72 * @method bytes
75 -(const void *)bytes;
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclGet.c51 obj.bytes = (char *) src;
97 obj.bytes = (char *) src;
141 obj.bytes = (char *) src;
185 obj.bytes = (char *) src;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Dfifo2.tcl92 method froma {c bytes} {
93 $hb put $bytes
97 method fromb {c bytes} {
98 $ha put $bytes
/macosx-10.9.5/xnu-2422.115.4/bsd/i386/
H A Dparam.h85 #define NBPG 4096 /* bytes/page */
121 /* Core clicks (NeXT_page_size bytes) to segments and vice versa */
125 /* Core clicks (4096 bytes) to disk blocks */
130 /* clicks to bytes */
133 /* bytes to clicks */
137 #define btodb(bytes, devBlockSize) \
138 ((unsigned)(bytes) / devBlockSize)
142 #define btodb(bytes) /* calculates (bytes / DEV_BSIZE) */ \
143 ((unsigned)(bytes) >> DEV_BSHIF
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dbuffer.c160 /* Returns the number of bytes of data in the buffer. */
174 error("buffer_get_ret: trying to get more bytes %d than in buffer %d",
190 /* Consumes the given number of bytes from the beginning of the buffer. */
193 buffer_consume_ret(Buffer *buffer, u_int bytes) argument
195 if (bytes > buffer->end - buffer->offset) {
196 error("buffer_consume_ret: trying to get more bytes than in buffer");
199 buffer->offset += bytes;
204 buffer_consume(Buffer *buffer, u_int bytes) argument
206 if (buffer_consume_ret(buffer, bytes) == -1)
210 /* Consumes the given number of bytes fro
213 buffer_consume_end_ret(Buffer *buffer, u_int bytes) argument
222 buffer_consume_end(Buffer *buffer, u_int bytes) argument
[all...]
H A Dprogressmeter.c73 static int bytes_per_second; /* current speed in bytes per second */
87 format_rate(char *buf, int size, off_t bytes) argument
91 bytes *= 100;
92 for (i = 0; bytes >= 100*1000 && unit[i] != 'T'; i++)
93 bytes = (bytes + 512) / 1024;
96 bytes = (bytes + 512) / 1024;
99 (long long) (bytes + 5) / 100,
100 (long long) (bytes
106 format_size(char *buf, int size, off_t bytes) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DNSDESCryptor.m41 feeDESSetState(_priv, [state bytes], [state length]);
48 _priv = feeDESNewWithState([state bytes], [state length]);
51 frtn = feeDESSetState(_priv, [state bytes], [state length]);
90 [input bytes],
113 [input bytes],
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DNSDESCryptor.m41 feeDESSetState(_priv, [state bytes], [state length]);
48 _priv = feeDESNewWithState([state bytes], [state length]);
51 frtn = feeDESSetState(_priv, [state bytes], [state length]);
90 [input bytes],
113 [input bytes],
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/examples/
H A Dxmlwc7 set bytes 0
13 global bytes chars words lines
15 incr bytes [string bytelength $data]
29 --bytes {
50 puts stderr "$argv0 \[-clw\] \[--bytes\] \[--chars\] \[--words\] \[--lines\] \[--help\] \[--version\] \[file...\]"
51 puts stderr "Counts number of bytes, characters, words and lines in an XML document"
84 puts [format $format $lines $words $chars $bytes $input]
/macosx-10.9.5/CF-855.17/
H A DCFStringEncodingConverter.h77 If maxByteLen is 0, bytes is ignored. You can pass lossyByte by passing the value in flags argument.
80 CF_EXPORT uint32_t CFStringEncodingUnicodeToBytes(uint32_t encoding, uint32_t flags, const UniChar *characters, CFIndex numChars, CFIndex *usedCharLen, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen);
82 /* Converts bytes in the specified encoding into unicode. Returns the constants defined above.
86 CF_EXPORT uint32_t CFStringEncodingBytesToUnicode(uint32_t encoding, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, CFIndex *usedByteLen, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen);
90 typedef CFIndex (*CFStringEncodingToBytesFallbackProc)(const UniChar *characters, CFIndex numChars, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen);
91 typedef CFIndex (*CFStringEncodingToUnicodeFallbackProc)(const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen);
101 CF_EXPORT CFIndex CFStringEncodingCharLengthForBytes(uint32_t encoding, uint32_t flags, const uint8_t *bytes, CFIndex numBytes);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/qt/
H A DArgumentCodersQt.cpp52 QByteArray bytes = dragData.platformData()->data(formats[i]); local
54 vdata.append((uint8_t*)(bytes.data()), bytes.size());
89 QByteArray bytes((char*)it->value.data(), it->value.size());
90 mimeData->setData(it->key, bytes);
/macosx-10.9.5/apache-786.1/httpd/modules/http/
H A Dchunk_filter.c58 apr_off_t bytes = 0; local
108 bytes += len;
121 bytes += e->length;
126 * XXX: if there aren't very many bytes at this point it may
130 /* if there are content bytes, then wrap them in a chunk */
131 if (bytes > 0) {
134 * Insert the chunk header, specifying the number of bytes in
138 "%" APR_UINT64_T_HEX_FMT CRLF, (apr_uint64_t)bytes);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsdata.py97 # Test -bytes
99 bytesValue = data.bytes()
100 self.assertEqual(len(bytesValue), len(rawBytes), "bytes() and rawBytes not equal length.")
150 bytes = data.bytes()
152 self.assertEqual(len(bytes), data.length())
154 self.assertEqual(bytes, mutableBytes)
156 mutableBytes[0:len(mutableBytes)] = bytes[0:len(bytes)]
178 def dataWithBytes_length_(self, bytes, lengt
189 def bytes(self): member in class:MyData2
199 def bytes(self): member in class:MyData3
211 def bytes(self): member in class:MyData4
221 def bytes(self): member in class:MyData5
[all...]
/macosx-10.9.5/tcsh-65/tcsh/win32/
H A Dglobals.c82 SIZE_T bytes,rc; local
94 rc =WriteProcessMemory(hproc,low,low, (DWORD)size, &bytes);
100 if (size != bytes) {
101 //dprintf("size %d , wrote %d\n",size,bytes);
115 DWORD bytes = 0; local
121 return GetOverlappedResult(hi,pO,&bytes,TRUE);
129 DWORD bytes; local
153 ReadFile(hImage, &dh, sizeof(struct DosHeader), &bytes,&overlap);
164 ReadFile(hImage, &ntSignature, sizeof(ULONG), &bytes,&overlap);
173 ReadFile(hImage, &optionalhdr,IMAGE_SIZEOF_NT_OPTIONAL_HEADER, &bytes,
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebPDFDocumentExtras.mm100 const UInt8* bytes = 0;
110 bytes = CFDataGetBytePtr(data.get());
113 bytes = CGPDFStringGetBytePtr(string);
116 if (!bytes)
119 NSStringEncoding encoding = (length > 1 && bytes[0] == 0xFE && bytes[1] == 0xFF) ? NSUnicodeStringEncoding : NSUTF8StringEncoding;
120 NSString *script = [[NSString alloc] initWithBytes:bytes length:length encoding:encoding];
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dsnprintf.c35 int /* O - Number of bytes formatted */
54 int bytes; /* Total number of bytes needed */ local
63 bytes = 0;
75 bytes ++;
189 bytes += (int)templen;
220 bytes += (int)templen;
244 bytes += (int)templen;
262 bytes += width;
287 bytes
350 int bytes; /* Number of bytes formatted */ local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/text/win/
H A DTextCodecWin.cpp191 static inline const char* findFirstNonAsciiCharacter(const char* bytes, size_t length) argument
193 for (const char* bytesEnd = bytes + length; bytes < bytesEnd; ++bytes) {
194 if (*bytes & 0x80)
197 return bytes;
200 static void decodeInternal(Vector<UChar, 8192>& result, UINT codePage, const char* bytes, size_t length, size_t* left) argument
203 if (!bytes || !length)
211 int resultLength = MultiByteToWideChar(codePage, flags, bytes, testLength, 0, 0);
217 MultiByteToWideChar(codePage, flags, bytes, testLengt
237 decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/common/
H A Dzerofill.c15 * Zero out bytes in the file.
36 u_int32_t bytes, mbytes; local
44 if ((ret = __os_ioinfo(env, NULL, fhp, &mbytes, &bytes, NULL)) != 0)
46 stat_offset = (off_t)mbytes * MEGABYTE + bytes;
60 if ((ret = __os_seek(env, fhp, mbytes, MEGABYTE, bytes)) != 0)
84 bytes = (u_int32_t)(write_offset % MEGABYTE);
85 ret = __os_seek(env, fhp, mbytes, MEGABYTE, bytes);
/macosx-10.9.5/BerkeleyDB-21/db/docs/ref/transapp/
H A Dwritetest.cs26 int bytes, ch, cnt, fd, ops;
29 bytes = 256;
35 if ((bytes = atoi(optarg)) > sizeof(buf)) {
63 memset(buf, 0, bytes);
69 if (write(fd, buf, bytes) != bytes) {
116 "usage: testfile [-b bytes] [-f file] [-o ops]\n");
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/ref/transapp/
H A Dwritetest.cs26 int bytes, ch, cnt, fd, ops;
29 bytes = 256;
35 if ((bytes = atoi(optarg)) > sizeof(buf)) {
63 memset(buf, 0, bytes);
69 if (write(fd, buf, bytes) != bytes) {
116 "usage: testfile [-b bytes] [-f file] [-o ops]\n");
/macosx-10.9.5/CPANInternal-140/Perl4-CoreLibs-0.003/lib/
H A Dsyslog.pl169 @bytes = unpack("C4",$addrs[0]);
172 @bytes = (0,0,0,0);
174 $this = pack($pat, $af_inet, 0, @bytes);
177 @bytes = split(/\./,$host);
182 @bytes = unpack("C4",$addrs[0]);
184 $that = pack($pat,$af_inet,$syslog,@bytes);
/macosx-10.9.5/CommonCrypto-60049/test/CommonCrypto/
H A DCommonCMac.c30 CCAESCmac(keyBytes->bytes, inputBytes->bytes, inputBytes->len, mdBuf->bytes);
/macosx-10.9.5/IOGraphics-471.92.1/tools/
H A Dbootgamma.c60 const uint8_t * bytes; local
70 endData = bytes = CFDataGetBytePtr(data);
77 while (bytes < endData)
79 bootGamma = (typeof(bootGamma)) bytes;
80 bytes += bootGamma->length;
81 assert (bytes <= endData);
/macosx-10.9.5/dtrace-118.1/DTTk/Bin/
H A Drwbytype.d3 * rwbytype.d - read/write bytes by vnode type.
18 * BYTES bytes transferred
77 @bytes[pid, execname, self->type, "R"] = sum(self->size - this->resid);
88 @bytes[pid, execname, self->type, "W"] = sum(self->size - this->resid);
98 printa("%-6d %-16s %6s %4s %@9d\n", @bytes);

Completed in 342 milliseconds

1234567891011>>