Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for si8c (0.14 sec)

  1. test/codegen/fuse.go

    // ---------------------------------- //
    
    func si1c(c <-chan int64) {
    	// amd64:"CMPQ\t.+, [$]256"
    	// s390x:"CLGIJ\t[$]12, R[0-9]+, [$]255"
    	for x := <-c; x >= 0 && x < 256; x = <-c {
    	}
    }
    
    func si2c(c <-chan int32) {
    	// amd64:"CMPL\t.+, [$]256"
    	// s390x:"CLIJ\t[$]12, R[0-9]+, [$]255"
    	for x := <-c; x >= 0 && x < 256; x = <-c {
    	}
    }
    
    func si3c(c <-chan int16) {
    	// amd64:"CMPW\t.+, [$]256"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 03 14:30:26 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  2. src/syscall/syscall_freebsd_arm.go

    	written = int(writtenOut)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 13:10:54 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  3. src/syscall/syscall_freebsd_386.go

    	written = int(writtenOut)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 13:10:54 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go

    	msghdr.Iovlen = int32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) // sic
    
    //sys	Fstat(fd int, stat *Stat_t) (err error)
    //sys	Fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
    //sys	Fstatfs(fd int, stat *Statfs_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/timeformat/timeformat.go

    func badFormatAt(info *types.Info, e ast.Expr) int {
    	tv, ok := info.Types[e]
    	if !ok { // no type info, assume good
    		return -1
    	}
    
    	t, ok := tv.Type.(*types.Basic) // sic, no unalias
    	if !ok || t.Info()&types.IsString == 0 {
    		return -1
    	}
    
    	if tv.Value == nil {
    		return -1
    	}
    
    	return strings.Index(constant.StringVal(tv.Value), badFormat)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    		$2 ~ /^(O|F|FD|NAME|S|PTRACE|PT)_/ ||
    		$2 ~ /^LINUX_REBOOT_CMD_/ ||
    		$2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
    		$2 !~ "NLA_TYPE_MASK" &&
    		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P)_/ ||
    		$2 ~ /^SIOC/ ||
    		$2 ~ /^TIOC/ ||
    		$2 !~ "RTF_BITS" &&
    		$2 ~ /^(IFF|IFT|NET_RT|RTM|RTF|RTV|RTA|RTAX)_/ ||
    		$2 ~ /^BIOC/ ||
    		$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  7. src/syscall/mkerrors.sh

    		$2 ~ /^LINUX_REBOOT_CMD_/ ||
    		$2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
    		$2 !~ "NLA_TYPE_MASK" &&
    		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P)_/ ||
    		$2 ~ /^SIOC/ ||
    		$2 ~ /^TIOC/ ||
    		$2 !~ "RTF_BITS" &&
    		$2 ~ /^(IFF|IFT|NET_RT|RTM|RTF|RTV|RTA|RTAX)_/ ||
    		$2 ~ /^BIOC/ ||
    		$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
    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/fmt/scan.go

    }
    
    func (s *ss) notEOF() {
    	// Guarantee there is data to be read.
    	if r := s.getRune(); r == eof {
    		panic(io.EOF)
    	}
    	s.UnreadRune()
    }
    
    // accept checks the next rune in the input. If it's a byte (sic) in the string, it puts it in the
    // buffer and returns true. Otherwise it return false.
    func (s *ss) accept(ok string) bool {
    	return s.consume(ok, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 !~ /^RTC_VL_(ACCURACY|BACKUP|DATA)/ &&
    		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTC|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P|NETNSA)_/ ||
    		$2 ~ /^SOCK_|SK_DIAG_|SKNLGRP_$/ ||
    		$2 ~ /^FIORDCHK$/ ||
    		$2 ~ /^SIOC/ ||
    		$2 ~ /^TIOC/ ||
    		$2 ~ /^TCGET/ ||
    		$2 ~ /^TCSET/ ||
    		$2 ~ /^TC(FLSH|SBRKP?|XONC)$/ ||
    		$2 !~ "RTF_BITS" &&
    		$2 ~ /^(IFF|IFT|NET_RT|RTM(GRP)?|RTF|RTV|RTA|RTAX)_/ ||
    		$2 ~ /^BIOC/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	// no pointers, so any changes we make here are local
    	// and will not propagate back out to the caller.
    
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    	// Adjust opcode [sic].
    	switch inst.Op {
    	case FDIV, FDIVR, FSUB, FSUBR, FDIVP, FDIVRP, FSUBP, FSUBRP:
    		// DC E0, DC F0: libopcodes swaps FSUBR/FSUB and FDIVR/FDIV, at least
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top