Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for default_ (0.24 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 46:
    		return uint16(nfcValues[n<<6+uint32(b)])
    	default:
    		n -= 46
    		return uint16(nfcSparse.lookup(n, b))
    	}
    }
    
    // nfcValues: 48 blocks, 3072 entries, 6144 bytes
    // The third block is the zero block.
    var nfcValues = [3072]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 378.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 46:
    		return uint16(nfcValues[n<<6+uint32(b)])
    	default:
    		n -= 46
    		return uint16(nfcSparse.lookup(n, b))
    	}
    }
    
    // nfcValues: 48 blocks, 3072 entries, 6144 bytes
    // The third block is the zero block.
    var nfcValues = [3072]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 385.8K bytes
    - Viewed (0)
Back to top