Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Range16 (0.14 sec)

  1. src/unicode/tables.go

    }
    
    var _Braille = &RangeTable{
    	R16: []Range16{
    		{0x2800, 0x28ff, 1},
    	},
    }
    
    var _Buginese = &RangeTable{
    	R16: []Range16{
    		{0x1a00, 0x1a1b, 1},
    		{0x1a1e, 0x1a1f, 1},
    	},
    }
    
    var _Buhid = &RangeTable{
    	R16: []Range16{
    		{0x1740, 0x1753, 1},
    	},
    }
    
    var _Canadian_Aboriginal = &RangeTable{
    	R16: []Range16{
    		{0x1400, 0x167f, 1},
    		{0x18b0, 0x18f5, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  2. src/strconv/makeisprint.go

    	fmt.Fprintf(&buf, "// (%d+%d+%d)*2 + (%d)*4 = %d bytes\n\n",
    		len(range16), len(except16), len(except32),
    		len(range32),
    		(len(range16)+len(except16)+len(except32))*2+
    			(len(range32))*4)
    
    	fmt.Fprintf(&buf, "var isPrint16 = []uint16{\n")
    	for i := 0; i < len(range16); i += 2 {
    		fmt.Fprintf(&buf, "\t%#04x, %#04x,\n", range16[i], range16[i+1])
    	}
    	fmt.Fprintf(&buf, "}\n\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/unicode/letter_test.go

    	})
    	fmt.Printf("calibration: linear cutoff = %d\n", n)
    }
    
    func fakeTable(n int) []Range16 {
    	var r16 []Range16
    	for i := 0; i < n; i++ {
    		r16 = append(r16, Range16{uint16(i*5 + 10), uint16(i*5 + 12), 1})
    	}
    	return r16
    }
    
    func linear(ranges []Range16, r uint16) bool {
    	for i := range ranges {
    		range_ := &ranges[i]
    		if r < range_.Lo {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. src/unicode/letter.go

    // Also, R32 should contain only values >= 0x10000 (1<<16).
    type RangeTable struct {
    	R16         []Range16
    	R32         []Range32
    	LatinOffset int // number of entries in R16 with Hi <= MaxLatin1
    }
    
    // Range16 represents of a range of 16-bit Unicode code points. The range runs from Lo to Hi
    // inclusive and has the specified stride.
    type Range16 struct {
    	Lo     uint16
    	Hi     uint16
    	Stride uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/whitelist.go

    	"image/color.RGBA64":  true,
    	"image/color.RGBA":    true,
    	"image/color.YCbCr":   true,
    	"image.Point":         true,
    	"image.Rectangle":     true,
    	"image.Uniform":       true,
    
    	"unicode.Range16": true,
    	"unicode.Range32": true,
    
    	// These four structs are used in generated test main files,
    	// but the generator can be trusted.
    	"testing.InternalBenchmark":  true,
    	"testing.InternalExample":    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 00:08:36 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/testdata/unicode.gox

    v2;
    package unicode;
    pkgpath unicode;
    init unicode unicode..import;
    var ASCII_Hex_Digit <type 1 *<type 2 "RangeTable" <type 3 struct { R16 <type 4 [] <type 5 "Range16" <type 6 struct { Lo <type -6>; Hi <type -6>; Stride <type -6>; }>>>; R32 <type 7 [] <type 8 "Range32" <type 9 struct { Lo <type -7>; Hi <type -7>; Stride <type -7>; }>>>; LatinOffset <type -11>; }>>>;
    var Adlam <type 1>;
    var Ahom <type 1>;
    var Anatolian_Hieroglyphs <type 1>;
    var Arabic <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  7. src/encoding/xml/xml.go

    // the XML spec at https://www.xml.com/axml/testaxml.htm
    // and then reformatting. First corresponds to (Letter | '_' | ':')
    // and second corresponds to NameChar.
    
    var first = &unicode.RangeTable{
    	R16: []unicode.Range16{
    		{0x003A, 0x003A, 1},
    		{0x0041, 0x005A, 1},
    		{0x005F, 0x005F, 1},
    		{0x0061, 0x007A, 1},
    		{0x00C0, 0x00D6, 1},
    		{0x00D8, 0x00F6, 1},
    		{0x00F8, 0x00FF, 1},
    		{0x0100, 0x0131, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    		if g.sign < 0 {
    			r = appendNegatedClass(r, tmp)
    		} else {
    			r = appendClass(r, tmp)
    		}
    	}
    	return r
    }
    
    var anyTable = &unicode.RangeTable{
    	R16: []unicode.Range16{{Lo: 0, Hi: 1<<16 - 1, Stride: 1}},
    	R32: []unicode.Range32{{Lo: 1 << 16, Hi: unicode.MaxRune, Stride: 1}},
    }
    
    // unicodeTable returns the unicode.RangeTable identified by name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Properties", Var, 0},
    		{"Ps", Var, 0},
    		{"Psalter_Pahlavi", Var, 4},
    		{"Punct", Var, 0},
    		{"Quotation_Mark", Var, 0},
    		{"Radical", Var, 0},
    		{"Range16", Type, 0},
    		{"Range16.Hi", Field, 0},
    		{"Range16.Lo", Field, 0},
    		{"Range16.Stride", Field, 0},
    		{"Range32", Type, 0},
    		{"Range32.Hi", Field, 0},
    		{"Range32.Lo", Field, 0},
    		{"Range32.Stride", Field, 0},
    		{"RangeTable", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.cc

                                                TypeRangeWithDesc range1) {
      if (range0.first.size() != range1.first.size()) {
        return op->emitOpError()
               << range0.second << "s (size = " << range0.first.size() << ")"
               << " should have the same number of values as " << range1.second
               << "s (size = " << range1.first.size() << ")";
      }
    
      for (const auto &it :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top