Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sat32 (0.05 sec)

  1. src/cmd/compile/internal/syntax/pos.go

    type Pos struct {
    	base      *PosBase
    	line, col uint32
    }
    
    // MakePos returns a new Pos for the given PosBase, line and column.
    func MakePos(base *PosBase, line, col uint) Pos { return Pos{base, sat32(line), sat32(col)} }
    
    // TODO(gri) IsKnown makes an assumption about linebase < 1.
    // Maybe we should check for Base() != nil instead.
    
    func (pos Pos) Pos() Pos       { return pos }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/DefaultWatchableFileSystemDetector.java

            // HFS and HFS+ on macOS
            "hfs",
            "ext3",
            "ext4",
            "btrfs",
            "xfs",
            // NTFS on macOS
            "ntfs",
            // NTFS on Windows
            "NTFS",
            // FAT32 on macOS
            "msdos",
            // exFAT on macOS
            "exfat",
            // VirtualBox FS
            "vboxsf"
        );
    
        private final FileSystems fileSystems;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/reloctype.go

    	// adrp followed by a LD16 or ST16 instruction.
    	R_ARM64_PCREL_LDST16
    
    	// R_ARM64_PCREL_LDST32 resolves a PC-relative addresses instruction sequence, usually an
    	// adrp followed by a LD32 or ST32 instruction.
    	R_ARM64_PCREL_LDST32
    
    	// R_ARM64_PCREL_LDST64 resolves a PC-relative addresses instruction sequence, usually an
    	// adrp followed by a LD64 or ST64 instruction.
    	R_ARM64_PCREL_LDST64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top