Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fgt32 (0.04 sec)

  1. src/runtime/softfloat64.go

    }
    
    func feq32(x, y uint32) bool {
    	cmp, nan := fcmp64(f32to64(x), f32to64(y))
    	return cmp == 0 && !nan
    }
    
    func fgt32(x, y uint32) bool {
    	cmp, nan := fcmp64(f32to64(x), f32to64(y))
    	return cmp >= 1 && !nan
    }
    
    func fge32(x, y uint32) bool {
    	cmp, nan := fcmp64(f32to64(x), f32to64(y))
    	return cmp >= 0 && !nan
    }
    
    func feq64(x, y uint64) bool {
    	cmp, nan := fcmp64(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K 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/compile/internal/ssagen/ssa.go

    		ssa.OpLess64F: {typecheck.LookupRuntimeFunc("fgt64"), types.TBOOL},
    		ssa.OpLess32F: {typecheck.LookupRuntimeFunc("fgt32"), types.TBOOL},
    		ssa.OpLeq64F:  {typecheck.LookupRuntimeFunc("fge64"), types.TBOOL},
    		ssa.OpLeq32F:  {typecheck.LookupRuntimeFunc("fge32"), types.TBOOL},
    
    		ssa.OpCvt32to32F:  {typecheck.LookupRuntimeFunc("fint32to32"), types.TFLOAT32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	EM_Z80           Machine = 220 /* Zilog Z80 */
    	EM_VISIUM        Machine = 221 /* Controls and Data Services VISIUMcore processor */
    	EM_FT32          Machine = 222 /* FTDI Chip FT32 high performance 32-bit RISC architecture */
    	EM_MOXIE         Machine = 223 /* Moxie processor family */
    	EM_AMDGPU        Machine = 224 /* AMD GPU architecture */
    	EM_RISCV         Machine = 243 /* RISC-V */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top