Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for newValue3A (0.28 sec)

  1. src/cmd/compile/internal/ssa/writebarrier.go

    				}
    				mem = bEnd.NewValue3I(pos, OpMove, types.TypeMem, w.AuxInt, dst, src, mem)
    				mem.Aux = w.Aux
    			case OpVarDef, OpVarLive:
    				mem = bEnd.NewValue1A(pos, w.Op, types.TypeMem, w.Aux, mem)
    			case OpStore:
    				ptr := w.Args[0]
    				val := w.Args[1]
    				mem = bEnd.NewValue3A(pos, OpStore, types.TypeMem, w.Aux, ptr, val, mem)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/expand_calls.go

    				offset := aux.OffsetOfResult(i)
    				auxBase := x.offsetFrom(x.f.Entry, x.sp, offset, types.NewPtr(v.Type))
    				// was Store dst, v, mem
    				// now Move dst, auxBase, mem
    				move := store.Block.NewValue3A(store.Pos, OpMove, types.TypeMem, v.Type, storeAddr, auxBase, mem)
    				move.AuxInt = v.Type.Size()
    				store.copyOf(move)
    			}
    			continue
    		}
    
    		var auxBase *Value
    		if len(regs) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/func.go

    	v.argstorage[1] = arg1
    	v.argstorage[2] = arg2
    	arg0.Uses++
    	arg1.Uses++
    	arg2.Uses++
    	return v
    }
    
    // NewValue3I returns a new value in the block with three arguments and an auxint value.
    func (b *Block) NewValue3I(pos src.XPos, op Op, t *types.Type, auxint int64, arg0, arg1, arg2 *Value) *Value {
    	v := b.Func.newValue(op, t, b, pos)
    	v.AuxInt = auxint
    	v.Args = v.argstorage[:3]
    	v.argstorage[0] = arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // newValue3 adds a new value with three arguments to the current block.
    func (s *state) newValue3(op ssa.Op, t *types.Type, arg0, arg1, arg2 *ssa.Value) *ssa.Value {
    	return s.curBlock.NewValue3(s.peekPos(), op, t, arg0, arg1, arg2)
    }
    
    // newValue3I adds a new value with three arguments and an auxint value to the current block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    			SetCookie(w, &Cookie{Name: "Cookie3", Value: "NewValue3", Path: "/"}) // Modify cookie in Header
    			SetCookie(w, &Cookie{Name: "Cookie4", Value: "NewValue4", Path: "/"}) // Modify cookie in Jar
    			Redirect(w, r, "/", StatusFound)
    		case "2":
    			want = map[string][]string{
    				"Cookie1": {"OldValue1a", "OldValue1b"},
    				"Cookie3": {"NewValue3"},
    				"Cookie4": {"NewValue4"},
    				"Cycle":   {"2"},
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				list:	
    				- name: entry1
    				  apiVersion: v2
    				  kind: Baz
    				  otherField: newValue2
    				- name: entry2
    				  apiVersion: v3
    				  kind: Bar
    				  otherField: newValue3
    			`),
    			warnings: []string{
    				`root.subField.apiVersion: Invalid value: "string": failed rule: self == "v1"`,
    				`root.subField.kind: Invalid value: "string": failed rule: self == "Pod"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top