Searched refs:byte (Results 126 - 150 of 464) sorted by relevance

1234567891011>>

/macosx-10.10/ICU-531.30/icuSources/common/
H A Dbytestriebuilder.cpp30 * of the byte sequences, until the BytesTrie is built.
79 // If the stringOffset is non-negative, then the first strings byte contains
248 // Create and byte-serialize the trie for the elements.
309 char byte=elements[i++].charAt(byteIndex, *strings); local
310 while(i<limit && byte==elements[i].charAt(byteIndex, *strings)) {
321 char byte=elements[i++].charAt(byteIndex, *strings); local
322 while(byte==elements[i].charAt(byteIndex, *strings)) {
330 BytesTrieBuilder::indexOfElementWithNextUnit(int32_t i, int32_t byteIndex, UChar byte) const {
331 char b=(char)byte;
400 BytesTrieBuilder::write(int32_t byte) { argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Dbytestriebuilder.h55 * Adds a (byte sequence, value) pair.
56 * The byte sequence must be unique.
59 * @param s The input byte sequence.
60 * @param value The value associated with this byte sequence.
74 * A BytesTrie cannot be empty. At least one (byte sequence, value) pair
91 * Builds a BytesTrie for the add()ed data and byte-serializes it.
94 * A BytesTrie cannot be empty. At least one (byte sequence, value) pair
98 * builder's same byte array, without rebuilding.
109 * @return A StringPiece which refers to the byte-serialized BytesTrie for the add()ed data.
115 * Removes all (byte sequenc
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/
H A Dicu-svnprops-check.py171 if all(ord(byte) < 128 for byte in bytes):
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/badsig/
H A Dbadsig.c27 * corrupt text byte;
29 * restore corrupted byte;
133 unsigned byte; local
265 for(byte=0; byte<length; byte += incr) {
267 printf(" ..byte %d\n", byte);
269 origData = data[byte];
271 * Generate random non-zero byte
[all...]
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Ddns.el77 (dolist (byte bytes)
78 (insert byte))))
195 (let ((byte (dns-read-bytes 1)))
196 (push (list 'response-p (if (zerop (logand byte (lsh 1 7))) nil t))
198 (let ((opcode (logand byte (lsh 7 3))))
204 (push (list 'authoritative-p (if (zerop (logand byte (lsh 1 2)))
206 (push (list 'truncated-p (if (zerop (logand byte (lsh 1 2))) nil t))
209 (if (zerop (logand byte (lsh 1 0))) nil t)) spec))
H A Dqp.el72 (let ((byte (string-to-number (buffer-substring (1+ (point))
75 (mm-insert-byte byte 1)
H A Dcanlock.el90 (let ((ipad (mapconcat (lambda (byte)
91 (char-to-string (logxor 54 byte)))
93 (opad (mapconcat (lambda (byte)
94 (char-to-string (logxor 92 byte)))
/macosx-10.10/llvmCore-3425.0.34/include/llvm-c/
H A DEnhancedDisassembly.h44 @param byte A pointer whose target should be filled in with the data returned.
45 @param address The address of the byte to be read.
49 typedef int (*EDByteReaderCallback)(uint8_t *byte, uint64_t address, void *arg);
168 @param address The address of the first byte of the instruction.
449 @param byte A pointer whose target should be filled in with the data returned.
450 @param address The address of the byte to be read.
453 typedef int (^EDByteBlock_t)(uint8_t *byte, uint64_t address); variable
486 @param address The address of the first byte of the instruction.
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/
H A Dtkphoto.tcl18 ffidl::callout ffidl-photo-put-block {Tk_PhotoHandle pointer-byte int int int int} void \
20 ffidl::callout ffidl-photo-put-zoomed-block {Tk_PhotoHandle pointer-byte int int int int int int int int} void \
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_acorn.c69 typedef unsigned char byte; typedef
85 typedef byte os_f;
100 byte *data,
104 byte *data,
123 byte *buffer,
127 byte *buffer,
328 return (nbytes - osgbpb_write((os_f) fd, (const byte*) buf, nbytes));
334 return (nbytes - osgbpb_read((os_f) fd, (byte*) buf, nbytes));
/macosx-10.10/tcl-105/tcl_ext/trf/trf/generic/ripemd/
H A Drmd128.h35 typedef unsigned char byte; /* unsigned 8-bit type */ typedef
117 ripemd128_MDfinish _ANSI_ARGS_ ((dword *MDbuf, byte *strptr, dword lswlen, dword mswlen));
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dxmltok.c44 /* A 2 byte UTF-8 representation splits the characters 11 bits
48 #define UTF8_GET_NAMING2(pages, byte) \
49 (namingBitmap[((pages)[(((byte)[0]) >> 2) & 7] << 3) \
50 + ((((byte)[0]) & 3) << 1) \
51 + ((((byte)[1]) >> 5) & 1)] \
52 & (1 << (((byte)[1]) & 0x1F)))
54 /* A 3 byte UTF-8 representation splits the characters 16 bits
58 #define UTF8_GET_NAMING3(pages, byte) \
59 (namingBitmap[((pages)[((((byte)[0]) & 0xF) << 4) \
60 + ((((byte)[
[all...]
/macosx-10.10/ICU-531.30/icuSources/io/
H A Dufmt_cmn.c206 /* Get the first nibble of the byte */
207 uint8_t byte = (uint8_t)ufmt_digitvalue(buffer[count]); local
210 /* Get the second nibble of the byte when available */
211 byte = (uint8_t)(byte + (ufmt_digitvalue(buffer[--count]) << 4));
213 /* Write the byte into the array */
214 result.bytes[resultIdx] = byte;
/macosx-10.10/ICU-531.30/icuSources/tools/toolutil/
H A Dunewdata.h73 /** @memo Write an 8-bit byte to the file. */
75 udata_write8(UNewDataMemory *pData, uint8_t byte);
H A Dpkg_genc.c59 write8(FileStream *out, uint8_t byte, uint32_t column);
62 write32(FileStream *out, uint32_t byte, uint32_t column);
66 write8str(FileStream *out, uint8_t byte, uint32_t column);
175 ".4byte ","",HEX_0X
473 /* first byte */
524 write8(FileStream *out, uint8_t byte, uint32_t column) { argument
528 /* convert the byte value to a string */
529 if(byte>=100) {
530 s[i++]=(char)('0'+byte/100);
531 byte
557 write8str(FileStream *out, uint8_t byte, uint32_t column) argument
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen-ops.h344 SUBWORDSIQI (SI in, int byte)
346 assert (byte >= 0 && byte <= 3);
347 return (UQI) (in >> (8 * (3 - byte))) & 0xFF;
351 SUBWORDSIUQI (SI in, int byte)
353 assert (byte >= 0 && byte <= 3);
354 return (UQI) (in >> (8 * (3 - byte))) & 0xFF;
358 SUBWORDDIQI (DI in, int byte)
360 assert (byte >
336 SUBWORDSIQI(SI in, int byte) argument
343 SUBWORDSIUQI(SI in, int byte) argument
350 SUBWORDDIQI(DI in, int byte) argument
389 SUBWORDDIUQI(DI in, int byte) argument
[all...]
/macosx-10.10/dcerpc-61/dcerpc/include/dce/solaris2.8/
H A Ddce.h171 * Machine dependent typedefs for boolean, byte, and (un)signed integers.
182 * byte unsigned 8 bits
187 typedef idl_byte byte; typedef
/macosx-10.10/tidy-15.15/tidy/src/
H A Diconvtc.c20 /* maximum number of characters per byte sequence */
33 int IconvGetChar(byte firstByte, StreamIn * in, uint * bytesRead)
H A Dmappedio.c29 const byte *base;
45 static void TIDY_CALL mapped_ungetByte( void* sourceData, byte bv )
106 byte *view, *iter, *end;
154 static void TIDY_CALL mapped_ungetByte( void *sourceData, byte bt )
/macosx-10.10/ruby-106/ruby/
H A Dpack.c325 * n | Integer | 16-bit unsigned, network (big-endian) byte order
326 * N | Integer | 32-bit unsigned, network (big-endian) byte order
327 * v | Integer | 16-bit unsigned, VAX (little-endian) byte order
328 * V | Integer | 32-bit unsigned, VAX (little-endian) byte order
338 * E | Float | double-precision, little-endian byte order
339 * e | Float | single-precision, little-endian byte order
340 * G | Float | double-precision, network (big-endian) byte order
341 * g | Float | single-precision, network (big-endian) byte order
364 * X | --- | back up a byte
365 * x | --- | null byte
519 int byte = 0; local
550 int byte = 0; local
580 int byte = 0; local
611 int byte = 0; local
[all...]
/macosx-10.10/objc4-646/runtime/Messengers.subproj/
H A Dobjc-msg-x86_64.s130 * Recommended multi-byte NOP instructions
133 #define nop1 .byte 0x90
134 #define nop2 .byte 0x66,0x90
135 #define nop3 .byte 0x0F,0x1F,0x00
136 #define nop4 .byte 0x0F,0x1F,0x40,0x00
137 #define nop5 .byte 0x0F,0x1F,0x44,0x00,0x00
138 #define nop6 .byte 0x66,0x0F,0x1F,0x44,0x00,0x00
139 #define nop7 .byte 0x0F,0x1F,0x80,0x00,0x00,0x00,0x00
140 #define nop8 .byte 0x0F,0x1F,0x84,0x00,0x00,0x00,0x00,0x00
141 #define nop9 .byte
[all...]
/macosx-10.10/emacs-93/emacs/src/
H A Dbuffer.h26 and one for the byte position. */
215 #define SET_PT_BOTH(position, byte) \
216 (set_point_both (current_buffer, (position), (byte)))
217 #define TEMP_SET_PT_BOTH(position, byte) \
218 (temp_set_point_both (current_buffer, (position), (byte)))
251 #define SET_BUF_BEGV_BOTH(buf, charpos, byte) \
253 (buf)->begv_byte = (byte))
255 #define SET_BUF_ZV_BOTH(buf, charpos, byte) \
257 (buf)->zv_byte = (byte))
259 #define SET_BUF_PT_BOTH(buf, charpos, byte) \
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_comcryption/
H A DcomcryptPriv.c100 j = key[i>>1]; /* Which byte. */
139 * a whole block of byte code. Note we assume that MaxOutBufSize(n) >= n.
142 MAX_TOKENS, // one byte per token
359 unsigned short byte; local
362 for(byte=0; byte<LOOKAHEAD_SIZE; byte++) {
364 if(la[byte] & bit) {
/macosx-10.10/Security-57031.1.35/Security/libsecurity_comcryption/lib/
H A DcomcryptPriv.c100 j = key[i>>1]; /* Which byte. */
139 * a whole block of byte code. Note we assume that MaxOutBufSize(n) >= n.
142 MAX_TOKENS, // one byte per token
359 unsigned short byte; local
362 for(byte=0; byte<LOOKAHEAD_SIZE; byte++) {
364 if(la[byte] & bit) {
/macosx-10.10/libunwind-35.3/src/
H A DAddressSpace.hpp151 uint8_t byte; local
153 byte = *p++;
154 result |= ((byte & 0x7f) << bit);
156 } while (byte & 0x80);
158 if ( (byte & 0x40) != 0 )

Completed in 315 milliseconds

1234567891011>>