Searched refs:bits (Results 1 - 25 of 954) sorted by relevance

1234567891011>>

/macosx-10.10.1/ksh-23/ksh/src/lib/libast/stdio/
H A Dfwide.c33 f->bits &= ~SF_MB;
34 f->bits |= SF_WC;
38 f->bits &= ~SF_WC;
39 f->bits |= SF_MB;
41 if (f->bits & SF_MB)
43 if (f->bits & SF_WC)
47 f->bits |= SF_MB;
/macosx-10.10.1/dtrace-147/test/tst/common/bitfields/
H A Derr.D_DECL_BFTYPE.badtype.d40 struct bits {
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/backward/
H A Dalloc.h47 #include <bits/c++config.h>
48 #include <bits/allocator.h>
H A Dpair.h60 #include <bits/c++config.h>
61 #include <bits/stl_pair.h>
H A Dtempbuf.h65 #include <bits/cpp_type_traits.h>
66 #include <bits/stl_construct.h>
67 #include <bits/stl_uninitialized.h>
/macosx-10.10.1/libstdcxx-104.1/src/
H A Dwstring-inst.cc34 #include <bits/c++config.h>
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dgthr.h97 #include <bits/gthr-tpf.h>
99 #include <bits/gthr-posix.h>
101 #include <bits/gthr-posix95.h>
103 #include <bits/gthr-dce.h>
105 #include <bits/gthr-solaris.h>
114 #include <bits/gthr-default.h>
118 #include <bits/gthr-single.h>
H A Dc++io.h43 #include <bits/gthr.h>
/macosx-10.10.1/Libc-1044.1.2/gdtoa/FreeBSD/
H A Dgdtoa-strtopdd.c58 ULong bits[4]; local
75 rv = strtodg(s, sp, fpi, &exp, bits, loc);
87 u->L[_1] = (bits[1] >> 21 | bits[2] << 11) & 0xffffffffL;
88 u->L[_0] = (bits[2] >> 21) | ((bits[3] << 11) & 0xfffff)
91 if (bits[1] &= 0x1fffff) {
92 i = hi0bits(bits[1]) - 11;
100 bits[1] = bits[
[all...]
H A Dgdtoa-strtord.c36 ULtod(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
38 ULtod(ULong *L, ULong *bits, Long exp, int k)
48 L[_1] = bits[0];
49 L[_0] = bits[1];
54 L[_1] = bits[0];
55 L[_0] = (bits[1] & ~0x100000) | ((exp + 0x3ff + 52) << 20);
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DTinyBloomFilter.h51 inline void TinyBloomFilter::add(Bits bits) argument
53 m_bits |= bits;
61 inline bool TinyBloomFilter::ruleOut(Bits bits) const
63 if (!bits)
66 if ((bits & m_bits) != bits)
/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DCallFrameInlines.h34 inline uint32_t CallFrame::Location::encode(CallFrame::Location::TypeTag tag, uint32_t bits) argument
37 ASSERT(!(bits & s_shiftedMask));
39 return bits | (tag << s_shift);
43 bits = (bits << s_shift);
44 ASSERT(!(bits & s_mask));
45 bits |= tag;
46 return bits;
50 inline uint32_t CallFrame::Location::decode(uint32_t bits) argument
53 return bits
62 encodeAsBytecodeOffset(uint32_t bits) argument
77 encodeAsCodeOriginIndex(uint32_t bits) argument
84 isBytecodeLocation(uint32_t bits) argument
89 isCodeOriginIndex(uint32_t bits) argument
114 setLocationAsRawBits(unsigned bits) argument
[all...]
/macosx-10.10.1/libmalloc-53.1.1/src/
H A Dbitarray.h34 typedef uint64_t *bitarray_t; // array of bits, assumed to be mostly 0
35 typedef uint32_t index_t; // we limit the number of bits to be a 32-bit quantity
41 // For a bitarray with 1<<log_size bits, returns the number of bytes needed to contain the whole bitarray
44 // creates a bitarray with 1<<log_size bits, all initialized to 0.
47 extern bool bitarray_get(bitarray_t bits, unsigned log_size, index_t index);
49 extern bool bitarray_set(bitarray_t bits, unsigned log_size, index_t index);
52 extern bool bitarray_zap(bitarray_t bits, unsigned log_size, index_t index);
55 extern index_t bitarray_first_set(const bitarray_t bits, unsigned log_size);
56 // Returns the index first bit that's 1, plus 1, or 0 if all the bits are zero
58 extern bool bitarray_zap_first_set(bitarray_t bits, unsigne
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DRandomNumber.cpp43 uint32_t bits = cryptographicallyRandomNumber(); local
44 return static_cast<double>(bits) / (static_cast<double>(std::numeric_limits<uint32_t>::max()) + 1.0);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/string/
H A Dfmtip4.c28 * and optional prefix bits (if 0 <= bits <= 32)
32 fmtip4(register uint32_t addr, int bits) argument
40 if (bits >= 0 && bits <= 32)
41 sfsprintf(buf + i, z - i, "/%d", bits);
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-layout.mm60 compress_layout(const uint8_t *bits, size_t bitmap_bits, BOOL weak)
78 uint8_t bit = (uint8_t)((bits[i/8] >> (i % 8)) & 1);
84 uint8_t bit = (uint8_t)((bits[i/8] >> (i % 8)) & 1);
125 static void set_bits(layout_bitmap bits, size_t which, size_t count)
129 for (bit = which; bit < which + count && bit < bits.bitCount; bit++) {
130 bits.bits[bit/8] |= 1 << (bit % 8);
132 if (bit == bits.bitCount && bit < which + count) {
138 static void clear_bits(layout_bitmap bits, size_t which, size_t count)
142 for (bit = which; bit < which + count && bit < bits
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dfilemode.c171 ftypelet (bits)
172 long bits;
175 if (S_ISBLK (bits))
178 if (S_ISCHR (bits))
180 if (S_ISDIR (bits))
182 if (S_ISREG (bits))
185 if (S_ISFIFO (bits))
189 if (S_ISLNK (bits))
193 if (S_ISSOCK (bits))
197 if (S_ISMPC (bits))
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_montgomery_calc_normalization.c26 int x, bits, res; local
28 /* how many bits of last digit does b use */
29 bits = mp_count_bits (b) % DIGIT_BIT;
32 if ((res = mp_2expt (a, (b->used - 1) * DIGIT_BIT + bits - 1)) != MP_OKAY) {
37 bits = 1;
42 for (x = bits - 1; x < (int)DIGIT_BIT; x++) {
/macosx-10.10.1/Libc-1044.1.2/fbsdcompat/
H A D_fpmath.h61 } bits; member in union:IEEEl2bits
64 #define mask_nbit_l(u) ((u).bits.manh &= 0x7fffffff)
70 (a)[0] = (uint32_t)(u).bits.manl; \
71 (a)[1] = (uint32_t)(u).bits.manh; \
89 } bits; member in union:IEEEl2bits
99 (a)[0] = (uint32_t)(u).bits.manl; \
100 (a)[1] = (uint32_t)(u).bits.manh; \
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Dfilemode.c63 /* Get definitions for the file permission bits. */
183 ftypelet (unsigned long bits)
185 if (S_ISDIR (bits))
187 if (S_ISLNK (bits))
189 if (S_ISBLK (bits))
191 if (S_ISCHR (bits))
193 if (S_ISSOCK (bits))
195 if (S_ISFIFO (bits))
200 if ((bits & S_IFMT) == S_IFMPC
201 || (bits
182 ftypelet(unsigned long bits) argument
[all...]
/macosx-10.10.1/Libc-1044.1.2/net/FreeBSD/
H A Dinet_net_ntop.c44 static char * inet_net_ntop_ipv4(const u_char *src, int bits, char *dst,
46 static char * inet_net_ntop_ipv6(const u_char *src, int bits, char *dst,
51 * inet_net_ntop(af, src, bits, dst, size)
60 inet_net_ntop(af, src, bits, dst, size)
63 int bits;
69 return (inet_net_ntop_ipv4(src, bits, dst, size));
71 return (inet_net_ntop_ipv6(src, bits, dst, size));
80 * inet_net_ntop_ipv4(src, bits, dst, size)
92 inet_net_ntop_ipv4(src, bits, dst, size)
94 int bits;
171 inet_net_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size) argument
[all...]
/macosx-10.10.1/rsync-45/rsync/zlib/
H A Dinffast.c46 state->bits < 8
56 - The maximum input bits used by a length/distance pair is 15 bits for the
57 length code, 5 bits for the length extra, 15 bits for the distance code,
58 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
85 unsigned bits; /* local strm->bits */ local
91 unsigned op; /* code bits, operatio
[all...]
/macosx-10.10.1/sudo-73/src/zlib/
H A Dinffast.c46 state->bits < 8
56 - The maximum input bits used by a length/distance pair is 15 bits for the
57 length code, 5 bits for the length extra, 15 bits for the distance code,
58 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
85 unsigned bits; /* local strm->bits */ local
91 unsigned op; /* code bits, operatio
[all...]
/macosx-10.10.1/xnu-2782.1.97/libkern/zlib/
H A Dinffast.c74 state->bits < 8
84 - The maximum input bits used by a length/distance pair is 15 bits for the
85 length code, 5 bits for the length extra, 15 bits for the distance code,
86 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
113 unsigned bits; /* local strm->bits */ local
119 unsigned op; /* code bits, operatio
[all...]
/macosx-10.10.1/zlib-55/zlib/
H A Dinffast.c51 state->bits < 8
61 - The maximum input bits used by a length/distance pair is 15 bits for the
62 length code, 5 bits for the length extra, 15 bits for the distance code,
63 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
90 unsigned bits; /* local strm->bits */ local
96 unsigned op; /* code bits, operatio
[all...]

Completed in 175 milliseconds

1234567891011>>