Searched refs:bit (Results 201 - 225 of 576) sorted by relevance

1234567891011>>

/macosx-10.9.5/vim-53/runtime/syntax/
H A Djess.vim41 syn keyword jessFunc batch bind bit-and
42 syn keyword jessFunc bit-not bit-or bload
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DAPFloat.cpp47 bit. */
661 // We always have to clear the QNaN bit to make it an SNaN.
666 // conventionally, this is the next bit down from the QNaN bit.
670 // We always have to set the QNaN bit to make it a QNaN.
970 unsigned int bit, i, partsCount;
1001 bit = precision - APInt::tcMSB(divisor, partsCount) - 1;
1002 if (bit) {
1003 exponent += bit;
1004 APInt::tcShiftLeft(divisor, partsCount, bit);
[all...]
/macosx-10.9.5/dyld-239.4/launch-cache/
H A DMachOFileAbstraction.hpp38 uint8_t uuid[16]; /* the 128-bit uuid */
110 // This abstraction layer makes every mach-o file look like a 64-bit mach-o file with native endianness
714 // The bit fields are always in big-endian order (see mach-o/reloc.h)
887 int bit = 0; local
894 if (bit >= 64 || slice << bit >> bit != slice)
897 result |= (slice << bit);
898 bit += 7;
909 int bit local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/apps/
H A Dbitmap-editor47 # * bits - XBM Parse Result: hexadecimal bit string of pixels.
68 # Table for conversion from hexadecimal nibbles to binary bit
322 foreach bit [split "$bits($n2)$bits($n1)" ""] { ;# Note the endian
323 set BM(b,$row,$col) $bit
324 if {$bit} {
338 # ShowBitCell -- draws the "on" bit in a specified cell
342 .c create oval [CellXY $row $col] -fill black -tag [list bit o($row,$col)]
727 .c delete bit
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkImgGIF.c42 * strings consist of 4 6-bit characters -> 3 8 bit bytes. A-Z, a-z, 0-9, +
148 #define BitSet(byte, bit) (((byte) & (bit)) == (bit))
1103 * into 8 bit bytes, left to right, for example:
1873 unsigned int bit;
1882 for (bno=nbits-1,bit=((unsigned int)1)<<bno ; bno>=0 ; bno--,bit>>=1) {
1883 *bp++ = (v & bit)
1849 unsigned int bit; local
[all...]
H A DtkImgPhoto.c37 * A signed 8-bit integral type. If chars are unsigned and the compiler isn't
53 * An unsigned 32-bit integral type, used for pixel values. We use int rather
106 pixel redValues[256]; /* Maps 8-bit values of red intensity to a
113 /* Maps 8-bit intensities to quantized
162 unsigned char *pix32; /* Local storage for 32-bit image. */
247 * Bit definitions for use with ParseSubcommandOptions: each bit is set in the
249 * is allowed for the current photo image subcommand. On return, the bit is
1638 int index, c, bit, currentBit, length;
1662 bit = 0;
1667 if (bit !
1633 int index, c, bit, currentBit, length; local
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkImgGIF.c37 * base64 strings consist of 4 6-bit characters -> 3 8 bit bytes.
135 #define BitSet(byte, bit) (((byte) & (bit)) == (bit))
1033 * packed into 8 bit bytes, left to right, for example:
1787 unsigned int bit;
1796 for (bno=nbits-1,bit=((unsigned int)1)<<bno ; bno>=0 ; bno--,bit>>=1) {
1797 *bp++ = (v & bit)
1773 unsigned int bit; local
[all...]
H A DtkImgPhoto.c39 * A signed 8-bit integral type. If chars are unsigned and the compiler
55 * An unsigned 32-bit integral type, used for pixel values.
110 pixel redValues[256]; /* Maps 8-bit values of red intensity
117 /* Maps 8-bit intensities to quantized
166 unsigned char *pix32; /* Local storage for 32-bit image. */
251 * Each bit is set in the allowedOptions parameter on a call to
253 * photo image subcommand. On return, the bit is set in the options
1631 int index, c, bit, currentBit;
1657 bit = 0;
1662 if (bit !
1626 int index, c, bit, currentBit; local
[all...]
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-802_11.c1751 /* There may be a problem w/ AP not having this bit set */
1853 print_radiotap_field(struct cpack_state *s, u_int32_t bit, u_int8_t *flags, argument
1866 switch (bit) {
1963 /* this bit indicates a field whose
1965 * proceed. Just print the bit number.
1967 printf("[bit %u] ", bit);
1979 switch (bit) {
2004 * if the 0x80 bit is set *and* the remaining
2181 enum ieee80211_radiotap_type bit; local
[all...]
/macosx-10.9.5/network_cmds-433/ping6.tproj/
H A Dping6.c177 #define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
178 #define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
179 #define SET(bit) (A(bit) |= B(bit))
180 #define CLR(bit) (A(bit)
[all...]
/macosx-10.9.5/CPANInternal-140/PathTools/
H A Dppport.h4623 char bit = *s; local
4624 if (bit == '0' || bit == '1') {
4631 value = (value << 1) | (bit - '0');
4646 value_nv += (NV)(bit - '0');
4649 if (bit == '_' && len && allow_underscores && (bit = s[1])
4650 && (bit == '0' || bit == '1'))
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage/
H A Dppport.h4557 char bit = *s; local
4558 if (bit == '0' || bit == '1') {
4565 value = (value << 1) | (bit - '0');
4580 value_nv += (NV)(bit - '0');
4583 if (bit == '_' && len && allow_underscores && (bit = s[1])
4584 && (bit == '0' || bit == '1'))
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage-0.03/
H A Dppport.h4557 char bit = *s; local
4558 if (bit == '0' || bit == '1') {
4565 value = (value << 1) | (bit - '0');
4580 value_nv += (NV)(bit - '0');
4583 if (bit == '_' && len && allow_underscores && (bit = s[1])
4584 && (bit == '0' || bit == '1'))
/macosx-10.9.5/CPANInternal-140/XML-LibXML/
H A Dppport.h4683 char bit = *s; local
4684 if (bit == '0' || bit == '1') {
4691 value = (value << 1) | (bit - '0');
4706 value_nv += (NV)(bit - '0');
4709 if (bit == '_' && len && allow_underscores && (bit = s[1])
4710 && (bit == '0' || bit == '1'))
/macosx-10.9.5/dyld-239.4/src/
H A DImageLoaderMachOCompressed.cpp45 // relocation_info.r_length field has value 3 for 64-bit executables and value 2 for 32-bit executables
66 int bit = 0; local
73 if (bit > 63)
74 dyld::throwf("uleb128 too big for uint64, bit=%d, result=0x%0llX", bit, result);
76 result |= (slice << bit);
77 bit += 7;
87 int bit = 0; local
93 result |= (((int64_t)(byte & 0x7f)) << bit);
[all...]
/macosx-10.9.5/ntfs-83/kext/
H A Dntfs_lcnalloc.c157 u8 pass, done_zones, search_zone, bit; local
263 * bmp_pos is the current bit position inside the bitmap. We use
338 bit = 1 << (lcn & 7);
339 ntfs_debug("bit 0x%x.", bit);
340 /* If the bit is already set, go onto the next one. */
341 if (*byte & bit) {
364 ntfs_debug("First free bit is at LCN "
377 /* Allocate the bitmap bit. */
378 *byte |= bit;
[all...]
/macosx-10.9.5/CPANInternal-140/Digest-SHA/
H A DSHA.pm270 To calculate the digest of an n-bit message where I<n> is not a
272 the 446-bit message consisting of the bit-string "110" repeated
281 Note that for larger bit-strings, it's more efficient to use the
352 Provided your C compiler supports a 64-bit type (e.g. the I<long
356 64-bit operations.
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ucdata/
H A Dformat.txt102 To swap a 16-bit value:
105 To swap a 32-bit value:
242 can be specified because the NumCCLNodes is usually a 16-bit number.
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dledger.c95 * and setting the inuse bit. This means that the lt_entries field can be
96 * safely dereferenced if you hold either the lock or the inuse bit. The
97 * inuse bit exists solely to allow us to swap in a new, larger entries
99 * Accordingly, the inuse bit should never be held for longer than it takes
168 static uint32_t flag_set(volatile uint32_t *flags, uint32_t bit);
169 static uint32_t flag_clear(volatile uint32_t *flags, uint32_t bit);
377 /* make entry inactive by removing active bit */
399 flag_set(volatile uint32_t *flags, uint32_t bit) argument
401 return (OSBitOrAtomic(bit, flags));
405 flag_clear(volatile uint32_t *flags, uint32_t bit) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/
H A DHeader.pm252 (The AD bit is only set on answers where signatures have been
254 and is allowed to set the bit by policy.)
/macosx-10.9.5/CPANInternal-140/YAML-Syck/lib/YAML/
H A DSyck.pm205 byte strings with high-bit set will be dumped with backslash escaping.
214 scalars containing high-bit bytes.
/macosx-10.9.5/Heimdal-323.92.1/packages/windows/installer/
H A DNTMakefile160 ! message Excluding 32-bit components from installer
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dstrftime.c742 to mind that your weeknumber() function compiles a little bit nicer
751 How nicer it depends on a compiler, of course, but always a tiny bit.
/macosx-10.9.5/configd-596.15/Plugins/Logger/
H A Dlogger.c175 register int bit; local
188 for (bit = 7; bit != 0; bit--, plen++) {
189 if (!(name[byte] & (1 << bit))) {
194 for (; bit != 0; bit--) {
195 if (name[byte] & (1 << bit)) {
/macosx-10.9.5/cron-39/doc/
H A DINSTALL23 Edit config.h. The stuff I expect you to change is down a bit from the

Completed in 463 milliseconds

1234567891011>>