Searched defs:bits (Results 51 - 60 of 60) sorted by relevance

123

/osnet-11/usr/src/lib/cfgadm_plugins/ac/common/
H A Dmema.c121 * if the corresponding bit is set in 'bits' is set,
124 #define OPT_VAL_ARRAY_SIZE 32 /* # bits in 'bits' */
126 unsigned int bits; member in struct:__anon873
130 #define OPTSET_INIT(S) ((S).bits = 0)
132 #define OPTSET_SET_VAL(S, O, V) ((S).bits |= _OPT_TO_BIT(O), \
134 #define OPTSET_TEST(S, O) (((S).bits & _OPT_TO_BIT(O)) != 0)
136 #define OPTSET_IS_EMPTY(S) ((S).bits == 0)
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dsundance.c132 In general, only the important configuration values or bits changed
793 int bits = 32; local
796 while (--bits >= 0) {
814 /* Shift the read command bits out. */
824 /* Read the two transition, 16 data, and wire-idle bits. */
848 /* Shift the command bits out. */
857 /* Clear out extra bits. */
H A Dw89c840.c184 /* The bits in the Intr Status/Enable registers, mostly interrupt sources. */
323 Cache alignment bits 15:14 Burst length 13:8
496 with the "ownership" bits last. */
739 /* Shift the read command bits out. */
783 int bits = 32; local
786 while (--bits >= 0) {
803 /* Shift the read command bits out. */
812 /* Read the two transition, 16 data, and wire-idle bits. */
836 /* Shift the command bits out. */
845 /* Clear out extra bits
[all...]
H A Dvia-rhine.c446 bits; member in union:rhine_tx_desc::VTC_tx_status_tag
465 bits; member in union:rhine_tx_desc::VTC_tx_ctrl_tag
501 bits; member in union:rhine_rx_desc::VTC_rx_status_tag
514 bits; member in union:rhine_rx_desc::VTC_rx_ctrl_tag
669 /* Initialize the Rx and Tx rings, along with various 'dev' bits. */
683 tp->rx_ring[i].rx_status.bits.own_bit = 1;
684 tp->rx_ring[i].rx_ctrl.bits.rx_buf_size = 1536;
691 /* tp->rx_ring[i-1].rx_ctrl.bits.rx_buf_size =1518; */
971 /* (bits written are cleared?) */
1060 /* The lower four bits ar
[all...]
/osnet-11/usr/src/lib/libnsl/nss/
H A Dnetdir_inet.c1813 * Determine number of leading bits that are common between two addresses.
1814 * Only consider bits which fall within the prefix length plen.
1819 uint_t bits; local
1827 bits = i * 32;
1829 if (bits == IPV6_ABITS)
1833 * Find number of leading common bits in the word which might
1834 * have some common bits by searching for the first one from the left
1841 bits += 16;
1845 bits += 8;
1849 bits
[all...]
/osnet-11/usr/src/lib/hbaapi/common/
H A Dhbaapi.h64 typedef unsigned char HBA_UINT8; // Unsigned 8 bits
65 typedef char HBA_INT8; // Signed 8 bits
66 typedef unsigned short HBA_UINT16; // Unsigned 16 bits
67 typedef short HBA_INT16; // Signed 16 bits
68 typedef unsigned int HBA_UINT32; // Unsigned 32 bits
69 typedef int HBA_INT32; // Signed 32 bits
71 typedef HBA_UINT32 HBA_VOID32; // Opaque 32 bits
95 typedef unsigned char HBA_UINT8; /* Unsigned 8 bits */
96 typedef char HBA_INT8; /* Signed 8 bits */
97 typedef unsigned short HBA_UINT16; /* Unsigned 16 bits */
257 HBA_UINT8 bits[32]; /* 32 bytes of FC-4 per GS-2 */ member in struct:HBA_fc4types
[all...]
/osnet-11/usr/src/common/mpi/
H A Dmpi.c825 * of 64-bit numbers (least significant 64 bits in
1328 /* Loop over bits of each non-maximal digit */
1711 /* Loop over the bits of the lower-order digits */
2837 int bits; local
2842 bits = USED(mp) * DIGIT_BIT - 1;
2844 return s_mp_outlen(bits, radix);
3170 Multiply the integer by 2^d, where d is a number of bits. This
3183 /* bits to be shifted out of the top word */
3302 Remainder the integer by 2^d, where d is a number of bits. This
3315 /* Flush all the bits abov
4841 s_mp_outlen(int bits, int r) argument
[all...]
/osnet-11/usr/src/lib/libast/common/regex/
H A Dreglib.h179 #define setadd(p,c) bitset((p)->bits,c)
180 #define setclr(p,c) bitclr((p)->bits,c)
181 #define settst(p,c) bittst((p)->bits,c)
360 unsigned char bits[(UCHAR_MAX+1)/CHAR_BIT]; member in struct:Set_s
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dop.c2375 I32 bits; local
2538 bits = 32;
2540 bits = 16;
2542 bits = 8;
2545 cSVOPo->op_sv = (SV*)swash_init("utf8", "", listsv, bits, none);
/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c174 /* All codes must not exceed MAX_BITS bits */
263 /* Number of bits by which ins_h must be shifted at each input
376 /* Output buffer. bits are inserted starting at the bottom (least
377 * significant bits).
380 /* Number of valid bits in bi_buf. All bits above the last valid bit
650 * output size for (length,distance) codes is <= 32 bits (worst case
1482 /* Bit length codes must not exceed MAX_BL_BITS bits */
1488 /* repeat previous bit length 3-6 times (2 bits of repeat count) */
1491 /* repeat a zero length 3-10 times (3 bits o
1673 int bits; /* bit counter */ local
1860 int bits; /* bit length */ local
1942 int bits; /* bit index */ local
3610 #define bits macro
4080 #define bits macro
4398 #define bits macro
[all...]

Completed in 83 milliseconds

123