Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for 2014 (0.03 sec)

  1. src/internal/runtime/atomic/atomic_riscv64.s

    // Copyright 2014 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.
    
    // RISC-V's atomic operations have two bits, aq ("acquire") and rl ("release"),
    // which may be toggled on and off. Their precise semantics are defined in
    // section 6.3 of the specification, but the basic idea is as follows:
    //
    //   - If neither aq nor rl is set, the CPU may reorder the atomic arbitrarily.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_ppc64x.s

    // Copyright 2014 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.
    
    //go:build linux && (ppc64 || ppc64le)
    
    //
    // System calls and other sys.stuff for ppc64, Linux
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "asm_ppc64x.h"
    #include "cgo/abi_ppc64x.h"
    
    #define SYS_exit		  1
    #define SYS_read		  3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. src/cmd/dist/vfp_arm.s

    // Copyright 2015 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.
    
    //go:build gc
    
    #include "textflag.h"
    
    // try to run "vmov.f64 d0, d0" instruction
    TEXT ·useVFPv1(SB),NOSPLIT,$0
    	WORD $0xeeb00b40	// vmov.f64 d0, d0
    	RET
    
    // try to run VFPv3-only "vmov.f64 d0, #112" instruction
    TEXT ·useVFPv3(SB),NOSPLIT,$0
    	WORD $0xeeb70b00	// vmov.f64 d0, #112
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 651 bytes
    - Viewed (0)
  4. src/runtime/rt0_windows_amd64.s

    // Copyright 2011 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.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    TEXT _rt0_amd64_windows(SB),NOSPLIT|NOFRAME,$-8
    	JMP	_rt0_amd64(SB)
    
    // When building with -buildmode=(c-shared or c-archive), this
    // symbol is called. For dynamic libraries it is called when the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 19 11:55:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/internal/notsha256/sha256block_386.s

    // Copyright 2013 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.
    
    //go:build !purego
    
    // SHA256 block routine. See sha256block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    //
    // Wt = Mt; for 0 <= t <= 15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. src/crypto/md5/md5block_arm.s

    // Copyright 2013 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.
    //
    // ARM version of md5block.go
    
    //go:build !purego
    
    #include "textflag.h"
    
    // Register definitions
    #define Rtable	R0	// Pointer to MD5 constants table
    #define Rdata	R1	// Pointer to data to hash
    #define Ra	R2	// MD5 accumulator
    #define Rb	R3	// MD5 accumulator
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/runtime/race_amd64.s

    // Copyright 2013 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.
    
    //go:build race
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    #include "cgo/abi_amd64.h"
    
    // The following thunks allow calling the gcc-compiled race runtime directly
    // from Go code without going all the way through cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/runtime/asm_mips64x.s

    // Copyright 2015 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.
    
    //go:build mips64 || mips64le
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    #define	REGCTXT	R22
    
    TEXT runtime·rt0_go(SB),NOSPLIT|TOPFRAME,$0
    	// R29 = stack; R4 = argc; R5 = argv
    
    	ADDV	$-24, R29
    	MOVW	R4, 8(R29) // argc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat_ppc64x.s

    // Copyright 2013 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.
    
    //go:build !purego && (ppc64 || ppc64le)
    
    #include "textflag.h"
    
    // func addMulVVW1024(z, x *uint, y uint) (c uint)
    TEXT ·addMulVVW1024(SB), $0-32
    	MOVD	$4, R6 // R6 = z_len/4
    	JMP		addMulVVWx<>(SB)
    
    // func addMulVVW1536(z, x *uint, y uint) (c uint)
    TEXT ·addMulVVW1536(SB), $0-32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:32:43 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/sync/atomic/asm.s

    // Copyright 2011 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.
    
    //go:build !race
    
    #include "textflag.h"
    
    TEXT ·SwapInt32(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·Xchg(SB)
    
    TEXT ·SwapUint32(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·Xchg(SB)
    
    TEXT ·SwapInt64(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·Xchg64(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top