Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 527 for Dword2 (0.17 sec)

  1. 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)
  2. 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)
  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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryNamingScheme.java

        }
    
        private String makeName(String... words) {
            int expectedLength = 0;
            for (String word : words) {
                if (word != null) {
                    expectedLength += word.length();
                }
            }
            StringBuilder builder = new StringBuilder(expectedLength);
            for (String word : words) {
                if (word == null || word.length() == 0) {
                    continue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            toWords("") == ""
            toWords("word") == "word"
            toWords("twoWords") == "two words"
            toWords("TwoWords") == "two words"
            toWords("two words") == "two words"
            toWords("Two Words") == "two words"
            toWords(" Two  \t words\n") == "two words"
            toWords("two_words") == "two words"
            toWords("two.words") == "two words"
            toWords("two,words") == "two words"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top