Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for my64 (0.26 sec)

  1. test/copy.go

    var input64 = make([]uint64, N)
    var output64 = make([]uint64, N)
    var inputS string
    var outputS = make([]uint8, N)
    
    type my8 []uint8
    type my16 []uint16
    type my32 []uint32
    type my32b []uint32
    type my64 []uint64
    type myS string
    
    func u8(i int) uint8 {
    	i = 'a' + i%26
    	return uint8(i)
    }
    
    func u16(ii int) uint16 {
    	var i = uint16(ii)
    	i = 'a' + i%26
    	i |= i << 8
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteCond_test.go

    		t.Errorf("'%#x + 13 <= 0' failed", x64)
    	}
    
    	if y64-11 > 0 {
    	} else {
    		t.Errorf("'%#x - 11 > 0' failed", y64)
    	}
    
    	if y64-13 >= 0 {
    	} else {
    		t.Errorf("'%#x - 13 >= 0' failed", y64)
    	}
    
    	if x64+19 > 0 {
    		t.Errorf("'%#x + 19 > 0' failed", x64)
    	}
    
    	if x64+23 >= 0 {
    		t.Errorf("'%#x + 23 >= 0' failed", x64)
    	}
    
    	if y64-19 < 0 {
    		t.Errorf("'%#x - 19 < 0' failed", y64)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 01:19:09 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureDescriptorBuilder.java

        // Host: x64
        // Target: x64
        LEGACY_AMD64_ON_AMD64("amd64", "bin/amd64", "lib/amd64", "ml64.exe"),
        AMD64_ON_AMD64("amd64", "bin/HostX64/x64", "lib/x64", "ml64.exe"),
    
        // Host: x64
        // Target: x86
        LEGACY_AMD64_ON_X86("amd64", "bin/x86_amd64", "lib/amd64", "ml64.exe") {
            @Override
            File getCrossCompilePath(File basePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. src/debug/dwarf/testdata/typedef.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Linux ELF:
    gcc -gdwarf-2 -m64 -c typedef.c && gcc -gdwarf-2 -m64 -o typedef.elf typedef.o
    
    OS X Mach-O:
    gcc -gdwarf-2 -m64 -c typedef.c -o typedef.macho
    gcc -gdwarf-4 -m64 -c typedef.c -o typedef.macho4
    */
    #include <complex.h>
    
    typedef volatile int* t_ptr_volatile_int;
    typedef const char *t_ptr_const_char;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 02 19:56:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    darwin_amd64)
    	mkerrors="$mkerrors -m64"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    darwin_arm64)
    	mkerrors="$mkerrors -m64"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    dragonfly_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="go run mksyscall.go -dragonfly"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. src/syscall/mkall.sh

    	;;
    darwin_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    darwin_arm64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    dragonfly_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -dragonfly"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. test/fixedbugs/issue6977.go

    // The canonical example.
    
    type ReadWriteCloser interface { io.ReadCloser; io.WriteCloser }
    
    // Some more cases.
    
    type M interface { m() }
    type M32 interface { m() int32 }
    type M64 interface { m() int64 }
    
    type U1 interface { m() }
    type U2 interface { m(); M }
    type U3 interface { M; m() }
    type U4 interface { M; M; M }
    type U5 interface { U1; U2; U3; U4 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 20:30:02 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue6977.go

    // The canonical example.
    
    type ReadWriteCloser interface { io.ReadCloser; io.WriteCloser }
    
    // Some more cases.
    
    type M interface { m() }
    type M32 interface { m() int32 }
    type M64 interface { m() int64 }
    
    type U1 interface { m() }
    type U2 interface { m(); M }
    type U3 interface { M; m() }
    type U4 interface { M; M; M }
    type U5 interface { U1; U2; U3; U4 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/debug/dwarf/testdata/bitfields.c

    // Copyright 2022 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.
    
    /*
    Linux ELF:
    gcc -gdwarf-4 -m64 -c bitfields.c -o bitfields.elf4
    */
    
    typedef struct another_struct {
      unsigned short quix;
      int xyz[0];
      unsigned  x:1;
      long long array[40];
    } t_another_struct;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 28 20:07:54 UTC 2022
    - 381 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/Assembler.java

            if (pchArgs != null && !pchArgs.isEmpty()) {
                throw new UnsupportedOperationException("Precompiled header arguments cannot be specified for a Assembler compiler.");
            }
            // ml/ml64 have position sensitive arguments,
            // e.g., /Fo must appear before /c and /c must appear before the source file.
    
            return Iterables.concat(outputArgs, genericArgs, sourceArgs);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top