Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for Qword6 (0.12 sec)

  1. src/index/suffixarray/sais2.go

    func length_8_64(text []byte, sa []int64, numLMS int) {
    	end := 0 // index of current LMS-substring end (0 indicates final LMS-substring)
    
    	// The encoding of N text bytes into a “length” word
    	// adds 1 to each byte, packs them into the bottom
    	// N*8 bits of a word, and then bitwise inverts the result.
    	// That is, the text sequence A B C (hex 41 42 43)
    	// encodes as ^uint64(0x42_43_44).
    	// LMS-substrings can never start or end with 0xFF.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    	{AMOVBU, C_TLS_IE, C_NONE, C_NONE, C_REG, C_NONE, 57, 16, 0, 0},
    	{AMOVWU, C_TLS_IE, C_NONE, C_NONE, C_REG, C_NONE, 57, 16, 0, 0},
    
    	{AWORD, C_LCON, C_NONE, C_NONE, C_NONE, C_NONE, 40, 4, 0, 0},
    	{AWORD, C_DCON, C_NONE, C_NONE, C_NONE, C_NONE, 61, 4, 0, 0},
    
    	{AMOVV, C_GOTADDR, C_NONE, C_NONE, C_REG, C_NONE, 65, 8, 0, 0},
    
    	{ATEQ, C_SCON, C_REG, C_NONE, C_REG, C_NONE, 15, 8, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm.s

    // DIVHW R0, R1: R1 / R0 -> R1
    	DIVHW	R0, R1               // 11f011e7
    	DIVUHW	R0, R1               // 11f031e7
    
    // misc
    	CLZ	R1, R2         // 112f6fe1
    	WORD	$0             // 00000000
    	WORD	$4294967295    // ffffffff
    	WORD	$2863311530    // aaaaaaaa
    	WORD	$1431655765    // 55555555
    	PLD	4080(R6)       // f0ffd6f5
    	PLD	-4080(R9)      // f0ff59f5
    	RFE	               // 0080fde8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    		}
    		y := unhex(c)
    		if x < 0 || y < 0 {
    			break
    		}
    		return x*16 + y, t, nil
    
    	// C escapes. There is no case 'b', to avoid misparsing
    	// the Perl word-boundary \b as the C backspace \b
    	// when in POSIX mode. In Perl, /\b/ means word-boundary
    	// but /[\b]/ means backspace. We don't support that.
    	// If you want a backspace, embed a literal backspace
    	// character or use \x08.
    	case 'a':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    	{AMOVW, C_REG, C_NONE, C_MREG, 37, 4, 0, 0, 0},
    	{AMOVV, C_REG, C_NONE, C_MREG, 37, 4, 0, sys.MIPS64, 0},
    	{AMOVW, C_MREG, C_NONE, C_REG, 38, 4, 0, 0, 0},
    	{AMOVV, C_MREG, C_NONE, C_REG, 38, 4, 0, sys.MIPS64, 0},
    
    	{AWORD, C_LCON, C_NONE, C_NONE, 40, 4, 0, 0, 0},
    
    	{AMOVW, C_REG, C_NONE, C_FCREG, 41, 4, 0, 0, 0},
    	{AMOVV, C_REG, C_NONE, C_FCREG, 41, 4, 0, sys.MIPS64, 0},
    	{AMOVW, C_FCREG, C_NONE, C_REG, 42, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

    /*
     * ELF definitions that are independent of architecture or word size.
     */
    
    /*
     * Note header.  The ".note" section contains an array of notes.  Each
     * begins with this header, aligned to a word boundary.  Immediately
     * following the note header is n_namesz bytes of name, padded to the
     * next word boundary.  Then comes n_descsz bytes of descriptor, again
     * padded to a word boundary.  The values of n_namesz and n_descsz do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/math/big/int_test.go

    	b.ResetTimer()
    	t := new(Int)
    	for i := 0; i < b.N; i++ {
    		t.Sqrt(n)
    	}
    }
    
    func benchmarkIntSqr(b *testing.B, nwords int) {
    	x := new(Int)
    	x.abs = rndNat(nwords)
    	t := new(Int)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		t.Mul(x, x)
    	}
    }
    
    func BenchmarkIntSqr(b *testing.B) {
    	for _, n := range sqrBenchSizes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            ]
        }
    
        @VersionCatalogProblemTestFor(
            VersionCatalogProblemId.RESERVED_ALIAS_NAME
        )
        def "disallows aliases for dependency which prefix clash with reserved words"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
                            library("$reservedName", "org:lib1:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
Back to top