Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 0xffe0 (0.08 sec)

  1. src/strconv/isprint.go

    	0xd7b0, 0xd7c6,
    	0xd7cb, 0xd7fb,
    	0xf900, 0xfa6d,
    	0xfa70, 0xfad9,
    	0xfb00, 0xfb06,
    	0xfb13, 0xfb17,
    	0xfb1d, 0xfbc2,
    	0xfbd3, 0xfd8f,
    	0xfd92, 0xfdc7,
    	0xfdcf, 0xfdcf,
    	0xfdf0, 0xfe19,
    	0xfe20, 0xfe6b,
    	0xfe70, 0xfefc,
    	0xff01, 0xffbe,
    	0xffc2, 0xffc7,
    	0xffca, 0xffcf,
    	0xffd2, 0xffd7,
    	0xffda, 0xffdc,
    	0xffe0, 0xffee,
    	0xfffc, 0xfffd,
    }
    
    var isNotPrint16 = []uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. test/codegen/shift.go

    	v[i] = (v[i] & 0xFF00) >> 6
    	i++
    	// ppc64x: "MOVW\tR0"
    	v[i] = (v[i] & 0xFF) >> 8
    	i++
    	// ppc64x: "MOVW\tR0"
    	v[i] = (v[i] & 0xF000000) >> 28
    	i++
    	// ppc64x: "RLWNM\t[$]26, R[0-9]+, [$]24, [$]31, R[0-9]+"
    	v[i] = (v[i] >> 6) & 0xFF
    	i++
    	// ppc64x: "RLWNM\t[$]26, R[0-9]+, [$]12, [$]19, R[0-9]+"
    	v[i] = (v[i] >> 6) & 0xFF000
    	i++
    	// ppc64x: "MOVW\tR0"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/shift_test.go

    		t.Errorf("got %d %d 0x%x, expected -32 -128 0x7fffffe0,", v, w, z)
    	}
    	if v, w, z := variableShiftOverflow16x16(-64, makeU16(0xffff), 2); v != -32 || w != -128 || z != 0x7fe0 {
    		t.Errorf("got %d %d 0x%x, expected -32 -128 0x7fe0", v, w, z)
    	}
    	if v, w, z := variableShiftOverflow8x16(-64, makeU16(0xffff), 2); v != -32 || w != -128 || z != 0x60 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/armerror.s

    	SWPW.S	R1, (R2), R3       // ERROR "invalid .S suffix"
    	MOVF.S	(R0), F1           // ERROR "invalid .S suffix"
    	MOVF.S	F9, (R4)           // ERROR "invalid .S suffix"
    	MOVF.S	0xfff0(R0), F1     // ERROR "invalid .S suffix"
    	MOVF.S	F9, 0xfff0(R4)     // ERROR "invalid .S suffix"
    	ADDF.S	F1, F2, F3         // ERROR "invalid .S suffix"
    	SUBD.U	F1, F2             // ERROR "invalid .U suffix"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
  5. src/internal/bytealg/index_ppc64x.s

    	MOVD $2, R15      // Set up index
    
    	// Set up masks for use with VSEL
    	MOVD   $0xff, R21        // Set up mask 0xff000000ff000000...
    	SLD    $24, R21
    	MTVSRD R21, V10
    	VSPLTW $1, V10, V29
    	VSLDOI $2, V29, V29, V30 // Mask 0x0000ff000000ff00...
    	MOVD   $0xffff, R21
    	SLD    $16, R21
    	MTVSRD R21, V10
    	VSPLTW $1, V10, V31      // Mask 0xffff0000ffff0000...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  6. src/debug/macho/file_test.go

    			&Dylib{nil, "/usr/lib/libSystem.B.dylib", 0x2, 0x6f0104, 0x10000},
    		},
    		[]*SectionHeader{
    			{"__text", "__TEXT", 0x1f68, 0x88, 0xf68, 0x2, 0x0, 0x0, 0x80000400},
    			{"__cstring", "__TEXT", 0x1ff0, 0xd, 0xff0, 0x0, 0x0, 0x0, 0x2},
    			{"__data", "__DATA", 0x2000, 0x14, 0x1000, 0x2, 0x0, 0x0, 0x0},
    			{"__dyld", "__DATA", 0x2014, 0x1c, 0x1014, 0x2, 0x0, 0x0, 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  7. src/image/color/ycbcr.go

    	// returns values in the range [0, 0xffff] instead of [0, 0xff].
    
    	w := 0xffff - uint32(c.K)*0x101
    	r := (0xffff - uint32(c.C)*0x101) * w / 0xffff
    	g := (0xffff - uint32(c.M)*0x101) * w / 0xffff
    	b := (0xffff - uint32(c.Y)*0x101) * w / 0xffff
    	return r, g, b, 0xffff
    }
    
    // CMYKModel is the [Model] for CMYK colors.
    var CMYKModel Model = ModelFunc(cmykModel)
    
    func cmykModel(c Color) Color {
    	if _, ok := c.(CMYK); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    		return false
    	case b1 < hangulEnd1:
    		return true
    	}
    	return b1 == hangulEnd1 && b[2] < hangulEnd2
    }
    
    // Caller must ensure len(b) >= 2.
    func isJamoVT(b []byte) bool {
    	// True if (rune & 0xff00) == jamoLBase
    	return b[0] == jamoLBase0 && (b[1]&0xFC) == jamoLBase1
    }
    
    func isHangulWithoutJamoT(b []byte) bool {
    	c, _ := utf8.DecodeRune(b)
    	c -= hangulBase
    	return c < jamoLVTCount && c%jamoTCount == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/composition.go

    		return false
    	case b1 < hangulEnd1:
    		return true
    	}
    	return b1 == hangulEnd1 && b[2] < hangulEnd2
    }
    
    // Caller must ensure len(b) >= 2.
    func isJamoVT(b []byte) bool {
    	// True if (rune & 0xff00) == jamoLBase
    	return b[0] == jamoLBase0 && (b[1]&0xFC) == jamoLBase1
    }
    
    func isHangulWithoutJamoT(b []byte) bool {
    	c, _ := utf8.DecodeRune(b)
    	c -= hangulBase
    	return c < jamoLVTCount && c%jamoTCount == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  10. src/debug/elf/file.go

    			return nil, &FormatError{shoff, "invalid ELF shnum contained in sh_size", shnum}
    		}
    
    		// If the section name string table section index is greater than or
    		// equal to SHN_LORESERVE (0xff00), this member has the value
    		// SHN_XINDEX (0xffff) and the actual index of the section name
    		// string table section is contained in the sh_link field of the
    		// section header at index 0.
    		if shstrndx == int(SHN_XINDEX) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top