Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for Ix (0.03 sec)

  1. src/cmd/compile/internal/walk/assign.go

    		ncopy = mkcall1(fn, types.Types[types.TINT], &nodes, ptr1, len1, ptr2, len2, ir.NewInt(base.Pos, elemtype.Size()))
    	} else {
    		// memmove(&s[idx], &l2[0], len(l2)*sizeof(T))
    		ix := ir.NewIndexExpr(base.Pos, s, idx)
    		ix.SetBounded(true)
    		addr := typecheck.NodAddr(ix)
    
    		sptr := ir.NewUnaryExpr(base.Pos, ir.OSPTR, l2)
    
    		nwid := cheapExpr(typecheck.Conv(ir.NewUnaryExpr(base.Pos, ir.OLEN, l2), types.Types[types.TUINTPTR]), &nodes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    					fallthrough
    				case strings.HasPrefix(args[ri], "D"): // Dx -> Fx
    					args[ri] = "F" + args[ri][1:]
    				case strings.HasPrefix(args[ri], "S"):
    					if inst.Args[ix].(Reg)&1 == 0 { // Sx -> Fy, y = x/2, if x is even
    						args[ri] = fmt.Sprintf("F%d", (inst.Args[ix].(Reg)-S0)/2)
    					}
    				case strings.HasPrefix(args[ri], "$"): // CMPF/CMPD $0, Fx
    					break
    				case strings.HasPrefix(args[ri], "R"): // MOVW Rx, Dy[1]
    					break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	rv, rc, rn := BpxGetthent(&pgtha, &outlen, unsafe.Pointer(&out[0]))
    	if rv == 0 {
    		gthc := []byte{0x87, 0xa3, 0x88, 0x83} // 'gthc' in ebcdic
    		ix := bytes.Index(out[:], gthc)
    		if ix == -1 {
    			err = fmt.Errorf("BPX4GTH: gthc return data not found")
    			return
    		}
    		jn := out[ix+80 : ix+88] // we didn't declare Pgthc, but jobname is 8-byte at offset 80
    		E2a(jn)
    		jobname = string(bytes.TrimRight(jn, " "))
    
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/go/types/resolver.go

    	case *ast.IndexExpr, *ast.IndexListExpr:
    		ix := typeparams.UnpackIndexExpr(rtyp)
    		rtyp = ix.X
    		if unpackParams {
    			for _, arg := range ix.Indices {
    				var par *ast.Ident
    				switch arg := arg.(type) {
    				case *ast.Ident:
    					par = arg
    				case *ast.BadExpr:
    					// ignore - error already reported by parser
    				case nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	}
    	value = valueExtractor(index)
    	if mean {
    		meanDiv = valueExtractor(0)
    	}
    	v = p.SampleType[index]
    	return
    }
    
    func valueExtractor(ix int) sampleValueFunc {
    	return func(v []int64) int64 {
    		return v[ix]
    	}
    }
    
    // profileCopier can be used to obtain a fresh copy of a profile.
    // It is useful since reporting code may mutate the profile handed to it.
    type profileCopier []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/schedule.go

    	if c := sx - sy; c != 0 {
    		return c < 0 // lower scores come earlier.
    	}
    	// Note: only scores are required for correct scheduling.
    	// Everything else is just heuristics.
    
    	ix := h.inBlockUses[x.ID]
    	iy := h.inBlockUses[y.ID]
    	if ix != iy {
    		return ix // values with in-block uses come earlier
    	}
    
    	if x.Pos != y.Pos { // Favor in-order line stepping
    		return x.Pos.Before(y.Pos)
    	}
    	if x.Op != OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/iimport.go

    // for details.
    func tparamName(exportName string) string {
    	// Remove the "path" from the type param name that makes it unique.
    	ix := strings.LastIndex(exportName, ".")
    	if ix < 0 {
    		errorf("malformed type parameter export name %s: missing prefix", exportName)
    	}
    	name := exportName[ix+1:]
    	if strings.HasPrefix(name, blankMarker) {
    		return "_"
    	}
    	return name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/range.go

    	// hp = &a[0]
    	hp := typecheck.TempAt(base.Pos, ir.CurFunc, types.Types[types.TUNSAFEPTR])
    
    	ix := ir.NewIndexExpr(base.Pos, a, ir.NewInt(base.Pos, 0))
    	ix.SetBounded(true)
    	addr := typecheck.ConvNop(typecheck.NodAddr(ix), types.Types[types.TUNSAFEPTR])
    	n.Body.Append(ir.NewAssignStmt(base.Pos, hp, addr))
    
    	// hn = len(a) * sizeof(elem(a))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. pkg/registry/core/rest/storage_core.go

    	}
    
    	for ix, cfg := range s.storageFactory.Configs() {
    		serversToValidate[fmt.Sprintf("etcd-%d", ix)] = &componentstatus.EtcdServer{Config: cfg}
    	}
    	return serversToValidate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-RSA-RSAPSS

    00000020  38 24 b6 4e d7 f0 c5 27  97 32 14 03 03 00 01 01  |8$.N...'.2......|
    00000030  16 03 03 00 20 0e 14 d4  f5 c2 10 a1 80 b3 b4 90  |.... ...........|
    00000040  17 43 1f 22 69 78 00 bb  87 c3 78 23 8e 03 8f c4  |.C."ix....x#....|
    00000050  28 1c f8 42 e6                                    |(..B.|
    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 20 6f a9 ff 13 fb  |.......... o....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top