Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for 0x7c00 (0.1 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/cmd/internal/obj/s390x/asmz.go

    	op_BAL     uint32 = 0x4500 // FORMAT_RX1        BRANCH AND LINK
    	op_BALR    uint32 = 0x0500 // FORMAT_RR         BRANCH AND LINK
    	op_BAS     uint32 = 0x4D00 // FORMAT_RX1        BRANCH AND SAVE
    	op_BASR    uint32 = 0x0D00 // FORMAT_RR         BRANCH AND SAVE
    	op_BASSM   uint32 = 0x0C00 // FORMAT_RR         BRANCH AND SAVE AND SET MODE
    	op_BC      uint32 = 0x4700 // FORMAT_RX2        BRANCH ON CONDITION
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. 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)
  4. src/syscall/wtf8_windows_test.go

    		wstr: []uint16{0xD800, 0xD800},
    	},
    	{
    		// "High surrogate followed by a symbol that is not a surrogate"
    		str:  string([]byte{0xED, 0xA0, 0x80, 0xA}),
    		wstr: []uint16{0xD800, 0xA},
    	},
    	{
    		// "Unmatched high surrogate, followed by a surrogate pair, followed by an unmatched high surrogate"
    		str:  string([]byte{0xED, 0xA0, 0x80, 0xF0, 0x9D, 0x8C, 0x86, 0xED, 0xA0, 0x80}),
    		wstr: []uint16{0xD800, 0xD834, 0xDF06, 0xD800},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue9604.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    var x uint16 = 0xffff
    var y uint16 = 0xfffe
    var a uint16 = 0x7000
    var b uint16 = 0x9000
    
    func main() {
    	// Make sure we truncate to smaller-width types after evaluating expressions.
    	// This is a problem for arm where there is no 16-bit comparison op.
    	if ^x != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 15 23:50:01 UTC 2015
    - 631 bytes
    - Viewed (0)
  6. src/cmd/link/internal/mips64/asm.go

    	case objabi.R_ADDRMIPSTLS:
    		// thread pointer is at 0x7000 offset from the start of TLS data area
    		t := ldr.SymValue(rs) + r.Add() - 0x7000
    		if target.IsOpenbsd() {
    			// OpenBSD mips64 does not currently offset TLS by 0x7000,
    			// as such we need to add this back to get the correct offset.
    			t += 0x7000
    		}
    		if t < -32768 || t >= 32678 {
    			ldr.Errorf(s, "TLS offset out of range %d", t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. src/unicode/digit_test.go

    	0x00DB,
    	0x00F9,
    	0x02EC,
    	0x0535,
    	0x06E6,
    	0x093D,
    	0x0A15,
    	0x0B99,
    	0x0DC0,
    	0x0EDD,
    	0x1000,
    	0x1200,
    	0x1312,
    	0x1401,
    	0x1885,
    	0x2C00,
    	0xA800,
    	0xF900,
    	0xFA30,
    	0xFFDA,
    	0xFFDC,
    	0x10000,
    	0x10300,
    	0x10400,
    	0x20000,
    	0x2F800,
    	0x2FA1D,
    }
    
    func TestDigit(t *testing.T) {
    	for _, r := range testDigit {
    		if !IsDigit(r) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  8. src/math/floor_386.s

    	RET
    
    // func archTrunc(x float64) float64
    TEXT ·archTrunc(SB),NOSPLIT,$0
    	FMOVD   x+0(FP), F0  // F0=x
    	FSTCW   -2(SP)       // save old Control Word
    	MOVW    -2(SP), AX
    	ORW     $0x0c00, AX  // Rounding Control set to truncate
    	MOVW    AX, -4(SP)   // store new Control Word
    	FLDCW   -4(SP)       // load new Control Word
    	FRNDINT              // F0=Trunc(x)
    	FLDCW   -2(SP)       // load old Control Word
    	FMOVDP  F0, ret+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/mips/asm.go

    		}
    
    		return applyrel(target.Arch, ldr, rt, r.Off(), s, val, t), noExtReloc, isOk
    	case objabi.R_ADDRMIPSTLS:
    		// thread pointer is at 0x7000 offset from the start of TLS data area
    		t := ldr.SymValue(rs) + r.Add() - 0x7000
    		if t < -32768 || t >= 32678 {
    			ldr.Errorf(s, "TLS offset out of range %d", t)
    		}
    		return applyrel(target.Arch, ldr, rt, r.Off(), s, val, t), noExtReloc, isOk
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/operand_test.go

    	{"$((1<<63)-1)", "$9223372036854775807"},
    	{"$(-64*1024)", "$-65536"},
    	{"$(1024 * 8)", "$8192"},
    	{"$-1", "$-1"},
    	{"$-24(R4)", "$-24(R4)"},
    	{"$0", "$0"},
    	{"$0(R1)", "$(R1)"},
    	{"$0.5", "$(0.5)"},
    	{"$0x7000", "$28672"},
    	{"$0x88888eef", "$2290650863"},
    	{"$1", "$1"},
    	{"$_main<>(SB)", "$_main<>(SB)"},
    	{"$argframe(FP)", "$argframe(FP)"},
    	{"$runtime·tlsg(SB)", "$runtime.tlsg(SB)"},
    	{"$~3", "$-4"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top