Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for floatRegs (0.13 sec)

  1. src/cmd/compile/internal/types/type.go

    	t.extra = underlying.extra
    	t.width = underlying.width
    	t.align = underlying.align
    	t.alg = underlying.alg
    	t.ptrBytes = underlying.ptrBytes
    	t.intRegs = underlying.intRegs
    	t.floatRegs = underlying.floatRegs
    	t.underlying = underlying.underlying
    
    	if underlying.NotInHeap() {
    		t.SetNotInHeap(true)
    	}
    	if underlying.HasShape() {
    		t.SetHasShape(true)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    		c, d *byte
    	}
    
    	type test struct {
    		rcvr, typ                  Type
    		size, argsize, retOffset   uintptr
    		stack, gc, inRegs, outRegs []byte // pointer bitmap: 1 is pointer, 0 is scalar
    		intRegs, floatRegs         int
    		floatRegSize               uintptr
    	}
    	tests := []test{
    		{
    			typ:       ValueOf(func(a, b string) string { return "" }).Type(),
    			size:      6 * goarch.PtrSize,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top