Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bfxil_bfm_64m_bitfield_cond (0.18 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/condition.go

    }
    
    func bfi_bfm_64m_bitfield_cond(instr uint32) bool {
    	return (instr>>5)&0x1f != 0x1f && uint8((instr>>10)&0x3f) < uint8((instr>>16)&0x3f)
    }
    
    func bfxil_bfm_32m_bitfield_cond(instr uint32) bool {
    	return uint8((instr>>10)&0x3f) >= uint8((instr>>16)&0x3f)
    }
    
    func bfxil_bfm_64m_bitfield_cond(instr uint32) bool {
    	return uint8((instr>>10)&0x3f) >= uint8((instr>>16)&0x3f)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// BFXIL <Xd>, <Xn>, #<lsb>, #<width>
    	{0xffc00000, 0xb3400000, BFXIL, instArgs{arg_Xd, arg_Xn, arg_immediate_BFXIL_BFM_64M_bitfield_lsb_64_immr, arg_immediate_BFXIL_BFM_64M_bitfield_width_64_imms}, bfxil_bfm_64m_bitfield_cond},
    	// BFM <Xd>, <Xn>, #<immr>, #<imms>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
Back to top