Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for i64big (0.15 sec)

  1. src/runtime/sizeof_test.go

    	"unsafe"
    )
    
    // Assert that the size of important structures do not change unexpectedly.
    
    func TestSizeof(t *testing.T) {
    	const _64bit = unsafe.Sizeof(uintptr(0)) == 8
    	var tests = []struct {
    		val    any     // type as a value
    		_32bit uintptr // size on 32bit platforms
    		_64bit uintptr // size on 64bit platforms
    	}{
    		{runtime.G{}, 272, 432},   // g, but exported for testing
    		{runtime.Sudog{}, 56, 88}, // sudog, but exported for testing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 892 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/sizeof_test.go

    )
    
    // Assert that the size of important structures do not change unexpectedly.
    
    func TestSizeof(t *testing.T) {
    	const _64bit = unsafe.Sizeof(uintptr(0)) == 8
    
    	var tests = []struct {
    		val    interface{} // type as a value
    		_32bit uintptr     // size on 32bit platforms
    		_64bit uintptr     // size on 64bit platforms
    	}{
    		{Sym{}, 32, 64},
    		{Type{}, 64, 104},
    		{Map{}, 12, 24},
    		{Forward{}, 20, 32},
    		{Func{}, 32, 56},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:08:44 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/siginfo_linux.go

    	Signo       int32
    	siErrnoCode                // Two int32 fields, swapped on MIPS.
    	_           [is64bit]int32 // Extra padding for 64-bit hosts only.
    
    	// End of common part. Beginning of signal-specific part.
    
    	Pid    int32
    	Uid    uint32
    	Status int32
    
    	// Pad to 128 bytes.
    	_ [128 - (6+is64bit)*4]byte
    }
    
    const (
    	// Possible values for SiginfoChild.Code field.
    	_CLD_EXITED    int32 = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. .teamcity/jdks.yaml

    version: v1
    jdks:
      - param: "linux.java7.oracle.64bit"
        os: linux
        arch: amd64
        vendor: "oracle"
        version: "7u80"
        sha256: bad9a731639655118740bee119139c1ed019737ec802a630dd7ad7aab4309623
      - params: [ "linux.java8.openjdk.64bit", "linux.java8.oracle.64bit" ]
        os: linux
        arch: amd64
        vendor: "oracle"
        version: "8u401"
        sha256: 19684fccd7ff32a8400e952a643f0049449a772ef63b8037d5b917cbd137d173
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

            val windowsPaths =
                "-Porg.gradle.java.installations.paths=%windows.java8.openjdk.64bit%,%windows.java11.openjdk.64bit%,%windows.java17.openjdk.64bit%,%windows.java21.openjdk.64bit%,%windows.java22.openjdk.64bit%"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. .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)
  7. 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)
  8. 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)
  9. src/encoding/xml/read_test.go

        <I8>  112  </I8>
        <I8Neg>  -112  </I8Neg>
        <I16>  6703  </I16>
        <I16Neg>  -6703  </I16Neg>
        <I32>  266703  </I32>
        <I32Neg>  -266703  </I32Neg>
        <I64>  266703  </I64>
        <I64Neg>  -266703  </I64Neg>
        <UI>   266703   </UI>
        <UI8>  112  </UI8>
        <UI16>  6703  </UI16>
        <UI32>  266703  </UI32>
        <UI64>  266703  </UI64>
        <F32>  266.703  </F32>
        <F32Neg>  -266.703  </F32Neg>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K 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