Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for 0xffff (0.14 sec)

  1. src/syscall/zerrors_linux_ppc64le.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
  2. src/syscall/zerrors_linux_arm64.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (ADDconst [c] x) && buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && uint32(-c)<=0xffff => (SUBconst [-c] x)
    (SUBconst [c] x) && buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && uint32(-c)<=0xffff => (ADDconst [-c] x)
    (ANDconst [c] x) && buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && ^uint32(c)<=0xffff => (BICconst [int32(^uint32(c))] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    		default:
    			return C_GOK
    		}
    
    		if c.instoffset >= 0 {
    			if c.instoffset == 0 {
    				return C_ZCON
    			}
    			if c.instoffset <= 0x7fff {
    				return C_SCON
    			}
    			if c.instoffset <= 0xffff {
    				return C_ANDCON
    			}
    			if c.instoffset&0xffff == 0 && isuint32(uint64(c.instoffset)) { /* && ((instoffset & (1<<31)) == 0) */
    				return C_UCON
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    //sys	CreateSymbolicLink(symlinkfilename *uint16, targetfilename *uint16, flags uint32) (err error) [failretval&0xff==0] = CreateSymbolicLinkW
    //sys	CreateHardLink(filename *uint16, existingfilename *uint16, reserved uintptr) (err error) [failretval&0xff==0] = CreateHardLinkW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    		data := (*symbolicLinkReparseBuffer)(unsafe.Pointer(&rdb.reparseBuffer))
    		p := (*[0xffff]uint16)(unsafe.Pointer(&data.PathBuffer[0]))
    		s = UTF16ToString(p[data.PrintNameOffset/2 : (data.PrintNameLength-data.PrintNameOffset)/2])
    	case IO_REPARSE_TAG_MOUNT_POINT:
    		data := (*mountPointReparseBuffer)(unsafe.Pointer(&rdb.reparseBuffer))
    		p := (*[0xffff]uint16)(unsafe.Pointer(&data.PathBuffer[0]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
    
    func (w WaitStatus) Continued() bool { return w == 0xFFFF }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) Signal() syscall.Signal {
    	if !w.Signaled() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
    
    func (w WaitStatus) Continued() bool { return w == 0xFFFF }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) Signal() Signal {
    	if !w.Signaled() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/asm5.go

    		return y, x
    	}
    	return 0, 0
    }
    
    func immaddr(v int32) int32 {
    	if v >= 0 && v <= 0xfff {
    		return v&0xfff | 1<<24 | 1<<23 /* pre indexing */ /* pre indexing, up */
    	}
    	if v >= -0xfff && v < 0 {
    		return -v&0xfff | 1<<24 /* pre indexing */
    	}
    	return 0
    }
    
    func immfloat(v int32) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/asm.go

    	return op | (i&0xFFFFF)<<5 | (r2&0x1F)<<0 // ui20, rd5
    }
    
    func OP_15I(op uint32, i uint32) uint32 {
    	return op | (i&0x7FFF)<<0
    }
    
    // Encoding for the 'b' or 'bl' instruction.
    func OP_B_BL(op uint32, i uint32) uint32 {
    	return op | ((i & 0xFFFF) << 10) | ((i >> 16) & 0x3FF)
    }
    
    func (c *ctxt0) asmout(p *obj.Prog, o *Optab, out []uint32) {
    	o1 := uint32(0)
    	o2 := uint32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
Back to top