Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 632 for testflag (0.15 sec)

  1. src/internal/syscall/unix/asm_aix_ppc64.s

    // Copyright 2018 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 "textflag.h"
    
    //
    // System calls for aix/ppc64 are implemented in syscall/syscall_aix.go
    //
    
    TEXT ·syscall6(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 23 02:38:52 UTC 2018
    - 320 bytes
    - Viewed (0)
  2. src/internal/syscall/unix/asm_openbsd.s

    // Copyright 2024 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 openbsd && !mips64
    
    #include "textflag.h"
    
    TEXT ·libc_faccessat_trampoline(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:36:52 UTC 2024
    - 295 bytes
    - Viewed (0)
  3. src/runtime/testdata/testprog/framepointer_arm64.s

    // Copyright 2023 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 "textflag.h"
    
    TEXT	·getFP(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD	R29, ret+0(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:58:13 UTC 2023
    - 249 bytes
    - Viewed (0)
  4. src/cmd/dist/vfp_default.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 && !arm
    
    #include "textflag.h"
    
    TEXT ·useVFPv1(SB),NOSPLIT,$0
    	RET
    
    TEXT ·useVFPv3(SB),NOSPLIT,$0
    	RET
    
    TEXT ·useARMv6K(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 317 bytes
    - Viewed (0)
  5. src/runtime/rt0_plan9_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.
    
    #include "textflag.h"
    
    //in plan 9 argc is at top of stack followed by ptrs to arguments
    
    TEXT _rt0_arm_plan9(SB),NOSPLIT|NOFRAME,$0
    	MOVW	R0, _tos(SB)
    	MOVW	0(R13), R0
    	MOVW	$4(R13), R1
    	B	runtime·rt0_go(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:30 UTC 2018
    - 397 bytes
    - Viewed (0)
  6. src/runtime/rt0_linux_amd64.s

    // 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.
    
    #include "textflag.h"
    
    TEXT _rt0_amd64_linux(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    TEXT _rt0_amd64_linux_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 307 bytes
    - Viewed (0)
  7. src/runtime/rt0_openbsd_amd64.s

    // 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.
    
    #include "textflag.h"
    
    TEXT _rt0_amd64_openbsd(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    TEXT _rt0_amd64_openbsd_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 311 bytes
    - Viewed (0)
  8. src/runtime/rt0_openbsd_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.
    
    #include "textflag.h"
    
    TEXT _rt0_arm_openbsd(SB),NOSPLIT,$0
    	B	_rt0_arm(SB)
    
    TEXT _rt0_arm_openbsd_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 00:40:40 UTC 2017
    - 298 bytes
    - Viewed (0)
  9. test/fixedbugs/issue11656.dir/asm_ppc64le.s

    // 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.
    
    #include "textflag.h"
    
    // func syncIcache(p uintptr)
    TEXT main·syncIcache(SB), NOSPLIT|NOFRAME, $0-0
    	SYNC
    	MOVD (R3), R3
    	ICBI (R3)
    	ISYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 15:28:40 UTC 2022
    - 306 bytes
    - Viewed (0)
  10. src/runtime/preempt_wasm.s

    // Code generated by mkpreempt.go; DO NOT EDIT.
    
    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·asyncPreempt(SB),NOSPLIT|NOFRAME,$0-0
    	// No async preemption on wasm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 176 bytes
    - Viewed (0)
Back to top