Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 358 for Dword2 (0.42 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/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)
  6. 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)
  7. 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)
  8. src/mime/encodedword.go

    }
    
    // Decode decodes an RFC 2047 encoded-word.
    func (d *WordDecoder) Decode(word string) (string, error) {
    	// See https://tools.ietf.org/html/rfc2047#section-2 for details.
    	// Our decoder is permissive, we accept empty encoded-text.
    	if len(word) < 8 || !strings.HasPrefix(word, "=?") || !strings.HasSuffix(word, "?=") || strings.Count(word, "?") != 4 {
    		return "", errInvalidWord
    	}
    	word = word[2 : len(word)-2]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/Trie.java

        private final boolean terminal;
        private final Trie[] transitions;
    
        public static Trie from(String... words) {
            return from(Arrays.asList(words));
        }
    
        public static Trie from(Iterable<String> words) {
            Builder builder = new Builder();
            for (String word : words) {
                builder.addWord(word);
            }
            return builder.build();
        }
    
        public static Builder builder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/net/mail/message.go

    			words[len(words)-1] += word
    		} else {
    			words = append(words, word)
    		}
    		isPrevEncoded = isEncoded
    	}
    	// Ignore any error if we got at least one word.
    	if err != nil && len(words) == 0 {
    		debug.Printf("consumePhrase: hit err: %v", err)
    		return "", fmt.Errorf("mail: missing word in phrase: %v", err)
    	}
    	phrase = strings.Join(words, " ")
    	return phrase, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top