Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for bidiIndex (0.17 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    		if len(s) < 2 {
    			return Properties{}, 0
    		}
    		i := bidiIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return Properties{}, 1
    		}
    		return Properties{entry: trie.lookupValue(uint32(i), c1)}, 2
    	case c0 < 0xF0: // 3-byte UTF-8
    		if len(s) < 3 {
    			return Properties{}, 0
    		}
    		i := bidiIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return Properties{}, 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go

    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return bidiValues[c0]
    	}
    	i := bidiIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 110.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go

    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return bidiValues[c0]
    	}
    	i := bidiIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 109.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go

    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return bidiValues[c0]
    	}
    	i := bidiIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 118.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go

    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return bidiValues[c0]
    	}
    	i := bidiIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 116.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go

    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return bidiValues[c0]
    	}
    	i := bidiIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 120.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go

    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return bidiValues[c0]
    	}
    	i := bidiIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 127.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

        }
    
        /** Returns true if the bit changed value. */
        boolean set(long bitIndex) {
          if (get(bitIndex)) {
            return false;
          }
    
          int longIndex = (int) (bitIndex >>> LONG_ADDRESSABLE_BITS);
          long mask = 1L << bitIndex; // only cares about low 6 bits of bitIndex
    
          long oldValue;
          long newValue;
          do {
            oldValue = data.get(longIndex);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/BloomFilterStrategies.java

        }
    
        /** Returns true if the bit changed value. */
        boolean set(long bitIndex) {
          if (get(bitIndex)) {
            return false;
          }
    
          int longIndex = (int) (bitIndex >>> LONG_ADDRESSABLE_BITS);
          long mask = 1L << bitIndex; // only cares about low 6 bits of bitIndex
    
          long oldValue;
          long newValue;
          do {
            oldValue = data.get(longIndex);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Hungarian            Tag = Tag{language: huIndex, locale: huIndex}
    	Armenian             Tag = Tag{language: hyIndex, locale: hyIndex}
    	Indonesian           Tag = Tag{language: idIndex, locale: idIndex}
    	Icelandic            Tag = Tag{language: isIndex, locale: isIndex}
    	Italian              Tag = Tag{language: itIndex, locale: itIndex}
    	Japanese             Tag = Tag{language: jaIndex, locale: jaIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top