Searched refs:byte1 (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.9.5/xnu-2422.115.4/bsd/crypto/cast128/
H A Dcast128_subkey.h52 #define byte1(x) (((x) >> 16) & 0xff) macro
57 #define x1 byte1(buf[0])
61 #define x5 byte1(buf[1])
65 #define x9 byte1(buf[2])
69 #define xD byte1(buf[3])
73 #define z1 byte1(buf[4])
77 #define z5 byte1(buf[5])
81 #define z9 byte1(buf[6])
85 #define zD byte1(buf[7])
H A Dcast128.c162 (rc) = ((S1[byte0(x)] ^ S2[byte1(x)]) - S3[byte2(x)]) + S4[byte3(x)]; \
167 (rc) = ((S1[byte0(x)] - S2[byte1(x)]) + S3[byte2(x)]) ^ S4[byte3(x)]; \
172 (rc) = ((S1[byte0(x)] + S2[byte1(x)]) ^ S3[byte2(x)]) - S4[byte3(x)]; \
/macosx-10.9.5/ruby-104/ruby/ext/digest/bubblebabble/
H A Dbubblebabble.c50 unsigned char byte1, byte2; local
59 byte1 = digest[i++];
60 p[j++] = vowels[(((byte1 >> 6) & 3) + seed) % 6];
61 p[j++] = consonants[(byte1 >> 2) & 15];
62 p[j++] = vowels[((byte1 & 3) + (seed / 6)) % 6];
73 seed = (seed * 5 + byte1 * 7 + byte2) % 36;
/macosx-10.9.5/CF-855.17/
H A DCFUUID.h41 UInt8 byte1; member in struct:__anon562
71 CFUUIDRef CFUUIDCreateWithBytes(CFAllocatorRef alloc, UInt8 byte0, UInt8 byte1, UInt8 byte2, UInt8 byte3, UInt8 byte4, UInt8 byte5, UInt8 byte6, UInt8 byte7, UInt8 byte8, UInt8 byte9, UInt8 byte10, UInt8 byte11, UInt8 byte12, UInt8 byte13, UInt8 byte14, UInt8 byte15);
83 CFUUIDRef CFUUIDGetConstantUUIDWithBytes(CFAllocatorRef alloc, UInt8 byte0, UInt8 byte1, UInt8 byte2, UInt8 byte3, UInt8 byte4, UInt8 byte5, UInt8 byte6, UInt8 byte7, UInt8 byte8, UInt8 byte9, UInt8 byte10, UInt8 byte11, UInt8 byte12, UInt8 byte13, UInt8 byte14, UInt8 byte15);
H A DCFUUID.c68 return (((p1->byte0 == p2->byte0) && (p1->byte1 == p2->byte1) && (p1->byte2 == p2->byte2) && (p1->byte3 == p2->byte3) && (p1->byte4 == p2->byte4) && (p1->byte5 == p2->byte5) && (p1->byte6 == p2->byte6) && (p1->byte7 == p2->byte7) && (p1->byte8 == p2->byte8) && (p1->byte9 == p2->byte9) && (p1->byte10 == p2->byte10) && (p1->byte11 == p2->byte11) && (p1->byte12 == p2->byte12) && (p1->byte13 == p2->byte13) && (p1->byte14 == p2->byte14) && (p1->byte15 == p2->byte15)) ? true : false);
301 CFUUIDRef CFUUIDCreateWithBytes(CFAllocatorRef alloc, uint8_t byte0, uint8_t byte1, uint8_t byte2, uint8_t byte3, uint8_t byte4, uint8_t byte5, uint8_t byte6, uint8_t byte7, uint8_t byte8, uint8_t byte9, uint8_t byte10, uint8_t byte11, uint8_t byte12, uint8_t byte13, uint8_t byte14, uint8_t byte15) { argument
305 bytes.byte1 = byte1;
393 READ_A_BYTE(bytes.byte1);
426 _intToHexChars(uuid->_bytes.byte1, &(buff[2]), 2);
462 CFUUIDRef CFUUIDGetConstantUUIDWithBytes(CFAllocatorRef alloc, uint8_t byte0, uint8_t byte1, uint8_t byte2, uint8_t byte3, uint8_t byte4, uint8_t byte5, uint8_t byte6, uint8_t byte7, uint8_t byte8, uint8_t byte9, uint8_t byte10, uint8_t byte11, uint8_t byte12, uint8_t byte13, uint8_t byte14, uint8_t byte15) { argument
466 bytes.byte1 = byte1;
[all...]
H A DCFPropertyList.c1815 unsigned char byte1 = *utf8bytes; local
1816 if (byte1 < 0x21 || (byte1 > 0x7E && byte1 < 0xA1)) return true;
1817 if ((byte1 == 0xe2 || byte1 == 0xe3) && (end - utf8bytes >= 3)) {
1821 if (byte1 == 0xe2 && byte2 == 0x80) {
1823 } else if (byte1 == 0xe2 && byte2 == 0x81) {
1825 } else if (byte1 == 0xe3 && byte2 == 0x80 && byte3 == 0x80) {
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dunwind-ia64.c590 unsigned char byte1, abreg; local
593 byte1 = *dp++;
596 abreg = (byte1 & 0x7f);
597 if (byte1 & 0x80)
608 unsigned char byte1, byte2, abreg, x, ytreg; local
611 byte1 = *dp++;
614 abreg = (byte1 & 0x7f);
616 x = (byte1 >> 7) & 1;
617 if ((byte1 & 0x80) == 0 && ytreg == 0)
628 unsigned char byte1, byte local
650 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
684 unsigned char byte1, mask, grsave; local
722 unsigned char byte1 = *dp++; local
729 unsigned char byte1 = *dp++, r, dst; local
780 unw_word grmask, frmask, byte1, byte2, byte3; local
812 unsigned char r, byte1, byte2; local
[all...]
/macosx-10.9.5/CPANInternal-140/XML-SAX/SAX/PurePerl/
H A DEncodingDetect.pm86 my $byte1 = $reader->current;
88 my $char = chr unpack("v", $byte1 . $reader->current);
/macosx-10.9.5/emacs-92/emacs/src/
H A Dw32gui.h90 #define STORE_XCHAR2B(chp, byte1, byte2) \
91 ((*chp) = ((XChar2b)((((byte1) & 0x00ff) << 8) | ((byte2) & 0x00ff))))
H A Dmacgui.h212 unsigned char byte1; member in struct:__anon8713
217 ((chp)->byte1 = (b1), (chp)->byte2 = (b2))
220 ((chp)->byte1)
H A Dxterm.h1115 ((chp)->byte1 = (b1), (chp)->byte2 = (b2))
1118 ((chp)->byte1)
H A Dmacterm.c2376 XCharStruct **row = font->bounds.rows + char2b->byte1;
2388 (char2b->byte1 << 8) + char2b->byte2,
2403 character with non-zero CHAR2B->byte1 is not in the font.
2406 if (char2b->byte1 == 0
2419 byte1 = N/D + min_byte1
2427 if (char2b->byte1 >= font->min_byte1
2428 && char2b->byte1 <= font->max_byte1
2434 * (char2b->byte1 - font->min_byte1))
2487 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
2505 ccl->reg[1] = char2b->byte1;
[all...]
H A Dxterm.c847 character with non-zero CHAR2B->byte1 is not in the font.
850 if (char2b->byte1 == 0
862 byte1 = N/D + min_byte1
870 if (char2b->byte1 >= font->min_byte1
871 && char2b->byte1 <= font->max_byte1
877 * (char2b->byte1 - font->min_byte1))
911 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
929 ccl->reg[1] = char2b->byte1;
938 char2b->byte1 = 0, char2b->byte2 = ccl->reg[1];
940 char2b->byte1
[all...]
/macosx-10.9.5/removefile-33/
H A Dremovefile_sunlink.c218 overwrite_bytes(unsigned int byte1, unsigned int byte2, unsigned int byte3, removefile_state_t state) { argument
222 val[0] = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte1;
223 val[1] = (byte2 << 24) | (byte3 << 16) | (byte1 << 8) | byte2;
224 val[2] = (byte3 << 24) | (byte1 << 16) | (byte2 << 8) | byte3;
/macosx-10.9.5/srm-7/srm/src/
H A Dsunlink.c237 void overwrite_bytes(unsigned int byte1, unsigned int byte2, unsigned int byte3) { argument
241 val[0] = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte1;
242 val[1] = (byte2 << 24) | (byte3 << 16) | (byte1 << 8) | byte2;
243 val[2] = (byte3 << 24) | (byte1 << 16) | (byte2 << 8) | byte3;
/macosx-10.9.5/ntp-88/scripts/monitoring/
H A Dntp.pl20 $byte1 = (($NTP_version & 0x7)<< 3) & 0x34 | ($ctrl_mode & 0x7);
34 ;# C LI|VN|MODE LI 2bit=00 VN 3bit=2(3) MODE 3bit=6 : $byte1
94 $byte1,
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfuuid.py53 self.assertEqual(bytes.byte1 , 2)
98 self.assertHasAttr(o, 'byte1')
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.c398 uint8_t byte1; local
400 if (lookAtByte(insn, &byte1)) {
405 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) {
442 uint8_t byte1; local
444 if (lookAtByte(insn, &byte1)) {
449 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) {
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfuuid.py63 self.failUnless(bytes.byte1 == 2)
114 self.failUnless( hasattr(o, 'byte1') )
/macosx-10.9.5/tcl-102/tcl_ext/sdx/sdx/lib/md5/
H A Dmd5.tcl410 proc ::md5::byte1 {i} {expr {(0xff00 & $i) >> 8}}
415 format %0.2x%0.2x%0.2x%0.2x [byte0 $i] [byte1 $i] [byte2 $i] [byte3 $i]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/md5/
H A Dmd5.tcl412 proc ::md5::byte1 {i} {expr {(0xff00 & $i) >> 8}}
417 format %0.2x%0.2x%0.2x%0.2x [byte0 $i] [byte1 $i] [byte2 $i] [byte3 $i]
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Delf-m10300.c3390 unsigned char byte1, byte2;
3401 byte1 = bfd_get_8 (abfd, contents + addr);
3404 if (byte1 == 0xcf)
3408 byte1 = bfd_get_8 (abfd, contents + addr);
3455 if (byte1 == 0xf8 && byte2 == 0xfe)
3462 else if (byte1 == 0xfa && byte2 == 0xfe)
3389 unsigned char byte1, byte2; local
/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DARMv7Assembler.h210 uint8_t byte1;
294 if ((bytes.byte0 == bytes.byte1) && (bytes.byte0 == bytes.byte2) && (bytes.byte0 == bytes.byte3)) {
300 if ((bytes.byte0 == bytes.byte2) && !(bytes.byte1 | bytes.byte3)) {
306 if ((bytes.byte1 == bytes.byte3) && !(bytes.byte0 | bytes.byte2)) {
307 encoding.immediate = bytes.byte1;
/macosx-10.9.5/tcl-102/tk/tk/xlib/X11/
H A DXlib.h1016 unsigned char byte1; member in struct:__anon13726
/macosx-10.9.5/tcl-102/tk84/tk/xlib/X11/
H A DXlib.h1025 unsigned char byte1; member in struct:__anon13905

Completed in 407 milliseconds

12