Home
last modified time | relevance | path

Searched refs:bit (Results 51 – 75 of 511) sorted by relevance

12345678910>>...21

/illumos-gate/usr/src/uts/common/io/pciex/
H A Dpcie_fault.c67 #define PF_FIRST_AER_ERR(bit, adv) \ argument
70 #define HAS_AER_LOGS(pfd_p, bit) \ argument
77 #define HAS_SAER_LOGS(pfd_p, bit) \ argument
90 uint32_t bit; /* Error bit */ member
1562 uint32_t bit; in pf_analyse_error_tbl() local
1565 bit = row->bit; in pf_analyse_error_tbl()
1566 if (!(err_reg & bit)) in pf_analyse_error_tbl()
1616 (bit == PCIE_AER_UCE_UR)) in pf_analyse_ca_ur()
1626 if (bit == PCIE_AER_UCE_UR) in pf_analyse_ca_ur()
1635 if (HAS_AER_LOGS(pfd_p, bit) && in pf_analyse_ca_ur()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dbitmap.c74 ulong_t bit; in bt_availbit() local
78 bit = 1; in bt_availbit()
79 for (bx = 0; bx <= maxbit; bx++, bit <<= 1) { in bt_availbit()
80 if (!(word & bit)) { in bt_availbit()
/illumos-gate/usr/src/uts/common/io/mii/
H A Dmiipriv.h35 #define PHY_SET(phy, reg, bit) \ argument
36 phy_write(phy, reg, phy_read(phy, reg) | (bit))
37 #define PHY_CLR(phy, reg, bit) \ argument
38 phy_write(phy, reg, phy_read(phy, reg) & ~(bit))
/illumos-gate/usr/src/cmd/ctrun/
H A Dctrun.c111 bit2str(optvect_t *options, uint_t bit) in bit2str() argument
114 if (options->opt_value == bit) in bit2str()
151 uint_t bit; in opt2bits() local
167 bit = 0; in opt2bits()
169 bit = str2bit(options, match, str, len); in opt2bits()
170 if (bit == 0 && strncmp(str, "none", len) == 0) { in opt2bits()
174 } else if (bit == 0) { in opt2bits()
183 if (result & bit) in opt2bits()
187 result |= bit; in opt2bits()
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/documentation/
H A Dosal.txt326 Set a bit in a bitmap; Logically *bitmap |= (1ULL << bit)
329 Clears a bit in a bitmap; Logically *bitmap &= ~(1ULL << bit)
333 Logically !!(*bitmap & (1ULL << bit))
338 *bitmap &= ~(1ULL << bit)
343 *bitmap ^= (1ULL << bit)
346 Returns the bit-index of the first non-set bit in a bitmap of
348 (bit < length) && !(*bitmap & (1ULL << bit))
351 Returns the bit-index of the first non-set bit in a bitmap of
353 (bit < length) && (*bitmap & (1ULL << bit)).
670 …purpose of to define OS specific data type cast which can be used on both 32 bit and 64 bit platfo…
[all …]
/illumos-gate/usr/src/uts/i86pc/i86hvm/io/xpv/
H A Devtchn.c142 ulong_t bit = 1UL << (ev & ((1UL << EVTCHN_SHIFT) - 1)); in hypervisor_unmask_event() local
151 atomic_and_ulong(maskp, ~bit); in hypervisor_unmask_event()
164 ulong_t bit = 1UL << (ev & ((1UL << EVTCHN_SHIFT) - 1)); in hypervisor_mask_event() local
168 atomic_or_ulong(maskp, bit); in hypervisor_mask_event()
175 ulong_t bit = 1UL << (ev & ((1UL << EVTCHN_SHIFT) - 1)); in hypervisor_clear_event() local
179 atomic_and_ulong(maskp, ~bit); in hypervisor_clear_event()
/illumos-gate/usr/src/cmd/sgs/moe/common/
H A Dmoe.msg37 \t[-32]\t\tonly expand 32-bit objects\n\
38 \t[-64]\t\tonly expand 64-bit objects\n\
42 @ MSG_PRE_32 "32-bit: "
43 @ MSG_PRE_64 "64-bit: "
/illumos-gate/usr/src/uts/intel/io/vmm/intel/
H A Dvmx_msr.c166 int byte, bit; in vmx_msr_bitmap_change_access() local
176 bit = msr & 0x7; in vmx_msr_bitmap_change_access()
179 bitmap[byte] &= ~(1 << bit); in vmx_msr_bitmap_change_access()
181 bitmap[byte] |= 1 << bit; in vmx_msr_bitmap_change_access()
186 bitmap[byte] &= ~(1 << bit); in vmx_msr_bitmap_change_access()
188 bitmap[byte] |= 1 << bit; in vmx_msr_bitmap_change_access()
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash_page.c1099 bit = hashp->hdr.last_freed &
1101 j = bit / BITS_PER_MAP;
1102 bit = bit & ~(BITS_PER_MAP - 1);
1104 bit = 0;
1107 for (; bit <= in_use_bits; j++, bit += BITS_PER_MAP)
1192 bit = bit + first_free(freep[j]);
1193 SETBIT(freep, bit);
1195 tmp1 = bit;
1203 bit = 1 + bit + (i * (hashp->hdr.bsize << BYTE_SHIFT));
1204 if (bit >= hashp->hdr.last_freed)
[all …]
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A DREADME.tests48 - SHELL=/usr/bin/i86/ksh93 # 32-bit i386
49 - SHELL=/usr/bin/amd64/ksh93 # 64-bit AMD64
50 - SHELL=/usr/bin/sparcv7/ksh93 # 32-bit SPARC
51 - SHELL=/usr/bin/sparcv9/ksh93 # 64-bit SPARC
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dasm-goto-lables.c1 static inline int __static_cpu_has(unsigned char bit) in __static_cpu_has() argument
14 : : "i" (bit) : : t_no, ble); in __static_cpu_has()
/illumos-gate/usr/src/uts/common/sys/sata/adapters/si3124/
H A Dsi3124var.h240 #define CLEAR_BIT(tag, bit) (tag &= ~(0x1<<bit)) argument
241 #define SET_BIT(tag, bit) (tag |= (0x1<<bit)) argument
/illumos-gate/usr/src/uts/i86pc/io/pcplusmp/
H A Dapic_regops.c170 int bit = ((0x1 << (X2APIC_ENABLE_BIT + 1)) | in apic_local_mode() local
175 if ((apic_base_msr & bit) == bit) in apic_local_mode()
/illumos-gate/usr/src/uts/intel/io/acpica/
H A Dosl_ml.S64 andl $0xFFFFFFFE, %edx / Clear pending bit
65 btsl $1, %edx / Check and set owner bit
66 adcl $0, %edx / If owned, set pending bit
/illumos-gate/usr/src/lib/libnsl/yp/
H A Ddbm.c469 long bit; in hashinc() local
472 bit = hmask+1; in hashinc()
474 bit >>= 1; in hashinc()
475 if (bit == 0) in hashinc()
477 if ((hash&bit) == 0) in hashinc()
478 return (hash|bit); in hashinc()
479 hash &= ~bit; in hashinc()
/illumos-gate/usr/src/cmd/sendmail/libmilter/
H A Dengine.c557 unsigned long bit; local
562 bit = SMFIP_NR_CONN;
565 bit = SMFIP_NR_HELO;
568 bit = SMFIP_NR_MAIL;
580 bit = SMFIP_NR_HDR;
583 bit = SMFIP_NR_EOH;
589 bit = 0;
592 return bit;
616 unsigned long bit; local
621 if (bit != 0 && (ctx->ctx_pflags & bit) != 0 && r != SMFIS_NOREPLY)
[all …]
/illumos-gate/usr/src/ucblib/libdbm/
H A Ddbm.c483 long bit; in hashinc() local
486 bit = hmask+1; in hashinc()
488 bit >>= 1; in hashinc()
489 if (bit == 0) in hashinc()
491 if ((hash&bit) == 0) in hashinc()
492 return (hash|bit); in hashinc()
493 hash &= ~bit; in hashinc()
/illumos-gate/usr/src/uts/sparc/v9/ml/
H A Dsyscall_trap.S65 ! If the trapping thread has the address mask bit set, then it's
165 ! If handler returns two ints, then we need to split the 64-bit
169 andcc %l4, SE_32RVAL2, %g0 ! check for 2 x 32-bit
228 andn %g1, %g3, %g1 ! clear carry bit for no error
301 ! If the trapping thread has the address mask bit clear, then it's
387 lduw [%l1 + G1_OFF + 4], %g1 ! get 32-bit code
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vsqrt.S632 ! bit = hx >> 15;
633 ! bit &= 32;
639 ! ind1 += bit;
745 and %i1,32,%i4 ! (5_1) bit &= 32;
780 and %i2,32,%i4 ! (0_0) bit &= 32;
821 and %g5,32,%i4 ! (1_0) bit &= 32;
865 and %g1,32,%i4 ! (2_0) bit &= 32;
912 and %i3,32,%i4 ! (3_0) bit &= 32;
965 and %l0,32,%i4 ! (4_0) bit &= 32;
1033 and %i1,32,%i4 ! (5_1) bit &= 32;
[all …]
H A D__vatan.S125 .word 0x80000000,0x0 !mask for fp sign bit
175 ldd [%o0+7*WSIZE],%f32 !mask for sign bit
201 sethi %hi(0x80000000),%o7 !mask for sign bit
212 fand %f34,%f32,%f40 !sign0 = sign bit
221 sethi %hi(0x8000),%o7 !rounding bit
294 /*26*/ sethi %hi(0x80000000),%o7 !mask for sign bit
304 fand %f36,%f32,%f42 !sign1 = sign bit
315 sethi %hi(0x8000),%o7 !rounding bit
374 /*47*/ sethi %hi(0x80000000),%o7 !mask for sign bit
384 fand %f38,%f32,%f44 !sign2 = sign bit
[all …]
/illumos-gate/usr/src/uts/intel/io/vmm/io/
H A Dvatpic.c137 int bit, pin; in vatpic_get_highest_isrpin() local
141 bit = (1 << pin); in vatpic_get_highest_isrpin()
143 if (atpic->reg_isr & bit) { in vatpic_get_highest_isrpin()
149 (atpic->reg_imr & bit) != 0) { in vatpic_get_highest_isrpin()
164 int bit, pin, tmp; in vatpic_get_highest_irrpin() local
185 bit = 1 << pin; in vatpic_get_highest_irrpin()
191 if ((serviced & bit) != 0) in vatpic_get_highest_irrpin()
198 if ((atpic->reg_irr & bit) != 0 && (atpic->reg_imr & bit) == 0) in vatpic_get_highest_irrpin()
/illumos-gate/usr/src/grub/grub-0.97/docs/
H A Dmultiboot.texi151 This specification is targeted toward free 32-bit operating systems
198 be an ordinary 32-bit executable file in whatever file format the
297 The type of unsigned 8-bit data.
300 The type of unsigned 16-bit data. Because the target architecture is
350 bytes of the OS image, and must be longword (32-bit) aligned. In
442 have a 32-bit unsigned sum of zero.
535 Must contain the 32-bit physical address of the Multiboot
588 changed them during the switch to 32-bit mode.
671 @sc{bios} disk, then this field must not be present (bit 3 must be
715 If bit 3 of the @samp{flags} is set, then the @samp{mods} fields
[all …]
/illumos-gate/usr/src/uts/sun4u/io/px/
H A Dpx_err_impl.h44 uint_t bit; member
106 ddi_fm_error_t *derr, uint_t bit, char *class_name)
112 #define PX_ERR_IS_PRI(bit) (bit < 32) argument
/illumos-gate/usr/src/test/zfs-tests/tests/functional/largest_pool/
H A Dlargest_pool.cfg36 # a volume that great than 1TB on 32-bit
38 # - max volume size is 1TB on 32-bit systems (s10u2)
41 export VOL_LIMIT_KEYWORD1="1TB on 32-bit"
/illumos-gate/usr/src/test/os-tests/tests/secflags/
H A Dsecflags_aslr.sh69 check 32bit /opt/os-tests/tests/secflags/addrs-32
71 check 64bit /opt/os-tests/tests/secflags/addrs-64

12345678910>>...21