Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 524 for Twordv (0.14 sec)

  1. test/method5.go

    type tsmallp byte
    
    func (p *tsmallp) m(x int, b byte) (byte, int) { return b, x+int(*p) }
    
    type twordv uintptr
    
    func (v twordv) m(x int, b byte) (byte, int) { return b, x+int(v) }
    
    type twordp uintptr
    
    func (p *twordp) m(x int, b byte) (byte, int) { return b, x+int(*p) }
    
    type tbigv [2]uintptr
    
    func (v tbigv) m(x int, b byte) (byte, int) { return b, x+int(v[0])+int(v[1]) }
    
    type tbigp [2]uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.DWORD, Name: "Dword1", Value: uint64(0)},
    	{Type: registry.DWORD, Name: "Dword2", Value: uint64(1)},
    	{Type: registry.DWORD, Name: "Dword3", Value: uint64(0xff)},
    	{Type: registry.DWORD, Name: "Dword4", Value: uint64(0xffff)},
    	{Type: registry.QWORD, Name: "Qword1", Value: uint64(0)},
    	{Type: registry.QWORD, Name: "Qword2", Value: uint64(1)},
    	{Type: registry.QWORD, Name: "Qword3", Value: uint64(0xff)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/collateral/control.go

    	-e "s/${LWORD}_filedir${RWORD}/__istio_filedir/g" \
    	-e "s/${LWORD}_get_comp_words_by_ref${RWORD}/__istio_get_comp_words_by_ref/g" \
    	-e "s/${LWORD}__ltrim_colon_completions${RWORD}/__istio_ltrim_colon_completions/g" \
    	-e "s/${LWORD}compgen${RWORD}/__istio_compgen/g" \
    	-e "s/${LWORD}compopt${RWORD}/__istio_compopt/g" \
    	-e "s/${LWORD}declare${RWORD}/builtin declare/g" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    type Tsmallp byte
    
    func (p *Tsmallp) M(x int, b byte) (byte, int) { return b, x + int(*p) }
    
    type Twordv uintptr
    
    func (v Twordv) M(x int, b byte) (byte, int) { return b, x + int(v) }
    
    type Twordp uintptr
    
    func (p *Twordp) M(x int, b byte) (byte, int) { return b, x + int(*p) }
    
    type Tbigv [2]uintptr
    
    func (v Tbigv) M(x int, b byte) (byte, int) { return b, x + int(v[0]) + int(v[1]) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256block_amd64.s

    	JB   done_hash
    
    avx2_do_last_block:
    
    	VMOVDQU 0(INP), XWORD0
    	VMOVDQU 16(INP), XWORD1
    	VMOVDQU 32(INP), XWORD2
    	VMOVDQU 48(INP), XWORD3
    
    	VMOVDQU flip_mask<>(SB), BYTE_FLIP_MASK
    
    	VPSHUFB X_BYTE_FLIP_MASK, XWORD0, XWORD0
    	VPSHUFB X_BYTE_FLIP_MASK, XWORD1, XWORD1
    	VPSHUFB X_BYTE_FLIP_MASK, XWORD2, XWORD2
    	VPSHUFB X_BYTE_FLIP_MASK, XWORD3, XWORD3
    
    	MOVQ $K256<>(SB), TBL
    
    	JMP avx2_last_block_enter
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/registry/value.go

    // If value is not DWORD or QWORD, it will return the correct value
    // type and ErrUnexpectedType.
    func (k Key) GetIntegerValue(name string) (val uint64, valtype uint32, err error) {
    	data, typ, err2 := k.getValue(name, make([]byte, 8))
    	if err2 != nil {
    		return 0, typ, err2
    	}
    	switch typ {
    	case DWORD:
    		if len(data) != 4 {
    			return 0, typ, errors.New("DWORD value is not 4 bytes long")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. src/runtime/memmove_ppc64x.s

    nobackwardtail:
    	BC	4, 5, LR		// blelr cr1, return if DWORDS == 0
    	SRDCC	$2,DWORDS,QWORDS	// Compute number of 32B blocks and compare to 0
    	BNE	backward32setup		// If QWORDS != 0, start the 32B copy loop.
    
    backward24:
    	// DWORDS is a value between 1-3.
    	CMP	DWORDS, $2
    
    	MOVD 	-8(SRC), TMP
    	MOVD 	TMP, -8(TGT)
    	BC	12, 0, LR		// bltlr, return if DWORDS == 1
    
    	MOVD 	-16(SRC), TMP
    	MOVD 	TMP, -16(TGT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    			prefix = "dword "
    		case STOSQ, MOVSQ, CMPSQ, LODSQ, SCASQ:
    			prefix = "qword "
    		case LAR:
    			prefix = "word "
    		case BOUND:
    			if inst.Mode == 32 {
    				prefix = "qword "
    			} else {
    				prefix = "dword "
    			}
    		case PREFETCHW, PREFETCHNTA, PREFETCHT0, PREFETCHT1, PREFETCHT2, CLFLUSH:
    			prefix = "zmmword "
    		}
    		switch inst.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  9. src/math/big/nat_test.go

    	f.Fuzz(func(t *testing.T, x1, x2, x3, y1, y2, y3, m1, m2, m3 uint) {
    		if m1 == 0 && m2 == 0 && m3 == 0 {
    			return
    		}
    		x := new(Int).SetBits([]Word{Word(x1), Word(x2), Word(x3)})
    		y := new(Int).SetBits([]Word{Word(y1), Word(y2), Word(y3)})
    		m := new(Int).SetBits([]Word{Word(m1), Word(m2), Word(m3)})
    		out := new(Int).Exp(x, y, m)
    		want := new(Int).expSlow(x, y, m)
    		if out.Cmp(want) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/words.txt

    Russ Cox <******@****.***> 1648990796 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 426 bytes
    - Viewed (0)
Back to top