Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for si0 (0.02 sec)

  1. src/image/draw/draw.go

    	i0 := (r.Min.X - dst.Rect.Min.X) * 4
    	i1 := (r.Max.X - dst.Rect.Min.X) * 4
    	si0 := (sp.X - src.Rect.Min.X) * 4
    	yMax := r.Max.Y - dst.Rect.Min.Y
    
    	y := r.Min.Y - dst.Rect.Min.Y
    	sy := sp.Y - src.Rect.Min.Y
    	for ; y != yMax; y, sy = y+1, sy+1 {
    		dpix := dst.Pix[y*dst.Stride:]
    		spix := src.Pix[sy*src.Stride:]
    
    		for i, si := i0, si0; i < i1; i, si = i+4, si+4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	o1 := GenOpcodes[p.As-AXXSETACCZ]
    	o1 |= uint32(p.To.Reg&0x1f) << 21                          // RT
    	o1 |= uint32(p.From.Reg&0x1f) << 16                        // RA
    	o0 |= uint32((p.RestArgs[0].Addr.Offset>>16)&0x3ffff) << 0 // si0
    	o1 |= uint32(p.RestArgs[0].Addr.Offset&0xffff) << 0        // si1
    	o0 |= uint32(p.RestArgs[1].Addr.Offset&0x1) << 20          // R
    	out[1] = o1
    	out[0] = o0
    }
    
    // pextd RA,RS,RB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
Back to top