HomeSort by relevance Sort by last modified time
    Searched defs:Bit (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/Omap35xxPkg/InterruptDxe/
HardwareInterrupt.c 127 UINTN Bit;
135 Bit = 1UL << (Source % 32);
137 MmioWrite32 (INTCPS_MIR_CLEAR(Bank), Bit);
161 UINTN Bit;
169 Bit = 1UL << (Source % 32);
171 MmioWrite32 (INTCPS_MIR_SET(Bank), Bit);
198 UINTN Bit;
210 Bit = 1UL << (Source % 32);
212 if ((MmioRead32(INTCPS_MIR(Bank)) & Bit) == Bit) {
    [all...]
  /device/linaro/bootloader/edk2/Omap35xxPkg/Library/DebugAgentTimerLib/
DebugAgentTimerLib.c 40 UINTN Bit;
46 Bit = 1UL << (gVector % 32);
48 MmioWrite32 (INTCPS_MIR_CLEAR(Bank), Bit);
57 UINTN Bit;
60 Bit = 1UL << (gVector % 32);
62 MmioWrite32 (INTCPS_MIR_SET(Bank), Bit);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/EmmcBlockIoPei/
EmmcHcMem.c 47 // each bit in the bit array represents EMMC_PEIM_MEM_UNIT
115 UINT8 Bit;
127 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
129 // If current bit is zero, the corresponding memory unit is
131 // Available counts the consective number of zero bit.
133 if (!EMMC_PEIM_MEM_BIT_IS_SET (Block->Bits[Byte], Bit)) {
140 EMMC_PEIM_NEXT_BIT (Byte, Bit);
143 EMMC_PEIM_NEXT_BIT (Byte, Bit);
147 StartBit = Bit;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/SdBlockIoPei/
SdHcMem.c 47 // each bit in the bit array represents SD_PEIM_MEM_UNIT
115 UINT8 Bit;
127 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
129 // If current bit is zero, the corresponding memory unit is
131 // Available counts the consective number of zero bit.
133 if (!SD_PEIM_MEM_BIT_IS_SET (Block->Bits[Byte], Bit)) {
140 SD_PEIM_NEXT_BIT (Byte, Bit);
143 SD_PEIM_NEXT_BIT (Byte, Bit);
147 StartBit = Bit;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsHcMem.c 47 // each bit in the bit array represents UFS_PEIM_MEM_UNIT
115 UINT8 Bit;
127 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
129 // If current bit is zero, the corresponding memory unit is
131 // Available counts the consective number of zero bit.
133 if (!UFS_PEIM_MEM_BIT_IS_SET (Block->Bits[Byte], Bit)) {
140 UFS_PEIM_NEXT_BIT (Byte, Bit);
143 UFS_PEIM_NEXT_BIT (Byte, Bit);
147 StartBit = Bit;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
UsbHcMem.c 51 // each bit in the bit array represents USBHC_MEM_UNIT
168 UINT8 Bit;
180 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
182 // If current bit is zero, the corresponding memory unit is
184 // Available counts the consective number of zero bit.
186 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
193 NEXT_BIT (Byte, Bit);
196 NEXT_BIT (Byte, Bit);
200 StartBit = Bit;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
UsbHcMem.c 59 // each bit in the bit array represents USBHC_MEM_UNIT
142 UINT8 Bit;
154 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
156 // If current bit is zero, the corresponding memory unit is
158 // Available counts the consective number of zero bit.
160 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
167 NEXT_BIT (Byte, Bit);
170 NEXT_BIT (Byte, Bit);
174 StartBit = Bit;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
UsbHcMem.c 50 // each bit in the bit array represents USBHC_MEM_UNIT
167 UINT8 Bit;
179 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
181 // If current bit is zero, the corresponding memory unit is
183 // Available counts the consective number of zero bit.
185 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
192 NEXT_BIT (Byte, Bit);
195 NEXT_BIT (Byte, Bit);
199 StartBit = Bit;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/
UsbHcMem.c 51 // each bit in the bit array represents USBHC_MEM_UNIT
127 UINT8 Bit;
139 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
141 // If current bit is zero, the corresponding memory unit is
143 // Available counts the consective number of zero bit.
145 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
152 NEXT_BIT (Byte, Bit);
154 NEXT_BIT (Byte, Bit);
158 StartBit = Bit;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbEnumer.c 1002 UINT8 Bit;
1026 Bit = 1;
1029 if (USB_BIT_IS_SET (HubIf->ChangeMap[Byte], USB_BIT (Bit))) {
1033 USB_NEXT_BIT (Byte, Bit);
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Icmp.c 462 address with useless bit clear.
472 UINT8 Bit;
488 Bit = (UINT8) (PrefixLength % 8);
495 if (Bit > 0) {
496 Mask = (UINT8) (0xFF << (8 - Bit));
Ip6Common.c 138 and returns the interface ID. Currently only 48-bit MAC address is supported by
162 // Currently only IEEE 802 48-bit MACs are supported to create link local address.
173 // 2. Invert the universal/local bit - bit 6 in network order
605 UINT8 Bit;
612 Bit = (UINT8) (PrefixLength % 8);
618 if (Bit > 0) {
619 Mask = (UINT8) (0xFF << (8 - Bit));
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
UsbHcMem.c 51 // each bit in the bit array represents USBHC_MEM_UNIT
168 UINT8 Bit;
180 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
182 // If current bit is zero, the corresponding memory unit is
184 // Available counts the consective number of zero bit.
186 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
193 NEXT_BIT (Byte, Bit);
196 NEXT_BIT (Byte, Bit);
200 StartBit = Bit;
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/
UsbHcMem.c 60 // each bit in the bit array represents USBHC_MEM_UNIT
144 UINT8 Bit;
156 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
158 // If current bit is zero, the corresponding memory unit is
160 // Available counts the consective number of zero bit.
162 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
169 NEXT_BIT (Byte, Bit);
172 NEXT_BIT (Byte, Bit);
176 StartBit = Bit;
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerMutate.cpp 53 int Bit = Rand(8);
54 char Mask = 1 << Bit;
56 if (X & (1 << Bit))
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86CodeEmitter.cpp 147 /// REX prefix which specifies 1) 64-bit instructions, 2) non-default operand
194 unsigned Bit = 0;
200 REX |= 1 << Bit;
201 Bit++;
215 unsigned Bit = 0;
220 REX |= 1 << Bit;
221 Bit++;
381 /// isDisp8 - Return true if this signed displacement fits in a 8-bit
390 // mechanism as 32-bit mode.
418 // In 64-bit static small code model, we could potentially emit absolute
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/
UsbHcMem.c 51 // each bit in the bit array represents USBHC_MEM_UNIT
159 UINT8 Bit;
171 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
173 // If current bit is zero, the corresponding memory unit is
175 // Available counts the consective number of zero bit.
177 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
184 NEXT_BIT (Byte, Bit);
187 NEXT_BIT (Byte, Bit);
191 StartBit = Bit;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 143 /// isDisp8 - Return true if this signed displacement fits in a 8-bit
159 /// operand should emit the 0x67 prefix byte in 64-bit mode due to a 32-bit
254 assert(is64BitMode() && "Rip-relative addressing requires 64-bit mode");
291 // If there is no base register and we're in 64-bit mode, we need a SIB
348 ForceDisp8 = true; // Make sure to force 8 bit disp if Base=EBP
397 // 1: Same as REX_R=0 (must be 1 in 32-bit mode)
398 // 0: Same as REX_R=1 (64 bit mode only)
405 // 1: Same as REX.X=0 (must be 1 in 32-bit mode)
406 // 0: Same as REX.X=1 (64-bit mode only
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
int.go 439 // The bit length of 0 is 0.
845 // Bit returns the value of the i'th bit of x. That is, it
846 // returns (x>>i)&1. The bit index i must be >= 0.
847 func (x *Int) Bit(i int) uint {
851 return uint(x.abs[0] & 1) // bit 0 is same for -x
856 panic("negative bit index")
860 return t.bit(uint(i)) ^ 1
863 return x.abs.bit(uint(i))
866 // SetBit sets z to x, with x's i'th bit set to b (0 or 1)
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
int.go 439 // The bit length of 0 is 0.
845 // Bit returns the value of the i'th bit of x. That is, it
846 // returns (x>>i)&1. The bit index i must be >= 0.
847 func (x *Int) Bit(i int) uint {
851 return uint(x.abs[0] & 1) // bit 0 is same for -x
856 panic("negative bit index")
860 return t.bit(uint(i)) ^ 1
863 return x.abs.bit(uint(i))
866 // SetBit sets z to x, with x's i'th bit set to b (0 or 1)
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
BootMaint.c 701 UINTN Bit;
    [all...]
UpdatePage.c     [all...]
Variable.c     [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List,
  /external/llvm/lib/Target/X86/Utils/
X86ShuffleDecode.cpp 244 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
245 // independently on 128-bit lanes.
264 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
265 // independently on 128-bit lanes.
291 /// \brief Decode a shuffle packed values at 128-bit granularity
331 // For 256/512-bit vectors the base of the shuffle is the 128-bit
334 // If the high bit (7) of the byte is set, the element is zeroed.
350 // mask applies to each 128-bit lane. There can never be more than
351 // 8 elements in a 128-bit lane with an immediate blend
    [all...]

Completed in 584 milliseconds

1 2 3 4