Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for callbackArgs_result (0.22 sec)

  1. src/runtime/sys_windows_386.s

    	// Create a struct callbackArgs on our stack.
    	SUBL	$(12+callbackArgs__size), SP
    	MOVL	AX, (12+callbackArgs_index)(SP)		// callback index
    	MOVL	CX, (12+callbackArgs_args)(SP)		// address of args vector
    	MOVL	$0, (12+callbackArgs_result)(SP)	// result
    	LEAL	12(SP), AX	// AX = &callbackArgs{...}
    
    	// Call cgocallback, which will call callbackWrap(frame).
    	MOVL	$0, 8(SP)	// context
    	MOVL	AX, 4(SP)	// frame (address of callbackArgs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. src/runtime/sys_windows_arm64.s

    	MOVD	$cbargs-(18*8+callbackArgs__size)(SP), R13
    	MOVD	R12, callbackArgs_index(R13)	// callback index
    	MOVD	R14, R0
    	MOVD	R0, callbackArgs_args(R13)		// address of args vector
    	MOVD	$0, R0
    	MOVD	R0, callbackArgs_result(R13)	// result
    
    	// Call cgocallback, which will call callbackWrap(frame).
    	MOVD	$·callbackWrap<ABIInternal>(SB), R0	// PC of function to call, cgocallback takes an ABIInternal entry-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_arm.s

    	MOVW	R12, (16+callbackArgs_index)(R13)	// callback index
    	MOVW	$(16+callbackArgs__size+4*9)(R13), R0
    	MOVW	R0, (16+callbackArgs_args)(R13)		// address of args vector
    	MOVW	$0, R0
    	MOVW	R0, (16+callbackArgs_result)(R13)	// result
    
    	// Prepare for entry to Go.
    	BL	runtime·load_g(SB)
    
    	// Call cgocallback, which will call callbackWrap(frame).
    	MOVW	$0, R0
    	MOVW	R0, 12(R13)	// context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_amd64.s

    	SUBQ	$(24+callbackArgs__size), SP
    	MOVQ	AX, (24+callbackArgs_index)(SP) 	// callback index
    	MOVQ	R8, (24+callbackArgs_args)(SP)  	// address of args vector
    	MOVQ	$0, (24+callbackArgs_result)(SP)	// result
    	LEAQ	24(SP), AX
    	// Call cgocallback, which will call callbackWrap(frame).
    	MOVQ	$0, 16(SP)	// context
    	MOVQ	AX, 8(SP)	// frame (address of callbackArgs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top