Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for i64big (0.12 sec)

  1. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                "-Porg.gradle.java.installations.auto-download=false",
                "\"-Porg.gradle.java.installations.paths=%linux.java7.oracle.64bit%,%linux.java8.oracle.64bit%,%linux.java11.openjdk.64bit%,%linux.java17.openjdk.64bit%,%linux.java21.openjdk.64bit%,%linux.java22.openjdk.64bit%\"",
                "\"-Porg.gradle.performance.branchName=%teamcity.build.branch%\"",
                "\"-Porg.gradle.performance.db.url=%performance.db.url%\"",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/asmb.go

    func writePlan9Header(buf *OutBuf, magic uint32, entry int64, is64Bit bool) {
    	if is64Bit {
    		magic |= 0x00008000
    	}
    	buf.Write32b(magic)
    	buf.Write32b(uint32(Segtext.Filelen))
    	buf.Write32b(uint32(Segdata.Filelen))
    	buf.Write32b(uint32(Segdata.Length - Segdata.Filelen))
    	buf.Write32b(uint32(symSize))
    	if is64Bit {
    		buf.Write32b(uint32(entry &^ 0x80000000))
    	} else {
    		buf.Write32b(uint32(entry))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/internal/itoa/itoa.go

    	}
    	return Uitoa(uint(val))
    }
    
    // Uitoa converts val to a decimal string.
    func Uitoa(val uint) string {
    	if val == 0 { // avoid string allocation
    		return "0"
    	}
    	var buf [20]byte // big enough for 64bit value base 10
    	i := len(buf) - 1
    	for val >= 10 {
    		q := val / 10
    		buf[i] = byte('0' + val - q*10)
    		i--
    		val = q
    	}
    	// val < 10
    	buf[i] = byte('0' + val)
    	return string(buf[i:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 02:53:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho_update_uuid.go

    	if _, err := io.Copy(outf, exef); err != nil {
    		return err
    	}
    
    	// Locate the portion of the binary containing the load commands.
    	cmdOffset := unsafe.Sizeof(exem.FileHeader)
    	if is64bit := exem.Magic == macho.Magic64; is64bit {
    		// mach_header_64 has one extra uint32.
    		cmdOffset += unsafe.Sizeof(exem.Magic)
    	}
    	if _, err := outf.Seek(int64(cmdOffset), 0); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue23781.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 260 bytes
    - Viewed (0)
  6. src/strconv/itoa.go

    	if base < 2 || base > len(digits) {
    		panic("strconv: illegal AppendInt/FormatInt base")
    	}
    	// 2 <= base && base <= len(digits)
    
    	var a [64 + 1]byte // +1 for sign of 64bit value in base 2
    	i := len(a)
    
    	if neg {
    		u = -u
    	}
    
    	// convert bits
    	// We use uint values where we can because those will
    	// fit into a single register even on a 32bit machine.
    	if base == 10 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/scalar_test.go

    		sc.SetUniformBytes(in[:])
    		repr := sc.Bytes()
    		if !isReduced(repr) {
    			return false
    		}
    		scBig := bigIntFromLittleEndianBytes(repr[:])
    		inBig := bigIntFromLittleEndianBytes(in[:])
    		return inBig.Mod(inBig, mod).Cmp(scBig) == 0
    	}
    	if err := quick.Check(f, quickCheckConfig(1024)); err != nil {
    		t.Error(err)
    	}
    }
    
    func TestScalarSetBytesWithClamping(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/386enc.s

    	// Included to simplify validation of CL that fixed that.
    	MOVQ (AX), M0  // 0f6f00
    	MOVQ M0, 8(SP) // 0f7f442408
    	MOVQ 8(SP), M0 // 0f6f442408
    	MOVQ M0, (AX)  // 0f7f00
    	MOVQ M0, (BX)  // 0f7f03
    	// On non-64bit arch, Go asm allowed uint32 offsets instead of int32.
    	// These tests check that property for backwards-compatibility.
    	MOVL 2147483648(AX), AX  // 8b8000000080
    	MOVL -2147483648(AX), AX // 8b8000000080
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/math/rand/gen_cooked.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // This program computes the value of rngCooked in rng.go,
    // which is used for seeding all instances of rand.Source.
    // a 64bit and a 63bit version of the array is printed to
    // the standard output.
    
    package main
    
    import "fmt"
    
    const (
    	length = 607
    	tap    = 273
    	mask   = (1 << 63) - 1
    	a      = 48271
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/Os.kt

     * limitations under the License.
     */
    
    package common
    
    enum class Arch(val suffix: String, val nameOnLinuxWindows: String, val nameOnMac: String) {
        AMD64("64bit", "amd64", "x86_64"),
        AARCH64("aarch64", "aarch64", "aarch64");
    
        fun asName() = name.lowercase().toCapitalized()
    }
    
    enum class Os(
        val agentRequirement: String,
        val androidHome: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top