HomeSort by relevance Sort by last modified time
    Searched defs:RegShift (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/GicV2/
ArmGicV2Dxe.c 256 UINTN RegShift;
271 RegShift = (Index % 4) * 8;
274 ~(0xff << RegShift),
275 ARM_GIC_DEFAULT_PRIORITY << RegShift
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/GicV3/
ArmGicV3Dxe.c 241 UINTN RegShift;
265 RegShift = (Index % 4) * 8;
268 ~(0xff << RegShift),
269 ARM_GIC_DEFAULT_PRIORITY << RegShift
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/
ArmGicLib.c 190 UINTN RegShift;
196 RegShift = Source % 32;
203 MmioWrite32 (GicDistributorBase + ARM_GIC_ICDISER + (4 * RegOffset), 1 << RegShift);
212 MmioWrite32 (GicCpuRedistributorBase + ARM_GICR_CTLR_FRAME_SIZE + ARM_GICR_ISENABLER + (4 * RegOffset), 1 << RegShift);
225 UINTN RegShift;
231 RegShift = Source % 32;
238 MmioWrite32 (GicDistributorBase + ARM_GIC_ICDICER + (4 * RegOffset), 1 << RegShift);
246 MmioWrite32 (GicCpuRedistributorBase + ARM_GICR_CTLR_FRAME_SIZE + ARM_GICR_ICENABLER + (4 * RegOffset), 1 << RegShift);
259 UINTN RegShift;
266 RegShift = Source % 32;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
inst.go 77 // Endian, Imm, Mem, PCRel, Reg, RegList, RegShift, RegShiftReg.
337 // A RegShift is a register shifted by a constant.
338 type RegShift struct {
344 func (RegShift) IsArg() {}
346 func (r RegShift) String() string {
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
inst.go 77 // Endian, Imm, Mem, PCRel, Reg, RegList, RegShift, RegShiftReg.
337 // A RegShift is a register shifted by a constant.
338 type RegShift struct {
344 func (RegShift) IsArg() {}
346 func (r RegShift) String() string {

Completed in 234 milliseconds