Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sp0 (0.07 sec)

  1. src/image/draw/clip_test.go

    		}
    
    		// Check that the actual results equal the expected results.
    		if !c.r0.Eq(r) {
    			t.Errorf("%s: clip rectangle want %v got %v", c.desc, c.r0, r)
    			continue
    		}
    		if !c.sp0.Eq(sp) {
    			t.Errorf("%s: sp want %v got %v", c.desc, c.sp0, sp)
    			continue
    		}
    		if !c.nilMask {
    			if !c.mp0.Eq(mp) {
    				t.Errorf("%s: mp want %v got %v", c.desc, c.mp0, mp)
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    		throw("cannot trace user goroutine on its own stack")
    	}
    
    	if pc0 == ^uintptr(0) && sp0 == ^uintptr(0) { // Signal to fetch saved values from gp.
    		if gp.syscallsp != 0 {
    			pc0 = gp.syscallpc
    			sp0 = gp.syscallsp
    			if usesLR {
    				lr0 = 0
    			}
    		} else {
    			pc0 = gp.sched.pc
    			sp0 = gp.sched.sp
    			if usesLR {
    				lr0 = gp.sched.lr
    			}
    		}
    	}
    
    	var frame stkframe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top