Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for ffffffffff (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	VMADDR_CID_ANY                              = 0xffffffff
    	VMADDR_CID_HOST                             = 0x2
    	VMADDR_CID_HYPERVISOR                       = 0x0
    	VMADDR_CID_LOCAL                            = 0x1
    	VMADDR_FLAG_TO_HOST                         = 0x1
    	VMADDR_PORT_ANY                             = 0xffffffff
    	VM_SOCKETS_INVALID_VERSION                  = 0xffffffff
    	VQUIT                                       = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	TIME_ZONE_ID_UNKNOWN  = 0
    	TIME_ZONE_ID_STANDARD = 1
    
    	TIME_ZONE_ID_DAYLIGHT = 2
    	IGNORE                = 0
    	INFINITE              = 0xffffffff
    
    	WAIT_ABANDONED = 0x00000080
    	WAIT_OBJECT_0  = 0x00000000
    	WAIT_FAILED    = 0xFFFFFFFF
    
    	// Access rights for process.
    	PROCESS_CREATE_PROCESS            = 0x0080
    	PROCESS_CREATE_THREAD             = 0x0002
    	PROCESS_DUP_HANDLE                = 0x0040
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// NOP
    	{0xffffffff, 0xd503201f, NOP, instArgs{}, nil},
    	// SEV
    	{0xffffffff, 0xd503209f, SEV, instArgs{}, nil},
    	// SEVL
    	{0xffffffff, 0xd50320bf, SEVL, instArgs{}, nil},
    	// WFE
    	{0xffffffff, 0xd503205f, WFE, instArgs{}, nil},
    	// WFI
    	{0xffffffff, 0xd503207f, WFI, instArgs{}, nil},
    	// YIELD
    	{0xffffffff, 0xd503203f, YIELD, instArgs{}, nil},
    	// HINT #<imm>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	event = uint32(r0)
    	if event == 0xffffffff {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func WaitForSingleObject(handle Handle, waitMilliseconds uint32) (event uint32, err error) {
    	r0, _, e1 := syscall.Syscall(procWaitForSingleObject.Addr(), 2, uintptr(handle), uintptr(waitMilliseconds), 0)
    	event = uint32(r0)
    	if event == 0xffffffff {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		return true
    	}
    	// match: (SGTUconst [c] (SRLconst _ [d]))
    	// cond: uint32(d) <= 31 && 0xffffffff>>uint32(d) < uint32(c)
    	// result: (MOVWconst [1])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpMIPSSRLconst {
    			break
    		}
    		d := auxIntToInt32(v_0.AuxInt)
    		if !(uint32(d) <= 31 && 0xffffffff>>uint32(d) < uint32(c)) {
    			break
    		}
    		v.reset(OpMIPSMOVWconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	SHT_HIPROC         SectionType = 0x7fffffff /* specific section header types */
    	SHT_LOUSER         SectionType = 0x80000000 /* reserved range for application */
    	SHT_HIUSER         SectionType = 0xffffffff /* specific indexes */
    )
    
    var shtStrings = []intName{
    	{0, "SHT_NULL"},
    	{1, "SHT_PROGBITS"},
    	{2, "SHT_SYMTAB"},
    	{3, "SHT_STRTAB"},
    	{4, "SHT_RELA"},
    	{5, "SHT_HASH"},
    	{6, "SHT_DYNAMIC"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    		ctxt.Diag("arm64 ops not initialized, call arm64.buildop first")
    	}
    
    	c := ctxt7{ctxt: ctxt, newprog: newprog, cursym: cursym, autosize: int32(p.To.Offset & 0xffffffff), extrasize: int32(p.To.Offset >> 32)}
    	p.To.Offset &= 0xffffffff // extrasize is no longer needed
    
    	bflag := 1
    	pc := int64(0)
    	p.Pc = pc
    	var m int
    	var o *Optab
    	for p = p.Link; p != nil; p = p.Link {
    		p.Pc = pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteWasm.go

    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (ZeroExt32to64 x)
    	// result: (I64And x (I64Const [0xffffffff]))
    	for {
    		x := v_0
    		v.reset(OpWasmI64And)
    		v0 := b.NewValue0(v.Pos, OpWasmI64Const, typ.Int64)
    		v0.AuxInt = int64ToAuxInt(0xffffffff)
    		v.AddArg2(x, v0)
    		return true
    	}
    }
    func rewriteValueWasm_OpZeroExt8to16(v *Value) bool {
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // other known comparisons
    (CMPconst  (MOVBUreg _) [c]) && 0xff < c       => (FlagConstant [subFlags64(0,1)])
    (CMPconst  (MOVHUreg _) [c]) && 0xffff < c     => (FlagConstant [subFlags64(0,1)])
    (CMPconst  (MOVWUreg _) [c]) && 0xffffffff < c => (FlagConstant [subFlags64(0,1)])
    (CMPconst  (ANDconst _ [m]) [n]) && 0 <= m && m < n => (FlagConstant [subFlags64(0,1)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Trunc64to8  (And64 (Const64 [y]) x)) && y&0xFF == 0xFF => (Trunc64to8 x)
    (Trunc64to16 (And64 (Const64 [y]) x)) && y&0xFFFF == 0xFFFF => (Trunc64to16 x)
    (Trunc64to32 (And64 (Const64 [y]) x)) && y&0xFFFFFFFF == 0xFFFFFFFF => (Trunc64to32 x)
    (Trunc32to8  (And32 (Const32 [y]) x)) && y&0xFF == 0xFF => (Trunc32to8 x)
    (Trunc32to16 (And32 (Const32 [y]) x)) && y&0xFFFF == 0xFFFF => (Trunc32to16 x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top