Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ptrTo (0.04 sec)

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

        f2
        (Store {t.FieldType(1)}
          (OffPtr <t.FieldType(1).PtrTo()> [t.FieldOff(1)] dst)
          f1
          (Store {t.FieldType(0)}
            (OffPtr <t.FieldType(0).PtrTo()> [0] dst)
              f0 mem)))
    (Store dst (StructMake4 <t> f0 f1 f2 f3) mem) =>
      (Store {t.FieldType(3)}
        (OffPtr <t.FieldType(3).PtrTo()> [t.FieldOff(3)] dst)
        f3
        (Store {t.FieldType(2)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/cse_test.go

    	c := testConfig(t)
    	a := c.Temp(c.config.Types.Int8.PtrTo())
    
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sp", OpSP, c.config.Types.Uintptr, 0, nil),
    			Valu("sb1", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("sb2", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("addr1", OpAddr, c.config.Types.Int64.PtrTo(), 0, nil, "sb1"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc_test.go

    	f := c.Fun("entry",
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("x", OpArg, c.config.Types.Int64, 0, c.Temp(c.config.Types.Int64)),
    			Valu("p", OpArg, c.config.Types.Int64.PtrTo(), 0, c.Temp(c.config.Types.Int64.PtrTo())),
    			Valu("a", OpAMD64TESTQ, types.TypeFlags, 0, nil, "x", "x"),
    			Goto("loop1"),
    		),
    		Bloc("loop1",
    			Valu("y", OpAMD64MULQ, c.config.Types.Int64, 0, nil, "x", "x"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/branchelim_test.go

    					Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    					Valu("const1", OpConst32, intType, 1, nil),
    					Valu("const2", OpConst32, intType, 2, nil),
    					Valu("addr", OpAddr, boolType.PtrTo(), 0, nil, "sb"),
    					Valu("cond", OpLoad, boolType, 0, nil, "addr", "start"),
    					If("cond", "b2", "b3")),
    				Bloc("b2",
    					Goto("b3")),
    				Bloc("b3",
    					Valu("phi", OpPhi, intType, 0, nil, "const1", "const2"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadstore_test.go

    	// types of the address fields are identical (where identicalness is
    	// decided by the CSE pass).
    	c := testConfig(t)
    	t1 := c.config.Types.UInt64.PtrTo()
    	t2 := c.config.Types.UInt32.PtrTo()
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("v", OpConstBool, c.config.Types.Bool, 1, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. schema/utils.go

    func GetRelationsValues(ctx context.Context, reflectValue reflect.Value, rels []*Relationship) (reflectResults reflect.Value) {
    	for _, rel := range rels {
    		reflectResults = reflect.MakeSlice(reflect.SliceOf(reflect.PtrTo(rel.FieldSchema.ModelType)), 0, 1)
    
    		appendToResults := func(value reflect.Value) {
    			if _, isZero := rel.Field.ValueOf(ctx, value); !isZero {
    				result := reflect.Indirect(rel.Field.ReflectValueOf(ctx, value))
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Aug 19 13:35:14 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. src/reflect/badlinkname.go

    func badlinkname_rtype_Size(*rtype) uintptr
    
    //go:linkname badlinkname_rtype_String reflect.(*rtype).String
    func badlinkname_rtype_String(*rtype) string
    
    //go:linkname badlinkname_rtype_ptrTo reflect.(*rtype).ptrTo
    func badlinkname_rtype_ptrTo(*rtype) *abi.Type
    
    //go:linkname badlinkname_Value_pointer reflect.(*Value).pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/passbm_test.go

    	b.ResetTimer()
    	for i := 0; i < passCount; i++ {
    		fn(fun.f)
    	}
    	b.StopTimer()
    }
    
    func genFunction(size int) []bloc {
    	var blocs []bloc
    	elemType := types.Types[types.TINT64]
    	ptrType := elemType.PtrTo()
    
    	valn := func(s string, m, n int) string { return fmt.Sprintf("%s%d-%d", s, m, n) }
    	blocs = append(blocs,
    		Bloc("entry",
    			Valu(valn("store", 0, 4), OpInitMem, types.TypeMem, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. api/go1.22.txt

    pkg net/http, method (*Request) SetPathValue(string, string) #61410
    pkg net/netip, method (AddrPort) Compare(AddrPort) int #61642
    pkg os, method (*File) WriteTo(io.Writer) (int64, error) #58808
    pkg reflect, func PtrTo //deprecated #59599
    pkg reflect, func TypeFor[$0 interface{}]() Type #60088
    pkg slices, func Concat[$0 interface{ ~[]$1 }, $1 interface{}](...$0) $0 #56353
    pkg syscall (linux-386), type SysProcAttr struct, PidFD *int #51246
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top