Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for copySlice (0.3 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/input.go

    	if in.bytes != nil {
    		return append(buf, in.bytes[b:e]...)
    	}
    	for i := b; i < e; i++ {
    		buf = append(buf, in.str[i])
    	}
    	return buf
    }
    
    func (in *input) copySlice(buf []byte, b, e int) int {
    	if in.bytes == nil {
    		return copy(buf, in.str[b:e])
    	}
    	return copy(buf, in.bytes[b:e])
    }
    
    func (in *input) charinfoNFC(p int) (uint16, int) {
    	if in.bytes == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/input.go

    	if in.bytes != nil {
    		return append(buf, in.bytes[b:e]...)
    	}
    	for i := b; i < e; i++ {
    		buf = append(buf, in.str[i])
    	}
    	return buf
    }
    
    func (in *input) copySlice(buf []byte, b, e int) int {
    	if in.bytes == nil {
    		return copy(buf, in.str[b:e])
    	}
    	return copy(buf, in.bytes[b:e])
    }
    
    func (in *input) charinfoNFC(p int) (uint16, int) {
    	if in.bytes == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. test/noinit.go

    	2008, 2208, 2308, 4008, 4208, 4308, 5008, 5208, 5308,
    	2009, 2209, 2309, 4009, 4209, 4309, 5009, 5209, 5309,
    }
    
    var (
    	copy_zero     = zero
    	copy_one      = one
    	copy_pi       = pi
    	copy_slice    = slice
    	copy_sliceInt = sliceInt
    	// copy_hello    = hello // static init of copied strings defeats link -X; see #34675
    
    	// Could be handled without an initialization function, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top