Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for fcmp64 (0.11 sec)

  1. src/math/atan_s390x.s

    // with coefficients determined with a Remez exchange algorithm.
    
    TEXT	·atanAsm(SB), NOSPLIT, $0-16
    	FMOVD	x+0(FP), F0
    	//special case Atan(±0) = ±0
    	FMOVD   $(0.0), F1
    	FCMPU   F0, F1
    	BEQ     atanIsZero
    
    	MOVD	$·atanrodataL8<>+0(SB), R5
    	MOVH	$0x3FE0, R3
    	LGDR	F0, R1
    	RISBGNZ	$32, $63, $32, R1, R1
    	RLL	$16, R1, R2
    	ANDW	$0x7FF0, R2
    	MOVW	R2, R6
    	MOVW	R3, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  2. src/internal/bytealg/compare_ppc64x.s

    	RET
    #else
    	CMP	R9,$8
    	BLT	cmp4
    	ANDCC	$7,R9,R9
    	_LDBEX	(R0)(R5),R10
    	_LDBEX	(R0)(R6),R11
    	_LDBEX	(R9)(R5),R12
    	_LDBEX	(R9)(R6),R14
    	CMPU	R10,R11,CR0
    	SETB_CR0(R5)
    	CMPU	R12,R14,CR1
    	SETB_CR1(R6)
    	CRAND   CR0EQ,CR1EQ,CR1EQ // If both equal, length determines return value.
    	ISEL	CR0EQ,R6,R5,R4
    	ISEL	CR1EQ,R3,R4,R3
    	RET
    
    	PCALIGN	$16
    cmp4:	// 4 - 7B
    	CMP	R9,$4
    	BLT	cmp2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. src/math/tanh_s390x.s

    // polynomial coefficients determined with a Remez exchange algorithm.
    
    TEXT ·tanhAsm(SB),NOSPLIT,$0-16
    	FMOVD   x+0(FP), F0
    	// special case Tanh(±0) = ±0
    	FMOVD   $(0.0), F1
    	FCMPU   F0, F1
    	BEQ     tanhIsZero
    	MOVD    $tanhrodataL18<>+0(SB), R5
    	LTDBR	F0, F0
    	MOVD    $0x4034000000000000, R1
    	BLTU    L15
    	FMOVD   F0, F1
    L2:
    	MOVD    $tanhxadd<>+0(SB), R2
    	FMOVD   0(R2), F2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  4. src/syscall/types_freebsd.go

    #include <sys/time.h>
    #include <sys/types.h>
    #include <sys/un.h>
    #include <sys/wait.h>
    #include <net/bpf.h>
    #include <net/if.h>
    #include <net/if_dl.h>
    #include <net/route.h>
    #include <netinet/in.h>
    #include <netinet/icmp6.h>
    #include <netinet/tcp.h>
    
    enum {
    	sizeofPtr = sizeof(void*),
    };
    
    union sockaddr_all {
    	struct sockaddr s1;	// this one gets used for fields
    	struct sockaddr_in s2;	// these pad it out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    		$2 == "PENDIN" ||
    		$2 == "TOSTOP" ||
    		$2 ~ /^PAR/ ||
    		$2 ~ /^SIG[^_]/ ||
    		$2 ~ /^O[CNPFP][A-Z]+[^_][A-Z]+$/ ||
    		$2 ~ /^IN_/ ||
    		$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
    		$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|ICMP6|TCP|EVFILT|NOTE|EV|SHUT|PROT|MAP|PACKET|MSG|SCM|MCL|DT|MADV|PR)_/ ||
    		$2 == "ICMPV6_FILTER" ||
    		$2 == "SOMAXCONN" ||
    		$2 == "NAME_MAX" ||
    		$2 == "IFNAMSIZ" ||
    		$2 ~ /^CTL_(MAXNAME|NET|QUERY)$/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (2)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	{0xffe0fc1f, 0x1e202010, FCMPE, instArgs{arg_Sn, arg_Sm}, nil},
    	// FCMPE <Sn>, #0.0
    	{0xffe0fc1f, 0x1e202018, FCMPE, instArgs{arg_Sn, arg_immediate_floatzero}, nil},
    	// FCMPE <Dn>, <Dm>
    	{0xffe0fc1f, 0x1e602010, FCMPE, instArgs{arg_Dn, arg_Dm}, nil},
    	// FCMPE <Dn>, #0.0
    	{0xffe0fc1f, 0x1e602018, FCMPE, instArgs{arg_Dn, arg_immediate_floatzero}, nil},
    	// FCSEL <Sd>, <Sn>, <Sm>, <cond>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  7. src/syscall/mkerrors.sh

    		$2 == "PENDIN" ||
    		$2 == "TOSTOP" ||
    		$2 ~ /^PAR/ ||
    		$2 ~ /^SIG[^_]/ ||
    		$2 ~ /^O[CNPFP][A-Z]+[^_][A-Z]+$/ ||
    		$2 ~ /^IN_/ ||
    		$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
    		$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|ICMP6|TCP|EVFILT|NOTE|EV|SHUT|PROT|MAP|PACKET|MSG|SCM|MCL|DT|MADV|PR)_/ ||
    		$2 == "ICMPV6_FILTER" ||
    		$2 == "SOMAXCONN" ||
    		$2 == "NAME_MAX" ||
    		$2 == "IFNAMSIZ" ||
    		$2 ~ /^CTL_(MAXNAME|NET|QUERY)$/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		args[2] = args[3]
    		return op + " " + args[1] + ", " + args[2] + ", " + args[0]
    
    	case FCCMP, FCCMPE:
    		args[0], args[1] = args[1], args[0]
    		fallthrough
    
    	case FCMP, FCMPE:
    		if _, ok := inst.Args[1].(Imm); ok {
    			args[1] = "$(0.0)"
    		}
    		fallthrough
    
    	case FADD, FSUB, FMUL, FNMUL, FDIV, FMAX, FMIN, FMAXNM, FMINNM, FCSEL, FMADD, FMSUB, FNMADD, FNMSUB:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Less(16|8)U x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMPWU (MOV(H|B)Zreg x) (MOV(H|B)Zreg y)))
    (Less64F     x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (FCMP x y))
    (Less32F     x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (FCMPS x y))
    
    (Leq64      x y) => (LOCGR {s390x.LessOrEqual} (MOVDconst [0]) (MOVDconst [1]) (CMP x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <sys/wait.h>
    #include <sys/ioctl.h>
    #include <sys/mkdev.h>
    #include <net/bpf.h>
    #include <net/if.h>
    #include <net/if_arp.h>
    #include <net/if_types.h>
    #include <net/route.h>
    #include <netinet/icmp6.h>
    #include <netinet/in.h>
    #include <netinet/ip.h>
    #include <netinet/ip_mroute.h>
    #include <termios.h>
    '
    
    
    includes='
    #include <sys/types.h>
    #include <sys/file.h>
    #include <fcntl.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top