Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for walltime1 (0.15 sec)

  1. src/runtime/sys_linux_ppc64x.s

    	MOVD	addr+0(FP), R3
    	MOVD	n+8(FP), R4
    	MOVD	dst+16(FP), R5
    	SYSCALL	$SYS_mincore
    	NEG	R3		// caller expects negative errno
    	MOVW	R3, ret+24(FP)
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB),NOSPLIT,$16-12
    	MOVD	R1, R15		// R15 is unchanged by C code
    	MOVD	g_m(g), R21	// R21 = m
    
    	MOVD	$0, R3		// CLOCK_REALTIME
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_arm64.s

    	RET
    
    TEXT runtime·mincore(SB),NOSPLIT|NOFRAME,$0-28
    	MOVD	addr+0(FP), R0
    	MOVD	n+8(FP), R1
    	MOVD	dst+16(FP), R2
    	MOVD	$SYS_mincore, R8
    	SVC
    	MOVW	R0, ret+24(FP)
    	RET
    
    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB),NOSPLIT,$24-12
    	MOVD	RSP, R20	// R20 is unchanged by C code
    	MOVD	RSP, R1
    
    	MOVD	g_m(g), R21	// R21 = m
    
    	// Set vdsoPC and vdsoSP for SIGPROF traceback.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    this.events_.content.forEach(this.parseEvent.bind(this));},importTimestamp(timestamp){const ts=parseInt(timestamp,16);return(ts-this.walltime_+this.ticks_)/1000.;},parseInfo(event){if(event.hasOwnProperty('guid')&&event.hasOwnProperty('walltime')&&event.hasOwnProperty('tick')&&event.guid==='ClockSync'){this.walltime_=parseInt(event.walltime,16);this.ticks_=parseInt(event.tick,16);}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top