Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 221 for Dword1 (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/memmove_loong64.s

    	BNE	R7, out1
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R6, R7
    	BNE	R7, out1
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R9, R8
    	BEQ	R8, words1
    	ADDV	$-1, R5
    	MOVB	(R5), R7
    	ADDV	$-1, R9
    	MOVB	R7, (R9)
    	JMP	-6(PC)
    
    words1:
    	// do 8 bytes at a time if there is room
    	ADDV	$7, R4, R6 // R6 is start pointer+7
    
    	PCALIGN	$16
    	SGTU	R9, R6, R8
    	BEQ	R8, out1
    	ADDV	$-8, R5
    	MOVV	(R5), R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/runtime/memmove_mips64x.s

    	BNE	R4, out1
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R3, R4
    	BNE	R4, out1
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R6, R5
    	BEQ	R5, words1
    	ADDV	$-1, R2
    	MOVB	(R2), R4
    	ADDV	$-1, R6
    	MOVB	R4, (R6)
    	JMP	-6(PC)
    
    words1:
    	// do 8 bytes at a time if there is room
    	ADDV	$7, R1, R3 // R3 is start pointer+7
    
    	SGTU	R6, R3, R5
    	BEQ	R5, out1
    	ADDV	$-8, R2
    	MOVV	(R2), R4
    	ADDV	$-8, R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  8. maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java

            result.add(sb.toString());
            // lines
            for (String line : lines) {
                sb.setLength(0);
                String[] words = S_FILTER.split(line);
                for (String word : words) {
                    if (sb.length() >= remainder - word.length() - (sb.length() > 0 ? 1 : 0)) {
                        repeat(sb, ' ', remainder - sb.length());
                        result.add(BOX_CHAR + " " + sb + " " + BOX_CHAR);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 07 20:55:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/assembler/groovy/src/main/asm_i386_masm/sum.s

        .386
        .model    flat
    
    PUBLIC    _sum
    _TEXT     SEGMENT
    _sum    PROC
        mov    eax, DWORD PTR 4[esp]
        add    eax, DWORD PTR 8[esp]
        ret    0
    _sum    ENDP
    _TEXT   ENDS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 184 bytes
    - Viewed (0)
  10. pkg/util/strcase/camelcase.go

    		t = append(t, 'X')
    		i++
    	}
    	// Invariant: if the next letter is lower case, it must be converted
    	// to upper case.
    	// That is, we process a word at a time, where words are marked by _, - or
    	// upper case letter. Digits are treated as words.
    	for ; i < len(s); i++ {
    		c := s[i]
    		if isWordSeparator(c) {
    			// Skip the separate and capitalize the next letter.
    			continue
    		}
    		if isASCIIDigit(c) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
Back to top