Searched refs:bytes (Results 451 - 475 of 1605) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/generic/
H A DtransformInt.h140 #define PRTSTR(fmt,len,bytes) PrintString (fmt,len,bytes)
141 #define DUMP(len,bytes) DumpString (n, len, bytes)
143 extern void PrintString _ANSI_ARGS_ ((char* fmt, int len, char* bytes));
144 extern void DumpString _ANSI_ARGS_ ((int level, int len, char* bytes));
155 #define PRTSTR(fmt,len,bytes)
156 #define DUMP(len,bytes)
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dmisc_protos.h91 extern int apply_func_phys(addr64_t src64, vm_size_t bytes, int (*func)(void * buffer, vm_size_t bytes, void * arg), void * arg);
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dcsdetest.cpp140 char *bytes = NULL; local
145 bytes = NEW_ARRAY(char, length + 1);
146 source.extract(0, sLength, bytes, codepage);
149 return bytes;
152 static void freeBytes(char *bytes) argument
154 DELETE_ARRAY(bytes);
172 char *bytes = extractBytes(testString, codepage, byteLength); local
174 if (bytes == NULL) {
181 ucsdet_setText(csd.getAlias(), bytes, byteLength, &status);
237 freeBytes(bytes);
289 char *bytes = extractBytes(s, "UTF-8", byteLength); local
389 char *bytes = extractBytes(s, "ISO-8859-1", byteLength); local
596 char *bytes = extractBytes(s1, "IBM424", bLength); local
680 char *bytes = extractBytes(s1, "IBM420", bLength); local
[all...]
H A Dconvtest.h38 const uint8_t *bytes; member in struct:ConversionCase
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dxcache.c128 CFUUIDBytes bytes = CFUUIDGetUUIDBytes(x->uuid);
130 uuid_unparse((void *)&bytes, x->cache_name);
137 CFUUIDBytes bytes; local
140 if (uuid_parse(res, (void *)&bytes) != 0) {
145 CFUUIDRef uuidref = CFUUIDCreateFromUUIDBytes(NULL, bytes);
649 CFUUIDBytes bytes = CFUUIDGetUUIDBytes(x->uuid); local
650 memcpy(uuid, &bytes, sizeof(krb5_uuid));
658 CFUUIDBytes bytes; local
661 memcpy(&bytes, uuid, sizeof(bytes));
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/tools/toolutil/
H A Dxmlparser.cpp164 char bytes[4096], charsetBuffer[100]; local
183 bytesLength=T_FileStream_read(f, bytes, (int32_t)sizeof(bytes));
184 if(bytesLength<(int32_t)sizeof(bytes)) {
198 charset=ucnv_detectUnicodeSignature(bytes, bytesLength, NULL, &errorCode);
216 pb=bytes;
221 &pb, bytes+bytesLength,
275 // convert contents of bytes[bytesLength]
276 pb=bytes;
289 &pb, bytes
[all...]
/macosx-10.9.5/IOPCIFamily-224.92.1/tools/
H A Dpcidump.c393 static void dump( const uint8_t * bytes, size_t len ) argument
402 printf(" %02x", bytes[i]);
425 uint8_t *bytes = (uint8_t *)&data[0]; local
446 headerType = bytes[kIOPCIConfigHeaderType];
454 bytes[kIOPCIConfigRevisionID + 3],
455 bytes[kIOPCIConfigRevisionID + 2],
456 bytes[kIOPCIConfigRevisionID + 1]);
460 priBusNum = bytes[kPCI2PCIPrimaryBus];
461 secBusNum = bytes[kPCI2PCISecondaryBus];
462 subBusNum = bytes[kPCI2PCISubordinateBu
[all...]
/macosx-10.9.5/SmartcardCCID-55005/libusb/libusb/
H A Dbsd.c282 int usb_bulk_write(usb_dev_handle *dev, int ep, char *bytes, int size, argument
307 ret = write(fd, bytes, size);
320 int usb_bulk_read(usb_dev_handle *dev, int ep, char *bytes, int size, argument
348 ret = read(fd, bytes, size);
361 int usb_interrupt_write(usb_dev_handle *dev, int ep, char *bytes, int size, argument
387 ret = write(fd, bytes+sent, size-sent);
403 int usb_interrupt_read(usb_dev_handle *dev, int ep, char *bytes, int size, argument
432 ret = read(fd, bytes+retrieved, size-retrieved);
448 int value, int index, char *bytes, int size, int timeout)
455 requesttype, request, value, index, bytes, siz
447 usb_control_msg(usb_dev_handle *dev, int requesttype, int request, int value, int index, char *bytes, int size, int timeout) argument
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dpgg-parse.el119 (defmacro pgg-parse-time-field (bytes)
120 `(list (logior (lsh (car ,bytes) 8)
121 (nth 1 ,bytes))
122 (logior (lsh (nth 2 ,bytes) 8)
123 (nth 3 ,bytes))
132 (defmacro pgg-read-bytes-string (nbytes)
137 (defmacro pgg-read-bytes (nbytes)
138 `(mapcar #'pgg-char-int (pgg-read-bytes-string ,nbytes))
139 ;; `(string-to-number-list (pgg-read-bytes-string ,nbytes))
144 (pgg-read-bytes
[all...]
/macosx-10.9.5/cups-372.4/cups/backend/
H A Dsnmp.c1021 if (strchr((char *)packet.object_value.string.bytes, ':') &&
1022 strchr((char *)packet.object_value.string.bytes, ';'))
1030 for (ptr = (char *)packet.object_value.string.bytes; *ptr; ptr ++)
1034 device->id = strdup((char *)packet.object_value.string.bytes);
1036 backendGetMakeModel((char *)packet.object_value.string.bytes,
1050 fix_make_model(make_model, (char *)packet.object_value.string.bytes,
1056 device->info = strdup((char *)packet.object_value.string.bytes);
1076 for (ptr = (char *)packet.object_value.string.bytes; *ptr; ptr ++)
1082 device->id = strdup((char *)packet.object_value.string.bytes);
1088 backendGetMakeModel((char *)packet.object_value.string.bytes,
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ucdata/
H A Ducgendat.c46 #include <ac/bytes.h>
1286 ac_uint4 bytes; local
1343 if ((bytes = sizeof(ac_uint2) * (NUMPROPS + 1)) & 3)
1344 bytes += 4 - (bytes & 3);
1345 nprops = bytes / sizeof(ac_uint2);
1346 bytes += sizeof(ac_uint4) * idx;
1385 fwrite((char *) &bytes, sizeof(ac_uint4), 1, out);
1534 bytes = comps_used * sizeof(_comp_t);
1535 fwrite((char *) &bytes, sizeo
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFUtilities.c124 CFHashCode CFHashBytes(uint8_t *bytes, CFIndex length) { argument
129 ELF_STEP(bytes[length - rem]);
130 ELF_STEP(bytes[length - rem + 1]);
131 ELF_STEP(bytes[length - rem + 2]);
132 ELF_STEP(bytes[length - rem + 3]);
136 case 3: ELF_STEP(bytes[length - 3]);
137 case 2: ELF_STEP(bytes[length - 2]);
138 case 1: ELF_STEP(bytes[length - 1]);
566 // message must be a UTF8-encoded, null-terminated, byte buffer with at least length bytes
1034 void *bytes
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A DSecRSAKey.c465 // We return the bytes for a number and
542 uint8_t *bytes = CFDataGetMutableBytePtr(pkcs1); local
544 *bytes++ = ASN1_CONSTR_SEQUENCE;
547 DEREncodeLength(seq_size, bytes, &itemLength);
548 bytes += itemLength;
550 ccasn_encode_int(ccrsa_ctx_n(pubkey), ccrsa_ctx_m(pubkey), m_size, &bytes); local
551 ccasn_encode_int(ccrsa_ctx_n(pubkey), ccrsa_ctx_e(pubkey), e_size, &bytes); local
998 uint8_t *bytes = CFDataGetMutableBytePtr(pkcs1); local
1000 *bytes++ = ASN1_CONSTR_SEQUENCE;
1003 DEREncodeLength(seq_size, bytes,
1010 ccasn_encode_int(ccrsa_ctx_n(fullkey), ccrsa_ctx_m(fullkey), m_size, &bytes); local
1011 ccasn_encode_int(ccrsa_ctx_n(fullkey), ccrsa_ctx_e(fullkey), e_size, &bytes); local
1012 ccasn_encode_int(ccrsa_ctx_n(fullkey), ccrsa_ctx_d(fullkey), d_size, &bytes); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/plugins/
H A DPluginView.cpp985 const char* bytes = buffer.data(); local
990 if (bytes[i] == '\n' && bytes[i + 1] == '\n')
994 if (bytes[i] == '\r' && bytes[i + 1] == '\n') {
998 else if (bytes[i] == '\n')
1001 else if (bytes[i] == '\r' && bytes[i + 1] == '\n')
1010 static inline const char* findEOL(const char* bytes, unsigned length) argument
1022 if (bytes[
1066 const char* bytes = buffer.data(); local
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/txn/
H A Dtxn_chkpt.c105 u_int32_t bytes, id, logflags, mbytes, op; local
125 if ((ret = __log_current_lsn(env, &ckp_lsn, &mbytes, &bytes)) != 0)
130 if (bytes == 0 && mbytes == 0)
140 mbytes * 1024 + bytes / 1024 >= (u_int32_t)kbytes)
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/RR/
H A DNSAP.pm7 eval { require bytes; }
158 my ($string, $bytes) = @_;
161 my $digits = $bytes * 2;
166 for ($i = 0; $i < $bytes; ++$i) {
H A DUnknown.pm7 eval { require bytes; }
/macosx-10.9.5/CPANInternal-140/Perl4-CoreLibs-0.003/lib/
H A Dftp.pl524 local( $bytes, $lasthash, $hashes ) = (0, 0, 0);
526 $bytes += $len;
531 while( $bytes > ($lasthash + $ftp'hashevery) ){
565 local( $rate ) = int( $bytes / $secs );
566 print STDERR "Got $bytes bytes ($rate bytes/sec)\n";
/macosx-10.9.5/CommonCrypto-60049/include/
H A DCommonRandomSPI.h76 with 64 bytes. After each call, there is a reseed operation that
77 happens on an async GCD queue that reseeds with 32 bytes and a
107 @abstract Return random bytes in a buffer allocated by the caller.
118 @param bytes Pointer to the return buffer.
119 @param count Number of random bytes to return.
124 int CCRandomCopyBytes(CCRandomRef rnd, void *bytes, size_t count)
187 per get, which you will probably never do. If you pull under 500 bytes from the
199 about 20% faster, but obviously for 500 bytes would run the same.
205 Prediction resistance re-seeds the DRBG after every request with 32 bytes from
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Drand.h73 int (*bytes)(unsigned char *, int); member in struct:RAND_METHOD
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Ducnv_u7.c214 uint8_t *bytes; local
244 bytes=cnv->toUBytes;
271 bytes[0]=b;
304 * base64 bytes, while nextSourceIndex is precisely parallel to source,
310 bytes[byteIndex++]=b=*source++;
332 bytes[0]=PLUS;
357 /* collect base64 bytes into UChars */
377 bytes[0]=b; /* keep this byte in case an error occurs */
388 bytes[0]=b; /* keep this byte in case an error occurs */
587 * Output 2 or 3 base64 bytes fo
896 uint8_t *bytes; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dbytestrie.h55 * The BytesTrie object will not read more bytes than
106 State() { bytes=NULL; }
110 const uint8_t *bytes; member in class:BytesTrie::State
123 state.bytes=bytes_;
140 if(bytes_==state.bytes && bytes_!=NULL) {
233 * @return the number of bytes which continue the byte sequence from here
246 * @param trieBytes The trie bytes.
432 // encode match values or continue matching further bytes.
439 // - Linear-match node: Matches a number of bytes.
441 // The node byte is the length of the branch (number of bytes t
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/tools/makeconv/
H A Dgenmbcs.h118 const uint8_t *bytes, int32_t length,
/macosx-10.9.5/IOGraphics-471.92.1/tools/
H A Dmodesuck.c67 vm_offset_t bytes; local
72 err = readFile( path, &bytes, &byteLen );
78 (const UInt8 *) bytes, byteLen, kCFAllocatorNull );
85 vm_deallocate( mach_task_self(), bytes, byteLen ); local
/macosx-10.9.5/Libc-997.90.3/net/FreeBSD/
H A Dinet_net_pton.c56 * "size" is in bytes and describes "dst".
278 size_t bytes; local
372 bytes = (bits + 7) / 8;
373 if (bytes > size)
375 memcpy(dst, tmp, bytes);
392 * "size" is in bytes and describes "dst".

Completed in 341 milliseconds

<<11121314151617181920>>