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

1234567891011>>

/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_vector.h65 #include <bits/functexcept.h>
66 #include <bits/stl_algobase.h>
67 #include <bits/allocator.h>
68 #include <bits/stl_construct.h>
69 #include <bits/stl_uninitialized.h>
70 #include <bits/stl_vector.h>
71 #include <bits/stl_bvector.h>
74 # include <bits/vector.tcc>
H A Dstd_stack.h65 #include <bits/stl_algobase.h>
66 #include <bits/allocator.h>
67 #include <bits/stl_construct.h>
68 #include <bits/stl_uninitialized.h>
70 #include <bits/stl_stack.h>
H A Dstd_deque.h65 #include <bits/functexcept.h>
66 #include <bits/stl_algobase.h>
67 #include <bits/allocator.h>
68 #include <bits/stl_construct.h>
69 #include <bits/stl_uninitialized.h>
70 #include <bits/stl_deque.h>
73 # include <bits/deque.tcc>
H A Dstd_list.h65 #include <bits/functexcept.h>
66 #include <bits/stl_algobase.h>
67 #include <bits/allocator.h>
68 #include <bits/stl_construct.h>
69 #include <bits/stl_uninitialized.h>
70 #include <bits/stl_list.h>
73 # include <bits/list.tcc>
H A Dstd_queue.h65 #include <bits/c++config.h>
66 #include <bits/functexcept.h>
67 #include <bits/stl_algobase.h>
68 #include <bits/allocator.h>
69 #include <bits/stl_construct.h>
70 #include <bits/stl_uninitialized.h>
71 #include <bits/stl_heap.h>
72 #include <bits/stl_function.h>
75 #include <bits/stl_queue.h>
H A Dstd_string.h45 #include <bits/c++config.h>
46 #include <bits/stringfwd.h>
47 #include <bits/char_traits.h>
49 #include <bits/cpp_type_traits.h>
51 #include <bits/ostream_insert.h>
52 #include <bits/stl_iterator.h>
53 #include <bits/stl_function.h> // For less
54 #include <bits/basic_string.h>
58 # include <bits/basic_string.tcc>
H A Dstd_utility.h65 #include <bits/c++config.h>
66 #include <bits/stl_relops.h>
67 #include <bits/stl_pair.h>
H A Dstd_algorithm.h65 #include <bits/stl_algobase.h>
66 #include <bits/stl_construct.h>
67 #include <bits/stl_uninitialized.h>
68 #include <bits/stl_algo.h>
H A Dstd_ios.h45 #include <bits/char_traits.h> // For char_traits, streamoff, streamsize, fpos
47 #include <bits/localefwd.h> // For class locale
48 #include <bits/ios_base.h> // For ios_base declarations.
50 #include <bits/basic_ios.h>
H A Dstd_locale.h43 #include <bits/localefwd.h>
44 #include <bits/locale_classes.h>
45 #include <bits/locale_facets.h>
46 #include <bits/locale_facets.tcc>
H A Dstd_iterator.h65 #include <bits/c++config.h>
67 #include <bits/stl_iterator_base_types.h>
68 #include <bits/stl_iterator_base_funcs.h>
69 #include <bits/stl_iterator.h>
72 #include <bits/stream_iterator.h>
73 #include <bits/streambuf_iterator.h>
H A Dstd_map.h65 #include <bits/stl_tree.h>
66 #include <bits/stl_map.h>
67 #include <bits/stl_multimap.h>
H A Dstd_numeric.h65 #include <bits/c++config.h>
68 #include <bits/stl_function.h>
69 #include <bits/stl_numeric.h>
H A Dstd_set.h65 #include <bits/stl_tree.h>
66 #include <bits/stl_set.h>
67 #include <bits/stl_multiset.h>
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dfill6bits.c14 void fill6bits(bits, msk)
15 int bits;
18 if (bits == 0) {
31 if (bits == 128)
33 if (bits > 96) {
34 msk[3] = htonl(msk[3] << (128 - bits));
35 } else if (bits > 64) {
37 msk[2] = htonl(msk[2] << (96 - bits));
38 } else if (bits > 32) {
41 msk[1] = htonl(msk[1] << (64 - bits));
[all...]
/freebsd-11-stable/sys/dev/vxge/vxgehal/
H A Dvxgehal-regdefs.h38 #define VXGE_HAL_TITAN_ASIC_ID_GET_INITIAL_DEVICE_ID(bits) bVAL16(bits, 0)
39 #define VXGE_HAL_TITAN_ASIC_ID_GET_INITIAL_MAJOR_REVISION(bits) bVAL8(bits, 48)
40 #define VXGE_HAL_TITAN_ASIC_ID_GET_INITIAL_MINOR_REVISION(bits) bVAL8(bits, 56)
46 #define VXGE_HAL_VPATH_TO_FUNC_MAP_CFG1_GET_CFG1(bits) bVAL5(bits, 3)
48 #define VXGE_HAL_DEBUG_ASSIGNMENTS_GET_VHLABEL(bits) bVAL5(bits,
[all...]
/freebsd-11-stable/usr.sbin/ifmcstat/
H A Dprintb.c40 printb(const char *s, unsigned int v, const char *bits) argument
45 assert(bits != NULL);
46 if (*bits == 8)
50 bits++;
51 if (bits) {
53 while ((i = *bits++) != '\0') {
58 for (; (c = *bits) > 32; bits++)
61 for (; *bits > 32; bits
[all...]
/freebsd-11-stable/contrib/gdtoa/
H A Dstrtopdd.c46 ULong bits[4]; local
60 rv = strtodg(s, sp, fpi, &exp, bits);
69 u->L[_1] = (bits[1] >> 21 | bits[2] << 11) & 0xffffffffL;
70 u->L[_0] = (bits[2] >> 21) | ((bits[3] << 11) & 0xfffff)
73 if (bits[1] &= 0x1fffff) {
74 i = hi0bits(bits[1]) - 11;
82 bits[1] = bits[
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dfrexp.c39 switch (u.bits.exp) {
41 if ((u.bits.manl | u.bits.manh) == 0) {
45 *ex = u.bits.exp - 1536;
46 u.bits.exp = 1022;
52 *ex = u.bits.exp - 1022;
53 u.bits.exp = 1022;
H A Dfpclassify.c45 if (u.bits.exp == 0) {
46 if (u.bits.man == 0)
50 if (u.bits.exp == 255) {
51 if (u.bits.man == 0)
64 if (u.bits.exp == 0) {
65 if ((u.bits.manl | u.bits.manh) == 0)
69 if (u.bits.exp == 2047) {
70 if ((u.bits.manl | u.bits
[all...]
/freebsd-11-stable/lib/msun/src/
H A Ds_fmaxl.c45 if (u[0].bits.exp == 32767 && (u[0].bits.manh | u[0].bits.manl) != 0)
47 if (u[1].bits.exp == 32767 && (u[1].bits.manh | u[1].bits.manl) != 0)
51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[0].bits.sign ? y : x);
H A Ds_fminl.c45 if (u[0].bits.exp == 32767 && (u[0].bits.manh | u[0].bits.manl) != 0)
47 if (u[1].bits.exp == 32767 && (u[1].bits.manh | u[1].bits.manl) != 0)
51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[1].bits.sign ? y : x);
H A Ds_nextafterl.c42 if ((ux.bits.exp == 0x7fff &&
43 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl) != 0) ||
44 (uy.bits.exp == 0x7fff &&
45 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0))
49 ux.bits.manh = 0; /* return +-minsubnormal */
50 ux.bits.manl = 1;
51 ux.bits.sign = uy.bits
[all...]
H A Ds_isnormal.c39 return (u.bits.exp != 0 && u.bits.exp != 2047);
48 return (u.bits.exp != 0 && u.bits.exp != 255);
57 return (u.bits.exp != 0 && u.bits.exp != 32767);
/freebsd-11-stable/contrib/libstdc++/include/backward/
H A Dalloc.h47 #include <bits/c++config.h>
48 #include <bits/allocator.h>

Completed in 118 milliseconds

1234567891011>>