Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,387 for UInt32 (0.21 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    		case ABGTU:
    			ins.as, ins.rs1, ins.rs2 = ABLTU, uint32(p.From.Reg), uint32(p.Reg)
    		case ABGTZ:
    			ins.as, ins.rs1, ins.rs2 = ABLT, uint32(p.From.Reg), REG_ZERO
    		case ABLE:
    			ins.as, ins.rs1, ins.rs2 = ABGE, uint32(p.From.Reg), uint32(p.Reg)
    		case ABLEU:
    			ins.as, ins.rs1, ins.rs2 = ABGEU, uint32(p.From.Reg), uint32(p.Reg)
    		case ABLEZ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/strconv/makeisprint.go

    			if i+1 <= max && unicode.IsPrint(i+1) {
    				except = append(except, uint32(i))
    				continue
    			}
    			rang = append(rang, uint32(lo), uint32(i-1))
    			lo = -1
    		}
    		if i > max {
    			break
    		}
    		if lo < 0 && unicode.IsPrint(i) {
    			lo = i
    		}
    	}
    	return
    }
    
    func to16(x []uint32) []uint16 {
    	var y []uint16
    	for _, v := range x {
    		if uint32(uint16(v)) != v {
    			panic("bad 32->16 conversion")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

                (Mod32u <typ.UInt32> (Trunc64to32 <typ.UInt32> x) (Const32 <typ.UInt32> [int32(c)]))
                (Mul32 <typ.UInt32>
                  (Mod32u <typ.UInt32>
                    (Trunc64to32 <typ.UInt32> (Rsh64Ux64 <typ.UInt64> x (Const64 <typ.UInt64> [32])))
                    (Const32 <typ.UInt32> [int32(c)]))
                  (Const32 <typ.UInt32> [int32((1<<32)%c)])))
              (Const32 <typ.UInt32> [int32(c)]))))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. src/crypto/des/block.go

    // feistelBoxOnce.Do(initFeistelBox) first.
    func feistel(l, r uint32, k0, k1 uint64) (lout, rout uint32) {
    	var t uint32
    
    	t = r ^ uint32(k0>>32)
    	l ^= feistelBox[7][t&0x3f] ^
    		feistelBox[5][(t>>8)&0x3f] ^
    		feistelBox[3][(t>>16)&0x3f] ^
    		feistelBox[1][(t>>24)&0x3f]
    
    	t = ((r << 28) | (r >> 4)) ^ uint32(k0)
    	l ^= feistelBox[6][(t)&0x3f] ^
    		feistelBox[4][(t>>8)&0x3f] ^
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/debug/elf/file.go

    				Type:   ProgType(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Type):])),
    				Flags:  ProgFlag(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Flags):])),
    				Off:    uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Off):])),
    				Vaddr:  uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Vaddr):])),
    				Paddr:  uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Paddr):])),
    				Filesz: uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Filesz):])),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_andor_generic.go

    //go:linkname Anduintptr
    //go:linkname Oruintptr
    
    package atomic
    
    import _ "unsafe" // For linkname
    
    //go:nosplit
    func And32(ptr *uint32, val uint32) uint32 {
    	for {
    		old := *ptr
    		if Cas(ptr, old, old&val) {
    			return old
    		}
    	}
    }
    
    //go:nosplit
    func Or32(ptr *uint32, val uint32) uint32 {
    	for {
    		old := *ptr
    		if Cas(ptr, old, old|val) {
    			return old
    		}
    	}
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_generic.go

    // (simpleUpdate).
    func simpleMakeTable(poly uint32) *Table {
    	t := new(Table)
    	simplePopulateTable(poly, t)
    	return t
    }
    
    // simplePopulateTable constructs a Table for the specified polynomial, suitable
    // for use with simpleUpdate.
    func simplePopulateTable(poly uint32, t *Table) {
    	for i := 0; i < 256; i++ {
    		crc := uint32(i)
    		for j := 0; j < 8; j++ {
    			if crc&1 == 1 {
    				crc = (crc >> 1) ^ poly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/race.go

    func abigen_sync_atomic_SwapInt32(addr *int32, new int32) (old int32)
    
    //go:linkname abigen_sync_atomic_SwapInt64 sync/atomic.SwapInt64
    func abigen_sync_atomic_SwapInt64(addr *int64, new int64) (old int64)
    
    //go:linkname abigen_sync_atomic_SwapUint32 sync/atomic.SwapUint32
    func abigen_sync_atomic_SwapUint32(addr *uint32, new uint32) (old uint32)
    
    //go:linkname abigen_sync_atomic_SwapUint64 sync/atomic.SwapUint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. src/runtime/defs1_netbsd_arm64.go

    }
    
    type ucontextt struct {
    	uc_flags    uint32
    	uc_link     *ucontextt
    	uc_sigmask  sigset
    	uc_stack    stackt
    	_           [4]byte // EABI
    	uc_mcontext mcontextt
    	__uc_pad    [2]int32
    }
    
    type keventt struct {
    	ident     uint64
    	filter    uint32
    	flags     uint32
    	fflags    uint32
    	pad_cgo_0 [4]byte
    	data      int64
    	udata     *byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top