Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for ret2 (0.21 sec)

  1. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

        // "arg0" (T=DT_RESOURCE), "arg1" (T=DT_BOOL)
        // "ret0" = "arg1"
        // "ret1" = "arg0"
        tensorflow::Scope s = tensorflow::Scope::NewRootScope();
        Output arg0 = ops::_Arg(s.WithOpName("arg0"), DT_RESOURCE, 0);
        Output arg1 = ops::_Arg(s.WithOpName("arg1"), DT_BOOL, 1);
        auto ret0 = ops::_Retval(s.WithOpName("ret0"), arg1, 0);
        auto ret1 = ops::_Retval(s.WithOpName("ret1"), arg0, 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-retval-attrs.pbtxt

    # CHECK-SAME: attributes {allow_soft_placement = false, tf.entry_function = {control_outputs = "", inputs = "arg0,arg1,arg2", outputs = "ret0,ret1,ret2"}}...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 00:18:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetCgroupStats", cgroupName, updateStats)
    	ret0, _ := ret[0].(*v1alpha1.ContainerStats)
    	ret1, _ := ret[1].(*v1alpha1.NetworkStats)
    	ret2, _ := ret[2].(error)
    	return ret0, ret1, ret2
    }
    
    // GetCgroupStats indicates an expected call of GetCgroupStats.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pod/testing/mock_manager.go

    // GetPodAndMirrorPod mocks base method.
    func (m *MockManager) GetPodAndMirrorPod(arg0 *v1.Pod) (*v1.Pod, *v1.Pod, bool) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPodAndMirrorPod", arg0)
    	ret0, _ := ret[0].(*v1.Pod)
    	ret1, _ := ret[1].(*v1.Pod)
    	ret2, _ := ret[2].(bool)
    	return ret0, ret1, ret2
    }
    
    // GetPodAndMirrorPod indicates an expected call of GetPodAndMirrorPod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd2.go

    		n               uintptr
    		prot, flags, fd int32
    		off             uint32
    		ret1            unsafe.Pointer
    		ret2            int
    	}{addr, n, prot, flags, fd, off, nil, 0}
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(mmap_trampoline)), unsafe.Pointer(&args))
    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    	return args.ret1, args.ret2
    }
    func mmap_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/runtime/asm_wasm.s

    	Set R0; \
    	\
    	MOVD stackArgsType+0(FP), RET0; \
    	\
    	I64Load stackArgs+16(FP); \
    	Get R0; \
    	I64Add; \
    	Set RET1; \
    	\
    	Get SP; \
    	I64ExtendI32U; \
    	Get R0; \
    	I64Add; \
    	Set RET2; \
    	\
    	I64Load32U stackArgsSize+24(FP); \
    	Get R0; \
    	I64Sub; \
    	Set RET3; \
    	\
    	CALL callRet<>(SB); \
    	RET
    
    // callRet copies return values back at the end of call*. This is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin.go

    		addr            unsafe.Pointer
    		n               uintptr
    		prot, flags, fd int32
    		off             uint32
    		ret1            unsafe.Pointer
    		ret2            int
    	}{addr, n, prot, flags, fd, off, nil, 0}
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(mmap_trampoline)), unsafe.Pointer(&args))
    	return args.ret1, args.ret2
    }
    func mmap_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func munmap(addr unsafe.Pointer, n uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/wasm/asm.go

    func writeGlobalSec(ctxt *ld.Link) {
    	sizeOffset := writeSecHeader(ctxt, sectionGlobal)
    
    	globalRegs := []byte{
    		I32, // 0: SP
    		I64, // 1: CTXT
    		I64, // 2: g
    		I64, // 3: RET0
    		I64, // 4: RET1
    		I64, // 5: RET2
    		I64, // 6: RET3
    		I32, // 7: PAUSE
    	}
    
    	writeUleb128(ctxt.Out, uint64(len(globalRegs))) // number of globals
    
    	for _, typ := range globalRegs {
    		ctxt.Out.WriteByte(typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			names := fld.Names
    			if len(names) == 0 {
    				// Anonymous args will be called arg, arg1, arg2, ...
    				// Similarly so for return values: ret, ret1, ret2, ...
    				name := "arg"
    				if isret {
    					name = "ret"
    				}
    				if argnum > 0 {
    					name += strconv.Itoa(argnum)
    				}
    				names = []*ast.Ident{ast.NewIdent(name)}
    			}
    			argnum += len(names)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/wasm/wasmobj.go

    	"encoding/binary"
    	"fmt"
    	"internal/abi"
    	"io"
    	"math"
    )
    
    var Register = map[string]int16{
    	"SP":    REG_SP,
    	"CTXT":  REG_CTXT,
    	"g":     REG_g,
    	"RET0":  REG_RET0,
    	"RET1":  REG_RET1,
    	"RET2":  REG_RET2,
    	"RET3":  REG_RET3,
    	"PAUSE": REG_PAUSE,
    
    	"R0":  REG_R0,
    	"R1":  REG_R1,
    	"R2":  REG_R2,
    	"R3":  REG_R3,
    	"R4":  REG_R4,
    	"R5":  REG_R5,
    	"R6":  REG_R6,
    	"R7":  REG_R7,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top