Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for nbits (0.07 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    [{"Name":"ADC","Bits":"0|0|0|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"ADC <Wd>, <Wn>, <Wm>","Code":"","Alias":""},
    {"Name":"ADC","Bits":"1|0|0|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"64-bit variant","Syntax":"ADC <Xd>, <Xn>, <Xm>","Code":"","Alias":""},
    {"Name":"ADCS","Bits":"0|0|1|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"ADCS <Wd>, <Wn>, <Wm>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p521_fiat64.go

    	x105, x104 = bits.Mul64(x1, arg2[6])
    	var x106 uint64
    	var x107 uint64
    	x107, x106 = bits.Mul64(x1, arg2[5])
    	var x108 uint64
    	var x109 uint64
    	x109, x108 = bits.Mul64(x1, arg2[4])
    	var x110 uint64
    	var x111 uint64
    	x111, x110 = bits.Mul64(x1, arg2[3])
    	var x112 uint64
    	var x113 uint64
    	x113, x112 = bits.Mul64(x1, arg2[2])
    	var x114 uint64
    	var x115 uint64
    	x115, x114 = bits.Mul64(x1, arg2[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    		if c.instoffset >= 0 {
    			sbits := bits.Len64(uint64(c.instoffset))
    			switch {
    			case sbits <= 5:
    				return C_ZCON + sbits
    			case sbits <= 8:
    				return C_U8CON
    			case sbits <= 15:
    				return C_U15CON
    			case sbits <= 16:
    				return C_U16CON
    			case sbits <= 31:
    				return C_U31CON
    			case sbits <= 32:
    				return C_U32CON
    			case sbits <= 33:
    				return C_S34CON
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// computes arg0 rotate (L=left,R=right) arg1 bits.
    		// Bits are rotated within the low (Q=64,L=32,W=16,B=8) bits of the register.
    		// For *const versions use auxint instead of arg1 as the rotate amount. auxint must be in the range 0 to (Q=63,L=31,W=15,B=7) inclusive.
    		// x==L versions zero the upper 32 bits of the destination register.
    		// x==W and x==B versions leave the upper bits unspecified.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// FCVTZS <Wd>, <Sn>, #<fbits>
    	{0xffff0000, 0x1e180000, FCVTZS, instArgs{arg_Wd, arg_Sn, arg_immediate_fbits_min_1_max_32_sub_64_scale}, nil},
    	// FCVTZS <Xd>, <Sn>, #<fbits>
    	{0xffff0000, 0x9e180000, FCVTZS, instArgs{arg_Xd, arg_Sn, arg_immediate_fbits_min_1_max_64_sub_64_scale}, nil},
    	// FCVTZS <Wd>, <Dn>, #<fbits>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  6. src/reflect/value.go

    }
    
    // makeInt returns a Value of type t equal to bits (possibly truncated),
    // where t is a signed or unsigned int type.
    func makeInt(f flag, bits uint64, t Type) Value {
    	typ := t.common()
    	ptr := unsafe_New(typ)
    	switch typ.Size() {
    	case 1:
    		*(*uint8)(ptr) = uint8(bits)
    	case 2:
    		*(*uint16)(ptr) = uint16(bits)
    	case 4:
    		*(*uint32)(ptr) = uint32(bits)
    	case 8:
    		*(*uint64)(ptr) = bits
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    	op_RISBG   uint32 = 0xEC55 // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS
    	op_RISBGN  uint32 = 0xEC59 // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS
    	op_RISBHG  uint32 = 0xEC5D // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS HIGH
    	op_RISBLG  uint32 = 0xEC51 // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS LOW
    	op_RLL     uint32 = 0xEB1D // FORMAT_RSY1       ROTATE LEFT SINGLE LOGICAL (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Less8  (Const8  <t> [math.MaxInt8 -1]) x) => (Eq8  x (Const8  <t> [math.MaxInt8 ]))
    
    // Ands clear bits. Ors set bits.
    // If a subsequent Or will set all the bits
    // that an And cleared, we can skip the And.
    // This happens in bitmasking code like:
    //   x &^= 3 << shift // clear two old bits
    //   x  |= v << shift // set two new bits
    // when shift is a small constant and v ends up a constant 3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    // x is known to be a bitcon
    // a bitcon is a sequence of n ones at low bits (i.e. 1<<n-1), right rotated
    // by R bits, and repeated with period of 64, 32, 16, 8, 4, or 2.
    // it is encoded in logical instructions with 3 bitfields
    // N (1 bit) : R (6 bits) : S (6 bits), where
    // N=1           -- period=64
    // N=0, S=0xxxxx -- period=32
    // N=0, S=10xxxx -- period=16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "defaultMode": {
              "description": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
              "format": "int32",
              "type": "integer"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top