Searched refs:byte (Results 176 - 200 of 462) sorted by relevance

1234567891011>>

/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Dnsec.c59 unsigned int byte, shift, mask; local
61 byte = array[index / 8];
65 return ((byte & mask) != 0);
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/unix/
H A Dinterfaceiter.c218 unsigned char byte; local
220 byte = ((strchr(hex, address[i * 2]) - hex) << 4) |
222 addr6.s6_addr[i] = byte;
/macosx-10.10.1/bootp-298/IPConfiguration.bproj/
H A Difutil.c268 int byte; local
273 for (byte = 0; byte < size; byte++, plen += 8) {
274 if (name[byte] != 0xff) {
280 if (byte == size) {
286 if (!(name[byte] & (1 << bit))) {
293 if (name[byte] & (1 << bit)) {
298 byte++;
299 for (; byte < siz
[all...]
/macosx-10.10.1/dcerpc-61/dcerpc/idl_compiler/
H A Direp.h101 typedef unsigned char byte; typedef
117 #define IR_ARG_BYT 2 /* standard arg# for byte value */
291 byte byt_val;
383 typedef byte IR_scope_k_t;
/macosx-10.10.1/dyld-353.2.1/src/
H A Ddyld_stub_binder.s33 #define XMMM0_SAVE 16 /* 16-byte align */
42 #define STACK_SIZE 100 /* must be 4 mod 16 so that stack winds up 16-byte aliged */
54 subl $STACK_SIZE,%esp # makes stack 16-byte aligned
106 #define STATIC_STACK_SIZE 256 // extra padding to allow it to be 64-byte aligned
127 test $0xF,%rsp # at this point stack should be 16-byte aligned
180 andq $-64, %rdi # 64-byte align stack
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A DSRebuildBTree.c672 /* Working a byte at a time is endian safe */
1135 UInt8 byte; local
1143 byte = *(myPtr + i);
1144 plog( "%02X ", byte );
1145 if (byte < 32 || byte > 126)
1148 ascii[i & 0xF] = byte;
1171 UInt8 byte; local
1178 byte = *(myPtr + i);
1179 plog( "%02X ", byte );
[all...]
/macosx-10.10.1/ntp-92/lib/isc/unix/
H A Dinterfaceiter.c218 unsigned char byte; local
220 byte = ((strchr(hex, address[i * 2]) - hex) << 4) |
222 addr6.s6_addr[i] = byte;
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationweights.cpp58 setWeightByte(uint32_t weight, int32_t idx, uint32_t byte) { argument
59 uint32_t mask; /* 0xffffffff except a 00 "hole" for the index-th byte */
78 return (uint32_t)((weight&mask)|(byte<<idx));
143 // We use only 6 bits per byte.
154 uint32_t byte=getWeightByte(weight, length); local
155 if(byte<maxBytes[length]) {
156 return setWeightByte(weight, length, byte+1);
158 // Roll over, set this byte to the minimum and increment the previous one.
173 // Split the offset between this byte and the previous one.
275 // Prevent overflow for primary lead byte F
[all...]
/macosx-10.10.1/dyld-353.2.1/launch-cache/
H A DMachOTrie.hpp128 // byte for terminal node size in bytes, or 0x00 if not terminal node
130 // byte for child node count
150 ++nodeSize; // byte for count of chidren
200 // no export info uleb128 of zero is one byte of zero
215 uint8_t byte; local
217 byte = value & 0x7F;
220 byte |= 0x80;
221 out.push_back(byte);
223 } while( byte >= 0x80 );
/macosx-10.10.1/ruby-106/ruby/enc/
H A Dbig5.c242 #define BIG5_ISMB_FIRST(byte) ( \
243 BIG5_HKSCS_P(enc) ? EncLen_BIG5_HKSCS[byte] > 1 : \
244 EncLen_BIG5[byte] > 1 \
246 #define BIG5_ISMB_TRAIL(byte) BIG5_CAN_BE_TRAIL_TABLE[(byte)]
282 * Source: Chinese for Taiwan Multi-byte set.
/macosx-10.10.1/xnu-2782.1.97/osfmk/x86_64/
H A Dstart.s218 xor %ah, %ah /* Security: zero second byte of stack canary */
539 #define operand_size_prefix .byte 0x66
540 #define address_size_prefix .byte 0x67
541 #define cs_base_prefix .byte 0x2e
545 .byte 0xea ;\
554 .byte 0x15 ;\
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxml/expat/xmltok/
H A Dxmltok.c60 /* A 2 byte UTF-8 representation splits the characters 11 bits
64 #define UTF8_GET_NAMING2(pages, byte) \
65 (namingBitmap[((pages)[(((byte)[0]) >> 2) & 7] << 3) \
66 + ((((byte)[0]) & 3) << 1) \
67 + ((((byte)[1]) >> 5) & 1)] \
68 & (1 << (((byte)[1]) & 0x1F)))
70 /* A 3 byte UTF-8 representation splits the characters 16 bits
74 #define UTF8_GET_NAMING3(pages, byte) \
75 (namingBitmap[((pages)[((((byte)[0]) & 0xF) << 4) \
76 + ((((byte)[
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/generic/
H A Ddom.h160 /* A 2 byte UTF-8 representation splits the characters 11 bits
164 #define UTF8_GET_NAMING2(pages, byte) \
165 (namingBitmap[((pages)[(((byte)[0]) >> 2) & 7] << 3) \
166 + ((((byte)[0]) & 3) << 1) \
167 + ((((byte)[1]) >> 5) & 1)] \
168 & (1 << (((byte)[1]) & 0x1F)))
170 /* A 3 byte UTF-8 representation splits the characters 16 bits
174 #define UTF8_GET_NAMING3(pages, byte) \
175 (namingBitmap[((pages)[((((byte)[0]) & 0xF) << 4) \
176 + ((((byte)[
[all...]
/macosx-10.10.1/ruby-106/ruby/tool/
H A Dtranscode-tblgen.rb338 bytes.each_with_index {|byte, i|
339 index_from[byte] = i
340 byte_from[i] = byte
539 table.each_with_index {|action, byte|
542 min = byte if !min
543 max = byte
549 offsets[byte] = o
642 raise "invalid byte sequence" if row < 0x21
649 raise "invalid byte sequence"
652 raise "invalid byte sequenc
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/libdb_java/
H A Ddb_java.i354 private final int handle_bt_compare(byte[] arr1, byte[] arr2) {
383 private final int handle_h_compare(byte[] arr1, byte[] arr2) {
391 private final int handle_dup_compare(byte[] arr1, byte[] arr2) {
399 private final int handle_h_hash(byte[] data, int len) {
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/contrib/visupng/
H A DPngFile.c126 // first check the eight byte PNG signature
194 pBkgColor->red = (byte) pBackground->red;
195 pBkgColor->green = (byte) pBackground->green;
196 pBkgColor->blue = (byte) pBackground->blue;
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/Tool/
H A Dcodesign.c102 uint8_t byte = *(uint8_t*)(data+i+j);
103 fprintf(stderr, "%.02x %c|", byte, isprint(byte) ? byte : '?');
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Dsec_id.c215 byte *data;
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Daddrtoname.c176 register u_int byte; local
186 byte = addr & 0xff;
187 *--cp = byte % 10 + '0';
188 byte /= 10;
189 if (byte > 0) {
190 *--cp = byte % 10 + '0';
191 byte /= 10;
192 if (byte > 0)
193 *--cp = byte + '0';
207 * is assumed to be in network byte orde
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Dasm.h139 #define SVC .byte 0x9a; .long 0; .word 0x7
141 #define RPC_SVC .byte 0x9a; .long 0; .word 0xf
153 #define data16 .byte 0x66
154 #define addr16 .byte 0x67
/macosx-10.10.1/apr-32/apr-util/apr-util/xml/expat/lib/
H A Dxmltok.c44 /* A 2 byte UTF-8 representation splits the characters 11 bits between
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 between
59 #define UTF8_GET_NAMING3(pages, byte) \
60 (namingBitmap[((pages)[((((byte)[0]) & 0xF) << 4) \
61 + ((((byte)[
[all...]
/macosx-10.10.1/expat-12/expat/lib/
H A Dxmltok.c51 /* A 2 byte UTF-8 representation splits the characters 11 bits between
55 #define UTF8_GET_NAMING2(pages, byte) \
56 (namingBitmap[((pages)[(((byte)[0]) >> 2) & 7] << 3) \
57 + ((((byte)[0]) & 3) << 1) \
58 + ((((byte)[1]) >> 5) & 1)] \
59 & (1 << (((byte)[1]) & 0x1F)))
61 /* A 3 byte UTF-8 representation splits the characters 16 bits between
66 #define UTF8_GET_NAMING3(pages, byte) \
67 (namingBitmap[((pages)[((((byte)[0]) & 0xF) << 4) \
68 + ((((byte)[
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/expat/
H A Dxmltok.c51 /* A 2 byte UTF-8 representation splits the characters 11 bits between
55 #define UTF8_GET_NAMING2(pages, byte) \
56 (namingBitmap[((pages)[(((byte)[0]) >> 2) & 7] << 3) \
57 + ((((byte)[0]) & 3) << 1) \
58 + ((((byte)[1]) >> 5) & 1)] \
59 & (1 << (((byte)[1]) & 0x1F)))
61 /* A 3 byte UTF-8 representation splits the characters 16 bits between
66 #define UTF8_GET_NAMING3(pages, byte) \
67 (namingBitmap[((pages)[((((byte)[0]) & 0xF) << 4) \
68 + ((((byte)[
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Drecd016.tcl85 set byte [read $fid 1]
86 binary scan $byte c val
H A Dsec002.tcl105 set byte [read $f 1]
106 binary scan $byte c val

Completed in 472 milliseconds

1234567891011>>