Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for curNum (0.2 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    			fmt.Fprintf(w, "    AKA ======================== %s\n", name)
    		}
    		fmt.Fprintf(w, "%10s %10s (flat, cum) %s of Total\n",
    			rpt.formatValue(flatSum), rpt.formatValue(cumSum),
    			measurement.Percentage(cumSum, rpt.total))
    
    		function, file, line := "", "", 0
    		for _, n := range ns {
    			locStr := ""
    			// Skip loc information if it hasn't changed from previous instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/runtime/asm_mips64x.s

    TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-8
    	MOVV	fn+0(FP), REGCTXT	// context register
    	MOVV	g_m(g), R2	// curm
    
    	// set g to gcrash
    	MOVV	$runtime·gcrash(SB), g	// g = &gcrash
    	CALL	runtime·save_g(SB)
    	MOVV	R2, g_m(g)	// g.m = curm
    	MOVV	g, m_g0(R2)	// curm.g0 = g
    
    	// switch to crashstack
    	MOVV	(g_stack+stack_hi)(g), R2
    	ADDV	$(-4*8), R2, R29
    
    	// call target function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. src/runtime/asm_loong64.s

    TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-8
    	MOVV	fn+0(FP), REGCTXT	// context register
    	MOVV	g_m(g), R4	// curm
    
    	// set g to gcrash
    	MOVV	$runtime·gcrash(SB), g	// g = &gcrash
    	JAL	runtime·save_g(SB)
    	MOVV	R4, g_m(g)	// g.m = curm
    	MOVV	g, m_g0(R4)	// curm.g0 = g
    
    	// switch to crashstack
    	MOVV	(g_stack+stack_hi)(g), R4
    	ADDV	$(-4*8), R4, R3
    
    	// call target function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. src/runtime/asm_mipsx.s

    TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-4
    	MOVW	fn+0(FP), REGCTXT	// context register
    	MOVW	g_m(g), R2	// curm
    
    	// set g to gcrash
    	MOVW	$runtime·gcrash(SB), g	// g = &gcrash
    	CALL	runtime·save_g(SB)
    	MOVW	R2, g_m(g)	// g.m = curm
    	MOVW	g, m_g0(R2)	// curm.g0 = g
    
    	// switch to crashstack
    	MOVW	(g_stack+stack_hi)(g), R2
    	ADDU	$(-4*8), R2, R29
    
    	// call target function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/runtime/asm_riscv64.s

    TEXT runtime·switchToCrashStack0<ABIInternal>(SB), NOSPLIT, $0-8
    	MOV	X10, CTXT			// context register
    	MOV	g_m(g), X11			// curm
    
    	// set g to gcrash
    	MOV	$runtime·gcrash(SB), g	// g = &gcrash
    	CALL	runtime·save_g(SB)	// clobbers X31
    	MOV	X11, g_m(g)			// g.m = curm
    	MOV	g, m_g0(X11)			// curm.g0 = g
    
    	// switch to crashstack
    	MOV	(g_stack+stack_hi)(g), X11
    	SUB	$(4*8), X11
    	MOV	X11, X2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  6. src/runtime/asm_s390x.s

    TEXT runtime·switchToCrashStack0<ABIInternal>(SB), NOSPLIT, $0-8
    	MOVD	fn+0(FP), R12	// context
    	MOVD	g_m(g), R4	// curm
    
    	// set g to gcrash
    	MOVD	$runtime·gcrash(SB), g	// g = &gcrash
    	BL	runtime·save_g(SB)
    	MOVD	R4, g_m(g)	// g.m = curm
    	MOVD	g, m_g0(R4)	// curm.g0 = g
    
    	// switch to crashstack
    	MOVD	(g_stack+stack_hi)(g), R4
    	ADD	$(-4*8), R4, R15
    
    	// call target function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK-LABEL: tranpose_arg64
      // CHECK: "tfl.transpose"
    }
    
    func.func @cumsum(%arg0: tensor<3x3xf32>, %arg1: tensor<i32>) -> tensor<3x3xf32> {
      %0 = "tf.Cumsum"(%arg0, %arg1) {exclusive = false, reverse = false} : (tensor<3x3xf32>, tensor<i32>) -> tensor<3x3xf32>
      func.return %0 : tensor<3x3xf32>
      // CHECK-LABEL: cumsum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  8. src/runtime/asm_arm.s

    // func switchToCrashStack0(fn func())
    TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-4
    	MOVW	fn+0(FP), R7 // context register
    	MOVW	g_m(g), R1 // curm
    
    	// set g to gcrash
    	MOVW	$runtime·gcrash(SB), R0
    	BL	setg<>(SB)	// g = &gcrash
    	MOVW	R1, g_m(g)	// g.m = curm
    	MOVW	g, m_g0(R1)	// curm.g0 = g
    
    	// switch to crashstack
    	MOVW	(g_stack+stack_hi)(g), R1
    	SUB	$(4*8), R1
    	MOVW	R1, R13
    
    	// call target function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. src/runtime/asm_ppc64x.s

    TEXT runtime·switchToCrashStack0<ABIInternal>(SB), NOSPLIT, $0-8
    	MOVD	R3, R11				// context register
    	MOVD	g_m(g), R3			// curm
    
    	// set g to gcrash
    	MOVD	$runtime·gcrash(SB), g	// g = &gcrash
    	CALL	runtime·save_g(SB)	// clobbers R31
    	MOVD	R3, g_m(g)			// g.m = curm
    	MOVD	g, m_g0(R3)			// curm.g0 = g
    
    	// switch to crashstack
    	MOVD	(g_stack+stack_hi)(g), R3
    	SUB	$(4*8), R3
    	MOVD	R3, R1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  10. src/runtime/asm_386.s

    TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-4
    	MOVL 	fn+0(FP), AX
    
    	get_tls(CX)
    	MOVL	g(CX), BX	// BX = g
    	MOVL	g_m(BX), DX	// DX = curm
    
    	// set g to gcrash
    	LEAL	runtime·gcrash(SB), BX // g = &gcrash
    	MOVL	DX, g_m(BX)            // g.m = curm
    	MOVL	BX, m_g0(DX)           // curm.g0 = g
    	get_tls(CX)
    	MOVL	BX, g(CX)
    
    	// switch to crashstack
    	MOVL	(g_stack+stack_hi)(BX), DX
    	SUBL	$(4*8), DX
    	MOVL	DX, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top