Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for __cdecl (0.11 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/runtime/syscall_windows_test.go

    	}
    }
    
    type cbFunc struct {
    	goFunc any
    }
    
    func (f cbFunc) cName(cdecl bool) string {
    	name := "stdcall"
    	if cdecl {
    		name = "cdecl"
    	}
    	t := reflect.TypeOf(f.goFunc)
    	for i := 0; i < t.NumIn(); i++ {
    		name += "_" + t.In(i).Name()
    	}
    	return name
    }
    
    func (f cbFunc) cSrc(w io.Writer, cdecl bool) {
    	// Construct a C function that takes a callback with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/syscall_windows.go

    //
    // On 386, if cdecl is true, the returned C function will use the
    // cdecl calling convention; otherwise, it will use stdcall. On amd64,
    // it always uses fastcall. On arm, it always uses the ARM convention.
    //
    //go:linkname compileCallback syscall.compileCallback
    func compileCallback(fn eface, cdecl bool) (code uintptr) {
    	if GOARCH != "386" {
    		// cdecl is only meaningful on 386.
    		cdecl = false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/cc_op_gen.cc

      string c_decl;
      for (int i = 0; i < op_info.arg_types.size(); ++i) {
        if (i > 0) strings::StrAppend(&c_decl, ", ");
        strings::StrAppend(&c_decl, op_info.arg_types[i], " ",
                           op_info.arg_names[i]);
      }
      if (include_attr && op_info.has_optional_attrs) {
        strings::StrAppend(&c_decl, ", const ", op_info.op_name, "::Attrs& attrs");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-mesh-dashboard.json

                  },
                  {
                    "id": "links",
                    "value": [
                      {
                        "targetBlank": false,
                        "title": "$__cell dashboard",
                        "url": "/dashboard/db/istio-workload-dashboard?var-workload=${__cell_2:raw}&var-namespace=${__cell_3:raw}"
                      }
                    ]
                  },
                  {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. 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)
  8. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public void cdsect(String) throws java.io.IOException; public void entityRef(String) throws java.io.IOException; public void processingInstructio(String) throws java.io.IOException; public void comment(String) throws java.io.IOException; public void docdecl(String) throws java.io.IOException; public void ignorableWhitespace(String) throws java.io.IOException; public void flush() throws java.io.IOException; protected void writeAttributeValue(String, java.io.Writer) throws java.io.IOException; protected...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
  9. src/internal/xcoff/xcoff.go

    	C_STSYM   = 133 // Statically allocated symbol
    	C_BCOMM   = 135 // Beginning of common block
    	C_ECOML   = 136 // Local member of common block
    	C_ECOMM   = 137 // End of common block
    	C_DECL    = 140 // Declaration of object
    	C_ENTRY   = 141 // Alternate entry
    	C_FUN     = 142 // Function or procedure
    	C_BSTAT   = 143 // Beginning of static block
    	C_ESTAT   = 144 // End of static block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    public abstract void processingInstructio(String) throws java.io.IOException, IllegalArgumentExcep, IllegalStateExceptio; public abstract void comment(String) throws java.io.IOException, IllegalArgumentExcep, IllegalStateExceptio; public abstract void docdecl(String) throws java.io.IOException, IllegalArgumentExcep, IllegalStateExceptio; public abstract void ignorableWhitespace(String) throws java.io.IOException, IllegalArgumentExcep, IllegalStateExceptio; public abstract void flush() throws java.io.IOException;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
Back to top