Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 525 for Dword1 (0.14 sec)

  1. src/runtime/asm_ppc64x.h

    // is not needed.
    #ifdef GOOS_linux
    #ifdef GOARCH_ppc64
    #define GO_PPC64X_HAS_FUNCDESC
    #define DEFINE_PPC64X_FUNCDESC(funcname, localfuncname)	\
    	TEXT	funcname(SB),NOSPLIT|NOFRAME,$0		\
    		DWORD	$localfuncname(SB)		\
    		DWORD	$0				\
    		DWORD	$0
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/math/big/arith_decl_pure.go

    		fn = subVWlarge
    	}
    	return fn(z, x, y)
    }
    
    func shlVU(z, x []Word, s uint) (c Word) {
    	return shlVU_g(z, x, s)
    }
    
    func shrVU(z, x []Word, s uint) (c Word) {
    	return shrVU_g(z, x, s)
    }
    
    func mulAddVWW(z, x []Word, y, r Word) (c Word) {
    	return mulAddVWW_g(z, x, y, r)
    }
    
    func addMulVVW(z, x []Word, y Word) (c Word) {
    	return addMulVVW_g(z, x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. src/runtime/syscall_windows.go

    		p.dstStackSize = alignUp(p.dstStackSize, uintptr(t.Align_))
    		return
    	}
    
    	// In the C ABI, we're already on a word boundary.
    	// Also, sub-word-sized fastcall register arguments
    	// are stored to the least-significant bytes of the
    	// argument word and all supported Windows
    	// architectures are little endian, so srcStackOffset
    	// is already pointing to the right place for smaller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

                List<String> words = new ArrayList<>();
    
                if (postfixParts.size() > 1) {
                    String postfixHead = postfixParts.get(0);
                    prefixParts.add(postfixHead);
                    postfixParts.remove(postfixHead);
                }
    
                for (String prefixPart : prefixParts) {
                    if (!prefixPart.equals(Iterables.getLast(words, null))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. src/math/floor_386.s

    	FMOVD   x+0(FP), F0  // F0=x
    	FSTCW   -2(SP)       // save old Control Word
    	MOVW    -2(SP), AX
    	ANDW    $0xf3ff, AX
    	ORW     $0x0800, AX  // Rounding Control set to +Inf
    	MOVW    AX, -4(SP)   // store new Control Word
    	FLDCW   -4(SP)       // load new Control Word
    	FRNDINT              // F0=Ceil(x)
    	FLDCW   -2(SP)       // load old Control Word
    	FMOVDP  F0, ret+8(FP)
    	RET
    
    // func archFloor(x float64) float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_ko.properties

    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    labels.advance_search_not_queries=None of these words
    labels.advance_search_filetype=File Type
    labels.advance_search_filetype_default=All Type
    labels.advance_search_filetype_html=HTML
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/anames.go

    	"SLBIE",
    	"SLBMFEE",
    	"SLBMFEV",
    	"SLBMTE",
    	"SLD",
    	"SLDCC",
    	"SRD",
    	"SRAD",
    	"SRADCC",
    	"SRDCC",
    	"EXTSWSLI",
    	"EXTSWSLICC",
    	"STDCCC",
    	"TD",
    	"SETB",
    	"DWORD",
    	"REMD",
    	"REMDU",
    	"HRFID",
    	"POPCNTD",
    	"POPCNTW",
    	"POPCNTB",
    	"CNTTZW",
    	"CNTTZWCC",
    	"CNTTZD",
    	"CNTTZDCC",
    	"COPY",
    	"PASTECC",
    	"DARN",
    	"MADDHD",
    	"MADDHDU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/math/big/arith_arm.s

    	RET
    
    
    // func shrVU(z, x []Word, s uint) (c Word)
    TEXT ·shrVU(SB),NOSPLIT,$0
    	MOVW	z_len+4(FP), R5
    	TEQ	$0, R5
    	BEQ	X6
    
    	MOVW	z+0(FP), R1
    	MOVW	x+12(FP), R2
    	ADD	R5<<2, R1, R5
    	MOVW	s+24(FP), R3
    	TEQ	$0, R3	// shift 0 is special
    	BEQ Y6
    	SUB	$4, R5	// stop one word early
    	MOVW	$32, R4
    	SUB	R3, R4
    	MOVW	$0, R7
    
    	// first word
    	MOVW.P	4(R2), R6
    	MOVW	R6>>R3, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CaseFormat.java

      }
    
      abstract String normalizeWord(String word);
    
      String normalizeFirstWord(String word) {
        return normalizeWord(word);
      }
    
      private static String firstCharOnlyToUpper(String word) {
        return word.isEmpty()
            ? word
            : Ascii.toUpperCase(word.charAt(0)) + Ascii.toLowerCase(word.substring(1));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/CaseFormat.java

      }
    
      abstract String normalizeWord(String word);
    
      String normalizeFirstWord(String word) {
        return normalizeWord(word);
      }
    
      private static String firstCharOnlyToUpper(String word) {
        return word.isEmpty()
            ? word
            : Ascii.toUpperCase(word.charAt(0)) + Ascii.toLowerCase(word.substring(1));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 6.3K bytes
    - Viewed (0)
Back to top