Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewValue4 (0.27 sec)

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

    	v.argstorage[0] = arg0
    	v.argstorage[1] = arg1
    	v.argstorage[2] = arg2
    	arg0.Uses++
    	arg1.Uses++
    	arg2.Uses++
    	return v
    }
    
    // NewValue4 returns a new value in the block with four arguments and zero aux values.
    func (b *Block) NewValue4(pos src.XPos, op Op, t *types.Type, arg0, arg1, arg2, arg3 *Value) *Value {
    	v := b.Func.newValue(op, t, b, pos)
    	v.AuxInt = 0
    	v.Args = []*Value{arg0, arg1, arg2, arg3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    			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"},
    			}
    			SetCookie(w, &Cookie{Name: "Cycle", Value: "3", Path: "/"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	}
    	return s.curBlock.NewValue3A(s.peekPos().WithNotStmt(), op, t, aux, arg0, arg1, arg2)
    }
    
    // newValue4 adds a new value with four arguments to the current block.
    func (s *state) newValue4(op ssa.Op, t *types.Type, arg0, arg1, arg2, arg3 *ssa.Value) *ssa.Value {
    	return s.curBlock.NewValue4(s.peekPos(), op, t, arg0, arg1, arg2, arg3)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top