Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for FUNC (0.05 sec)

  1. src/runtime/signal_openbsd_arm.go

    func (c *sigctxt) r6() uint32  { return c.regs().sc_r6 }
    func (c *sigctxt) r7() uint32  { return c.regs().sc_r7 }
    func (c *sigctxt) r8() uint32  { return c.regs().sc_r8 }
    func (c *sigctxt) r9() uint32  { return c.regs().sc_r9 }
    func (c *sigctxt) r10() uint32 { return c.regs().sc_r10 }
    func (c *sigctxt) fp() uint32  { return c.regs().sc_r11 }
    func (c *sigctxt) ip() uint32  { return c.regs().sc_r12 }
    func (c *sigctxt) sp() uint32  { return c.regs().sc_usr_sp }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 18:13:30 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/time.gox

     func (t <type 3>) .time.locabs () (name <type -16>, offset <type -11>, abs <type -8>);
     func (t <type 3>) Date () (year <type -11>, month <type 18 "Month" <type -11>
     func (m <type 18>) String () <type -16>;
    >, day <type -11>);
     func (t <type 3>) Year () <type -11>;
     func (t <type 3>) Month () <type 18>;
     func (t <type 3>) Day () <type -11>;
     func (t <type 3>) Weekday () <type 19 "Weekday" <type -11>
     func (d <type 19>) String () <type -16>;
    >;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/notboring.go

    func SHA224([]byte) [28]byte { panic("boringcrypto: not available") }
    func SHA256([]byte) [32]byte { panic("boringcrypto: not available") }
    func SHA384([]byte) [48]byte { panic("boringcrypto: not available") }
    func SHA512([]byte) [64]byte { panic("boringcrypto: not available") }
    
    func NewHMAC(h func() hash.Hash, key []byte) hash.Hash { panic("boringcrypto: not available") }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

    // RUN: tf-opt %s | tf-opt | FileCheck %s
    
    // CHECK-LABEL: func private @control_type() -> !tf_executor.control
    func.func private @control_type() -> !tf_executor.control
    
    // CHECK-LABEL: func private @token_type() -> !tf_executor.token
    func.func private @token_type() -> !tf_executor.token
    
    // CHECK-LABEL: func @empty_graph
    func.func @empty_graph() {
      tf_executor.graph {
      }
      func.return
    
    // CHECK:      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func le_1_uint32(x uint32) bool          { return x <= 1 }
    func gt_1_uint32(x uint32) bool          { return x > 1 }
    func ge_1_uint32(x uint32) bool          { return x >= 1 }
    func eq_1_uint32(x uint32) bool          { return x == 1 }
    func ne_1_uint32(x uint32) bool          { return x != 1 }
    func lt_126_uint32(x uint32) bool        { return x < 126 }
    func le_126_uint32(x uint32) bool        { return x <= 126 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_mipsx.go

    func Or8(ptr *uint8, val uint8)
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    func And32(ptr *uint32, val uint32) uint32
    
    //go:noescape
    func Or32(ptr *uint32, val uint32) uint32
    
    //go:noescape
    func Anduintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    func Oruintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/runtime/signal_aix_ppc64.go

    func (c *sigctxt) r6() uint64  { return c.regs().gpr[6] }
    func (c *sigctxt) r7() uint64  { return c.regs().gpr[7] }
    func (c *sigctxt) r8() uint64  { return c.regs().gpr[8] }
    func (c *sigctxt) r9() uint64  { return c.regs().gpr[9] }
    func (c *sigctxt) r10() uint64 { return c.regs().gpr[10] }
    func (c *sigctxt) r11() uint64 { return c.regs().gpr[11] }
    func (c *sigctxt) r12() uint64 { return c.regs().gpr[12] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    // If with no outputs, some inputs
    // CHECK: func private @testIf1Then{{.+}}
    // CHECK: func private @testIf1Else{{.+}}
    func.func private @testIf1Then(tensor<*xf32>) -> ()
    func.func private @testIf1Else(tensor<*xf32>) -> ()
    
    // CHECK-LABEL: func @testIfNoResult(%arg0: tensor<i1>, %arg1: tensor<2xf32>)
    func.func @testIfNoResult(%arg0: tensor<i1>, %arg1: tensor<2xf32>) -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/runtime/stubs_amd64.go

    func retpolineAX()
    func retpolineCX()
    func retpolineDX()
    func retpolineBX()
    func retpolineBP()
    func retpolineSI()
    func retpolineDI()
    func retpolineR8()
    func retpolineR9()
    func retpolineR10()
    func retpolineR11()
    func retpolineR12()
    func retpolineR13()
    func retpolineR14()
    func retpolineR15()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    //go:systemstack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. internal/color/color.go

    		return fmt.Sprint
    	}()
    
    	RedBoldf = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgRed, color.Bold).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	Red = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgRed).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	Blue = func() func(format string, a ...interface{}) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top