Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ptrTo (0.09 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

        (Load <t.FieldType(0)> (OffPtr <t.FieldType(0).PtrTo()> [0]             ptr) mem)
        (Load <t.FieldType(1)> (OffPtr <t.FieldType(1).PtrTo()> [t.FieldOff(1)] ptr) mem)
        (Load <t.FieldType(2)> (OffPtr <t.FieldType(2).PtrTo()> [t.FieldOff(2)] ptr) mem))
    (Load <t> ptr mem) && t.IsStruct() && t.NumFields() == 4 && CanSSA(t) =>
      (StructMake4
        (Load <t.FieldType(0)> (OffPtr <t.FieldType(0).PtrTo()> [0]             ptr) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/reflect/value.go

    		panic("reflect.Value.Addr of unaddressable value")
    	}
    	// Preserve flagRO instead of using v.flag.ro() so that
    	// v.Addr().Elem() is equivalent to v (#32772)
    	fl := v.flag & flagRO
    	return Value{ptrTo(v.typ()), v.ptr, fl | flag(Pointer)}
    }
    
    // Bool returns v's underlying value.
    // It panics if v's kind is not [Bool].
    func (v Value) Bool() bool {
    	// panicNotBool is split out to keep Bool inlineable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	check("ArrayOf", ArrayOf(10, TypeOf(T{})))
    	check("ChanOf", ChanOf(BothDir, TypeOf(T{})))
    	check("FuncOf", FuncOf([]Type{TypeOf(T{})}, nil, false))
    	check("MapOf", MapOf(TypeOf(T{}), TypeOf(T{})))
    	check("PtrTo", PointerTo(TypeOf(T{})))
    	check("SliceOf", SliceOf(TypeOf(T{})))
    }
    
    type XM struct{ _ bool }
    
    func (*XM) String() string { return "" }
    
    func TestPtrToMethods(t *testing.T) {
    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