Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for __cdecl (0.21 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

                // 00B 00000000 SECT4  notype       Static       | .text$mn
                // 00E 00000000 SECT5  notype       Static       | .debug$S
                // 011 00000000 UNDEF  notype ()    External     | ?life@@YAHXZ (int __cdecl life(void))
                // 012 00000000 SECT4  notype ()    External     | _main
                // 013 00000000 SECT6  notype       Static       | .chks64
                def tokens = line.split('\\s+')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/go/parser/testdata/resolution/resolution.src

    			sel = n /* @ninit */
    	}
    }
    
    type c /* =@cdecl */ map[token.Pos]resolvedObj
    
    func (v /* =@vdecl */ c /* @cdecl */) Visit(node /* =@nodearg */ ast.Node) (w /* =@w */ ast.Visitor) {}
    
    const (
    	basic /* =@basic */ = iota
    	labelOk // =@labelOk
    )
    
    type T /* =@T */ int
    
    func _(count /* =@count */ T /* @T */) {
    	x /* =@x1 */ := c /* @cdecl */{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 21:19:23 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_386.s

    	JE	docall
    
    	// Copy args to the stack.
    	MOVL	CX, AX
    	SALL	$2, AX
    	SUBL	AX, SP			// room for args
    	MOVL	SP, DI
    	MOVL	libcall_args(BX), SI
    	CLD
    	REP; MOVSL
    
    docall:
    	// Call stdcall or cdecl function.
    	// DI SI BP BX are preserved, SP is not
    	CALL	libcall_fn(BX)
    	MOVL	BP, SP
    
    	// Return result.
    	MOVL	fn+0(FP), BX
    	MOVL	AX, libcall_r1(BX)
    	MOVL	DX, libcall_r2(BX)
    
    	// GetLastError().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top