Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,409 for Malley (0.38 sec)

  1. src/runtime/stubs_mips64x.go

    //go:build mips64 || mips64le
    
    package runtime
    
    import "unsafe"
    
    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 522 bytes
    - Viewed (0)
  2. src/runtime/cgo/asm_arm64.s

    TEXT crosscall2_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	crosscall2(SB)
    
    // Called by C code generated by cmd/cgo.
    // func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
    // Saves C callee-saved registers and calls cgocallback with three arguments.
    // fn is the PC of a func(a unsafe.Pointer) function.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	/*
    	 * We still need to save all callee save register as before, and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

     * giving the classloader a chance to rewrite the bytecode of the class.
     * <p>
     * Methods defined in this interface may be called concurrently in multiple threads.
     */
    public interface InstrumentingClassLoader {
        /**
         * This hook is called when the class is being defined in this classloader.
         * If the implementation decides to replace the bytecode, it returns a non-null byte array from this method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/cgo/asm_loong64.s

    TEXT crosscall2_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	crosscall2(SB)
    
    // Called by C code generated by cmd/cgo.
    // func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
    // Saves C callee-saved registers and calls cgocallback with three arguments.
    // fn is the PC of a func(a unsafe.Pointer) function.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	/*
    	 * We still need to save all callee save register as before, and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/CharSink.java

     *
     * <p>{@code CharSink} provides two kinds of methods:
     *
     * <ul>
     *   <li><b>Methods that return a writer:</b> These methods should return a <i>new</i>, independent
     *       instance each time they are called. The caller is responsible for ensuring that the
     *       returned writer is closed.
     *   <li><b>Convenience methods:</b> These are implementations of common operations that are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. src/runtime/rt0_darwin_arm64.s

    	SVC	$0x80
    	B	exit
    
    // When linking with -buildmode=c-archive or -buildmode=c-shared,
    // this symbol is called from a global initialization function.
    //
    // Note that all currently shipping darwin/arm64 platforms require
    // cgo and do not support c-shared.
    TEXT _rt0_arm64_darwin_lib(SB),NOSPLIT,$152
    	// Preserve callee-save registers.
    	SAVE_R19_TO_R28(8)
    	SAVE_F8_TO_F15(88)
    
    	MOVD  R0, _rt0_arm64_darwin_lib_argc<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. test/fixedbugs/issue5856.go

    }
    
    var x = 1
    
    func f() {
    	if x == 0 {
    		return
    	}
    	defer g()
    	panic("panic")
    }
    
    func g() {
    	_, file, line, _ := runtime.Caller(2)
    	if !strings.HasSuffix(file, "issue5856.go") || line != 28 {
    		fmt.Printf("BUG: defer called from %s:%d, want issue5856.go:28\n", file, line)
    		os.Exit(1)
    	}
    	os.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 28 20:55:36 UTC 2018
    - 586 bytes
    - Viewed (0)
  8. src/runtime/sys_freebsd_amd64.s

    	MOVQ	_cgo_sigaction(SB), AX
    	MOVQ	SP, BX			// callee-saved
    	ANDQ	$~15, SP		// alignment as per amd64 psABI
    	CALL	AX
    	MOVQ	BX, SP
    	MOVL	AX, ret+24(FP)
    	RET
    
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVQ	fn+0(FP),    AX
    	MOVL	sig+8(FP),   DI
    	MOVQ	info+16(FP), SI
    	MOVQ	ctx+24(FP),  DX
    	MOVQ	SP, BX		// callee-saved
    	ANDQ	$~15, SP	// alignment for x86_64 ABI
    	CALL	AX
    	MOVQ	BX, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. src/runtime/sys_darwin_amd64.s

    	JGE	noerr
    	CALL	libc_error(SB)
    	MOVL	(AX), AX
    	NEGL	AX			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVQ	8(DI), SI		// arg 2 buf
    	MOVL	16(DI), DX		// arg 3 count
    	MOVQ	0(DI), DI		// arg 1 fd
    	CALL	libc_write(SB)
    	TESTL	AX, AX
    	JGE	noerr
    	CALL	libc_error(SB)
    	MOVL	(AX), AX
    	NEGL	AX			// caller expects negative errno value
    noerr:
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. src/runtime/stubs_loong64.go

    //go:build loong64
    
    package runtime
    
    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    // Used by reflectcall and the reflect package.
    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:23 UTC 2023
    - 638 bytes
    - Viewed (0)
Back to top