Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setlkw (0.24 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "SETNE", argLength: 1, reg: readflags, asm: "SETNE"}, // extract != condition from arg0
    		{name: "SETL", argLength: 1, reg: readflags, asm: "SETLT"},  // extract signed < condition from arg0
    		{name: "SETLE", argLength: 1, reg: readflags, asm: "SETLE"}, // extract signed <= condition from arg0
    		{name: "SETG", argLength: 1, reg: readflags, asm: "SETGT"},  // extract signed > condition from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/reflect/all_test.go

    	vs := ValueOf(&xs).Elem()
    	shouldPanic("SetLen", func() { vs.SetLen(10) })
    	shouldPanic("SetCap", func() { vs.SetCap(10) })
    	shouldPanic("SetLen", func() { vs.SetLen(-1) })
    	shouldPanic("SetCap", func() { vs.SetCap(-1) })
    	shouldPanic("SetCap", func() { vs.SetCap(6) }) // smaller than len
    	vs.SetLen(5)
    	if len(xs) != 5 || cap(xs) != 8 {
    		t.Errorf("after SetLen(5), len, cap = %d, %d, want 5, 8", len(xs), cap(xs))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/reflect/value.go

    		*(*int64)(v.ptr) = x
    	}
    }
    
    // SetLen sets v's length to n.
    // It panics if v's Kind is not [Slice] or if n is negative or
    // greater than the capacity of the slice.
    func (v Value) SetLen(n int) {
    	v.mustBeAssignable()
    	v.mustBe(Slice)
    	s := (*unsafeheader.Slice)(v.ptr)
    	if uint(n) > uint(s.Cap) {
    		panic("reflect: slice length out of range in SetLen")
    	}
    	s.Len = n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top