Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,211 for isuint32 (0.13 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    	return op | i&0xFFFF | uint32(r2&31)<<21 | uint32(r3&31)<<16
    }
    
    func OP_SRR(op uint32, s uint32, r2 int16, r3 int16) uint32 {
    	return op | (s&31)<<6 | uint32(r2&31)<<16 | uint32(r3&31)<<11
    }
    
    func OP_FRRR(op uint32, r1 int16, r2 int16, r3 int16) uint32 {
    	return op | uint32(r1&31)<<16 | uint32(r2&31)<<11 | uint32(r3&31)<<6
    }
    
    func OP_JMP(op uint32, i uint32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    			}
    		}
    	}
    }
    
    func OP(x uint32, y uint32) uint32 {
    	return x<<3 | y<<0
    }
    
    func SP(x uint32, y uint32) uint32 {
    	return x<<29 | y<<26
    }
    
    func OP_TEN(x uint32, y uint32) uint32 {
    	return x<<21 | y<<10
    }
    
    // r1 -> rk
    // r2 -> rj
    // r3 -> rd
    func OP_RRR(op uint32, r1 uint32, r2 uint32, r3 uint32) uint32 {
    	return op | (r1&0x1F)<<10 | (r2&0x1F)<<5 | (r3&0x1F)<<0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    	op_AE      uint32 = 0x7A00 // FORMAT_RX1        ADD NORMALIZED (short HFP)
    	op_AEB     uint32 = 0xED0A // FORMAT_RXE        ADD (short BFP)
    	op_AEBR    uint32 = 0xB30A // FORMAT_RRE        ADD (short BFP)
    	op_AER     uint32 = 0x3A00 // FORMAT_RR         ADD NORMALIZED (short HFP)
    	op_AFI     uint32 = 0xC209 // FORMAT_RIL1       ADD IMMEDIATE (32)
    	op_AG      uint32 = 0xE308 // FORMAT_RXY1       ADD (64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	return o<<26 | xo<<4 | oe<<11
    }
    
    func OPDQ(o uint32, xo uint32, oe uint32) uint32 {
    	return o<<26 | xo | oe<<4
    }
    
    func OPVX(o uint32, xo uint32, oe uint32, rc uint32) uint32 {
    	return o<<26 | xo | oe<<11 | rc&1
    }
    
    func OPVC(o uint32, xo uint32, oe uint32, rc uint32) uint32 {
    	return o<<26 | xo | oe<<11 | (rc&1)<<10
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/internal/byteorder/byteorder.go

    func LeAppendUint16(b []byte, v uint16) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    	)
    }
    
    func LeUint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24
    }
    
    func LePutUint32(b []byte, v uint32) {
    	_ = b[3] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/panicprint.go

    type MyFloat64 float64
    type MyInt int
    type MyInt8 int8
    type MyInt16 int16
    type MyInt32 int32
    type MyInt64 int64
    type MyString string
    type MyUint uint
    type MyUint8 uint8
    type MyUint16 uint16
    type MyUint32 uint32
    type MyUint64 uint64
    type MyUintptr uintptr
    
    func panicCustomComplex64() {
    	panic(MyComplex64(0.11 + 3i))
    }
    
    func panicCustomComplex128() {
    	panic(MyComplex128(32.1 + 10i))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/crypto/aes/block.go

    	s0 = uint32(sbox0[t0>>24])<<24 | uint32(sbox0[t1>>16&0xff])<<16 | uint32(sbox0[t2>>8&0xff])<<8 | uint32(sbox0[t3&0xff])
    	s1 = uint32(sbox0[t1>>24])<<24 | uint32(sbox0[t2>>16&0xff])<<16 | uint32(sbox0[t3>>8&0xff])<<8 | uint32(sbox0[t0&0xff])
    	s2 = uint32(sbox0[t2>>24])<<24 | uint32(sbox0[t3>>16&0xff])<<16 | uint32(sbox0[t0>>8&0xff])<<8 | uint32(sbox0[t1&0xff])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/universe.go

    	name     string
    	etype    Kind
    	sameas32 Kind
    	sameas64 Kind
    }{
    	{"int", TINT, TINT32, TINT64},
    	{"uint", TUINT, TUINT32, TUINT64},
    	{"uintptr", TUINTPTR, TUINT32, TUINT64},
    }
    
    func InitTypes(defTypeName func(sym *Sym, typ *Type) Object) {
    	if PtrSize == 0 {
    		base.Fatalf("InitTypes called before PtrSize was set")
    	}
    
    	SlicePtrOffset = 0
    	SliceLenOffset = RoundUp(SlicePtrOffset+int64(PtrSize), int64(PtrSize))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. src/math/big/floatmarsh.go

    	z.acc = Accuracy((b>>3)&3) - 1
    	z.form = form((b >> 1) & 3)
    	z.neg = b&1 != 0
    	z.prec = byteorder.BeUint32(buf[2:])
    
    	if z.form == finite {
    		if len(buf) < 10 {
    			return errors.New("Float.GobDecode: buffer too small for finite form float")
    		}
    		z.exp = int32(byteorder.BeUint32(buf[6:]))
    		z.mant = z.mant.setBytes(buf[10:])
    	}
    
    	if oldPrec != 0 {
    		z.mode = oldMode
    		z.SetPrec(uint(oldPrec))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/internal/coverage/encodemeta/encode.go

    	copy(digest[:], b.h.Sum(nil))
    	mh := coverage.MetaSymbolHeader{
    		// hash and length initially zero, will be back-patched
    		PkgPath:    uint32(b.pkgpath),
    		PkgName:    uint32(b.pkgname),
    		ModulePath: uint32(b.modpath),
    		NumFiles:   uint32(b.stab.Nentries()),
    		NumFuncs:   uint32(len(b.funcs)),
    		MetaHash:   digest,
    	}
    	if b.debug {
    		fmt.Fprintf(os.Stderr, "=-= writing header: %+v\n", mh)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 17:16:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top