Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 349 for 0xE000 (0.13 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/condition.go

    	return instr&0x1f0000 != 0x1f0000 && instr&0xe000 != 0xe000 && instr&0x3e0 != 0x3e0 && (instr>>5)&0x1f == (instr>>16)&0x1f
    }
    
    func cneg_csneg_32_condsel_cond(instr uint32) bool {
    	return instr&0xe000 != 0xe000 && (instr>>5)&0x1f == (instr>>16)&0x1f
    }
    
    func cneg_csneg_64_condsel_cond(instr uint32) bool {
    	return instr&0xe000 != 0xe000 && (instr>>5)&0x1f == (instr>>16)&0x1f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/image/decode_example_test.go

    	// bin               red  green   blue  alpha
    	// 0x0000-0x0fff:    364    790   7242      0
    	// 0x1000-0x1fff:    645   2967   1039      0
    	// 0x2000-0x2fff:   1072   2299    979      0
    	// 0x3000-0x3fff:    820   2266    980      0
    	// 0x4000-0x4fff:    537   1305    541      0
    	// 0x5000-0x5fff:    319    962    261      0
    	// 0x6000-0x6fff:    322    375    177      0
    	// 0x7000-0x7fff:    601    279    214      0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 29 03:16:17 UTC 2018
    - 7.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlValidationTest.groovy

            XmlValidation.isLegalCharacter(character)
    
            where:
            character | _
            0x0009    | _
            0x000a    | _
            0x000d    | _
            0x0020    | _
            0xd7ff    | _
            0xe000    | _
            0x10000   | _
            0x10ffff  | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 22 14:56:07 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  4. src/os/stat_solaris.go

    import (
    	"internal/filepathlite"
    	"syscall"
    	"time"
    )
    
    // These constants aren't in the syscall package, which is frozen.
    // Values taken from golang.org/x/sys/unix.
    const (
    	_S_IFNAM  = 0x5000
    	_S_IFDOOR = 0xd000
    	_S_IFPORT = 0xe000
    )
    
    func fillFileStatFromSys(fs *fileStat, name string) {
    	fs.name = filepathlite.Base(name)
    	fs.size = fs.sys.Size
    	fs.modTime = time.Unix(fs.sys.Mtim.Unix())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/debug/pe/file_test.go

    			{".debug_info", 0xe22, 0xb000, 0x1000, 0x2400, 0x0, 0x0, 0x0, 0x0, 0x42100000},
    			{".debug_abbrev", 0x157, 0xc000, 0x200, 0x3400, 0x0, 0x0, 0x0, 0x0, 0x42100000},
    			{".debug_line", 0x144, 0xd000, 0x200, 0x3600, 0x0, 0x0, 0x0, 0x0, 0x42100000},
    			{".debug_frame", 0x34, 0xe000, 0x200, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x42300000},
    			{".debug_loc", 0x38, 0xf000, 0x200, 0x3a00, 0x0, 0x0, 0x0, 0x0, 0x42100000},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. src/unicode/utf16/utf16_test.go

    }
    
    var encodeTests = []encodeTest{
    	{[]rune{1, 2, 3, 4}, []uint16{1, 2, 3, 4}},
    	{[]rune{0xffff, 0x10000, 0x10001, 0x12345, 0x10ffff},
    		[]uint16{0xffff, 0xd800, 0xdc00, 0xd800, 0xdc01, 0xd808, 0xdf45, 0xdbff, 0xdfff}},
    	{[]rune{'a', 'b', 0xd7ff, 0xd800, 0xdfff, 0xe000, 0x110000, -1},
    		[]uint16{'a', 'b', 0xd7ff, 0xfffd, 0xfffd, 0xe000, 0xfffd, 0xfffd}},
    }
    
    func TestEncode(t *testing.T) {
    	for _, tt := range encodeTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/idna/trieval.go

    	indexShift   = 3
    	xorBit       = 0x4    // interpret the index as an xor pattern
    	inlineXOR    = 0xE000 // These bits are set if the XOR pattern is inlined.
    
    	joinShift = 8
    	joinMask  = 0x07
    
    	// Attributes
    	attributesMask = 0x1800
    	viramaModifier = 0x1800
    	modifier       = 0x1000
    	rtl            = 0x0800
    
    	mayNeedNorm = 0x2000
    )
    
    // A category corresponds to a category defined in the IDNA mapping table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 04:45:15 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. src/unicode/utf16/utf16.go

    	maxRune         = '\U0010FFFF' // Maximum valid Unicode code point.
    )
    
    const (
    	// 0xd800-0xdc00 encodes the high 10 bits of a pair.
    	// 0xdc00-0xe000 encodes the low 10 bits of a pair.
    	// the value is those 20 bits plus 0x10000.
    	surr1 = 0xd800
    	surr2 = 0xdc00
    	surr3 = 0xe000
    
    	surrSelf = 0x10000
    )
    
    // IsSurrogate reports whether the specified Unicode code point
    // can appear in a surrogate pair.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/xml/XmlValidation.java

            } else if (c < 0x20) {
                return false;
            } else if (c <= 0xD7FF) {
                return true;
            } else if (c < 0xE000) {
                return false;
            } else if (c <= 0xFFFD) {
                return true;
            } else if (c < 0x10000) {
                return false;
            } else if (c <= 0x10FFFF) {
                return true;
            }
            return false;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 22 14:56:07 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  10. src/syscall/wtf8_windows.go

    //
    // See go.dev/issues/59971 for more info.
    
    package syscall
    
    import (
    	"unicode/utf16"
    	"unicode/utf8"
    )
    
    const (
    	surr1 = 0xd800
    	surr2 = 0xdc00
    	surr3 = 0xe000
    
    	tx    = 0b10000000
    	t3    = 0b11100000
    	maskx = 0b00111111
    	mask3 = 0b00001111
    
    	rune1Max = 1<<7 - 1
    	rune2Max = 1<<11 - 1
    )
    
    // encodeWTF16 returns the potentially ill-formed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top