Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for 0xffe0 (0.15 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. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVWreg y:(ANDconst [c] _)) && uint64(c) <= 0xFFFF => y // 0xFFFF is largest immediate constant, when regarded as 32-bit is > 0
    (MOVWreg y:(AND (MOVDconst [c]) _)) && uint64(c) <= 0x7FFFFFFF => y
    
    // small and of zero-extend => either zero-extend or small and
    (ANDconst [c] y:(MOVBZreg _)) && c&0xFF == 0xFF => y
    (ANDconst [0xFF] (MOVBreg x)) => (MOVBZreg x)
    (ANDconst [c] y:(MOVHZreg _))  && c&0xFFFF == 0xFFFF => y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/unicode/tables.go

    		{0xabeb, 0xfd3e, 20819},
    		{0xfd3f, 0xfe10, 209},
    		{0xfe11, 0xfe19, 1},
    		{0xfe30, 0xfe52, 1},
    		{0xfe54, 0xfe61, 1},
    		{0xfe63, 0xfe68, 5},
    		{0xfe6a, 0xfe6b, 1},
    		{0xff01, 0xff03, 1},
    		{0xff05, 0xff0a, 1},
    		{0xff0c, 0xff0f, 1},
    		{0xff1a, 0xff1b, 1},
    		{0xff1f, 0xff20, 1},
    		{0xff3b, 0xff3d, 1},
    		{0xff3f, 0xff5b, 28},
    		{0xff5d, 0xff5f, 2},
    		{0xff60, 0xff65, 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)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// match: (ANDconst [c] y:(MOVHZreg _))
    	// cond: c&0xFFFF == 0xFFFF
    	// result: y
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		y := v_0
    		if y.Op != OpPPC64MOVHZreg || !(c&0xFFFF == 0xFFFF) {
    			break
    		}
    		v.copyOf(y)
    		return true
    	}
    	// match: (ANDconst [0xFFFF] (MOVHreg x))
    	// result: (MOVHZreg x)
    	for {
    		if auxIntToInt64(v.AuxInt) != 0xFFFF || v_0.Op != OpPPC64MOVHreg {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  5. src/internal/bytealg/indexbyte_amd64.s

    	MOVQ DI, (R8)
    	RET
    
    // handle for lengths < 16
    small:
    	TESTQ	BX, BX
    	JEQ	failure
    
    	// Check if we'll load across a page boundary.
    	LEAQ	16(SI), AX
    	TESTW	$0xff0, AX
    	JEQ	endofpage
    
    	MOVOU	(SI), X1 // Load data
    	PCMPEQB	X0, X1	// Compare target byte with each byte in data.
    	PMOVMSKB X1, DX	// Move result bits to integer register.
    	BSFL	DX, DX	// Find first set bit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 19:06:01 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. 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)
  7. src/debug/elf/file_test.go

    			{".debug_ranges", SHT_PROGBITS, 0x0, 0x0, 0xe80, 0x90, 0x0, 0x0, 0x10, 0x0, 0x90},
    			{".shstrtab", SHT_STRTAB, 0x0, 0x0, 0xf10, 0x149, 0x0, 0x0, 0x1, 0x0, 0x149},
    			{".symtab", SHT_SYMTAB, 0x0, 0x0, 0x19a0, 0x6f0, 0x24, 0x39, 0x8, 0x18, 0x6f0},
    			{".strtab", SHT_STRTAB, 0x0, 0x0, 0x2090, 0x1fc, 0x0, 0x0, 0x1, 0x0, 0x1fc},
    		},
    		[]ProgHeader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  8. src/internal/bytealg/count_amd64.s

    	ADDQ DX, R12
    end:
    	MOVQ R12, (R8)
    	RET
    
    // handle for lengths < 16
    small:
    	TESTQ	BX, BX
    	JEQ	endzero
    
    	// Check if we'll load across a page boundary.
    	LEAQ	16(SI), AX
    	TESTW	$0xff0, AX
    	JEQ	endofpage
    
    	// We must ignore high bytes as they aren't part of our slice.
    	// Create mask.
    	MOVB BX, CX
    	MOVQ $1, R10
    	SALQ CL, R10
    	SUBQ $1, R10
    
    	// Load data
    	MOVOU	(SI), X1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:54:43 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. 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)
  10. test/codegen/rotate.go

    	a[i] = bits.RotateLeft32(a[i], 16) & 0xFF0000
    	i++
    	// ppc64x: "RLWNM\t[$]16, R[0-9]+, [$]8, [$]15, R[0-9]+"
    	a[i] = bits.RotateLeft32(a[i]&0xFF, 16)
    	i++
    	// ppc64x: "RLWNM\t[$]4, R[0-9]+, [$]20, [$]27, R[0-9]+"
    	a[i] = bits.RotateLeft32(a[i], 4) & 0xFF0
    	i++
    	// ppc64x: "RLWNM\t[$]16, R[0-9]+, [$]24, [$]31, R[0-9]+"
    	a[i] = bits.RotateLeft32(a[i]&0xFF0000, 16)
    	i++
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top