Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 503 for sP (0.02 sec)

  1. src/syscall/asm_plan9_arm.s

    	MOVW	$a1+4(FP), R0	// move syscall args
    	MOVW	$sysargs-144(SP), R1
    	MOVM.IA	(R0), [R2-R4]
    	MOVM.IA	[R2-R4], (R1)
    	MOVW	trap+0(FP), R0	// syscall num
    	SWI		$0
    	MOVW	$0, R2
    	MOVW	$r1+16(FP), R3
    	MOVM.IA	[R0,R2], (R3)
    	CMP		$-1, R0
    	B.EQ	syscallerr
    	BL		runtime·exitsyscall(SB)
    	MOVW	$·emptystring+0(SB), R2
    	B		syscallok
    syscallerr:
    	MOVW	$errbuf-128(SP), R2
    	MOVW	$128, R3
    	MOVM.IA	[R2,R3], (R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 14:57:01 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            "1.0-snapshot" | "1.0-sp"
            "1.0-snapshot" | "1.0"
    
            "1.0-final"    | "1.0-ga"
            "1.0-final"    | "1.0-release"
            "1.0-final"    | "1.0-sp"
            "1.0-final"    | "1.0"
    
            "1.0-ga"       | "1.0-release"
            "1.0-ga"       | "1.0-sp"
            "1.0-ga"       | "1.0-"
    
            "1.0-release"  | "1.0-sp"
            "1.0-release"  | "1.0"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			matchFile := (loc.Mapping != nil && sp.sym.MatchString(loc.Mapping.File))
    			for j, line := range loc.Line {
    				if (j == 0 && matchFile) || matches(line) {
    					markInterest(addr, loc, j)
    				}
    			}
    		}
    	}
    
    	sp.expandAddresses(rpt, addrs, flat)
    	sp.initSamples(flat, cum)
    	return sp
    }
    
    func (sp *sourcePrinter) close() {
    	for _, objFile := range sp.objects {
    		if objFile != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. src/runtime/test_amd64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Create a large frame to force stack growth. See #62326.
    TEXT ·testSPWrite(SB),0,$16384-0
    	// Write to SP
    	MOVQ SP, AX
    	ANDQ $~0xf, SP
    	MOVQ AX, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 316 bytes
    - Viewed (0)
  5. src/crypto/md5/md5block_386.s

    	SHLL	$6,		DX
    
    	LEAL	(SI)(DX*1),	DI
    	MOVL	(0*4)(BP),	AX
    	MOVL	(1*4)(BP),	BX
    	MOVL	(2*4)(BP),	CX
    	MOVL	(3*4)(BP),	DX
    
    	CMPL	SI,		DI
    	JEQ	end
    
    	MOVL	DI,		16(SP)
    
    loop:
    	MOVL	AX,		0(SP)
    	MOVL	BX,		4(SP)
    	MOVL	CX,		8(SP)
    	MOVL	DX,		12(SP)
    
    	MOVL	(0*4)(SI),	DI
    	MOVL	DX,		BP
    
    	ROUND1(AX,BX,CX,DX, 1,0xd76aa478, 7);
    	ROUND1(DX,AX,BX,CX, 2,0xe8c7b756,12);
    	ROUND1(CX,DX,AX,BX, 3,0x242070db,17);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/runtime/defs_plan9_amd64.go

    	ip    uint64 /* pc */
    	cs    uint64 /* old context */
    	flags uint64 /* old flags */
    	sp    uint64 /* sp */
    	ss    uint64 /* old stack segment */
    }
    
    type sigctxt struct {
    	u *ureg
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uintptr { return uintptr(c.u.ip) }
    
    func (c *sigctxt) sp() uintptr { return uintptr(c.u.sp) }
    func (c *sigctxt) lr() uintptr { return uintptr(0) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. src/runtime/sys_netbsd_amd64.s

    	MOVQ	$CLOCK_REALTIME, DI	// arg 1 - clock_id
    	LEAQ	8(SP), SI		// arg 2 - tp
    	MOVL	$SYS___clock_gettime50, AX
    	SYSCALL
    	MOVQ	8(SP), AX		// sec
    	MOVQ	16(SP), DX		// nsec
    
    	// sec is in AX, nsec in DX
    	MOVQ	AX, sec+0(FP)
    	MOVL	DX, nsec+8(FP)
    	RET
    
    TEXT runtime·nanotime1(SB),NOSPLIT,$32
    	MOVQ	$CLOCK_MONOTONIC, DI	// arg 1 - clock_id
    	LEAQ	8(SP), SI		// arg 2 - tp
    	MOVL	$SYS___clock_gettime50, AX
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. src/runtime/sys_freebsd_amd64.s

    	MOVQ	$CLOCK_REALTIME, DI
    	LEAQ	8(SP), SI
    	SYSCALL
    	MOVQ	8(SP), AX	// sec
    	MOVQ	16(SP), DX	// nsec
    
    	// sec is in AX, nsec in DX
    	MOVQ	AX, sec+0(FP)
    	MOVL	DX, nsec+8(FP)
    	RET
    
    TEXT runtime·fallback_nanotime(SB), NOSPLIT, $32-8
    	MOVL	$SYS_clock_gettime, AX
    	MOVQ	$CLOCK_MONOTONIC, DI
    	LEAQ	8(SP), SI
    	SYSCALL
    	MOVQ	8(SP), AX	// sec
    	MOVQ	16(SP), DX	// nsec
    
    	// sec is in AX, nsec in DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. src/runtime/defs_plan9_386.go

    	pc    uint32 /* pc */
    	cs    uint32 /* old context */
    	flags uint32 /* old flags */
    	sp    uint32
    	ss    uint32 /* old stack segment */
    }
    
    type sigctxt struct {
    	u *ureg
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uintptr { return uintptr(c.u.pc) }
    
    func (c *sigctxt) sp() uintptr { return uintptr(c.u.sp) }
    func (c *sigctxt) lr() uintptr { return uintptr(0) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. src/runtime/heapdump.go

    	// mspan.types
    	for _, s := range mheap_.allspans {
    		if s.state.get() == mSpanInUse {
    			// Finalizers
    			for sp := s.specials; sp != nil; sp = sp.next {
    				if sp.kind != _KindSpecialFinalizer {
    					continue
    				}
    				spf := (*specialfinalizer)(unsafe.Pointer(sp))
    				p := unsafe.Pointer(s.base() + uintptr(spf.special.offset))
    				dumpfinalizer(p, spf.fn, spf.fint, spf.ot)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top