Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setlkw (0.23 sec)

  1. src/cmd/compile/internal/ssa/rewrite386.go

    	return false
    }
    func rewriteValue386_Op386SETLE(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (SETLE (InvertFlags x))
    	// result: (SETGE x)
    	for {
    		if v_0.Op != Op386InvertFlags {
    			break
    		}
    		x := v_0.Args[0]
    		v.reset(Op386SETGE)
    		v.AddArg(x)
    		return true
    	}
    	// match: (SETLE (FlagEQ))
    	// result: (MOVLconst [1])
    	for {
    		if v_0.Op != Op386FlagEQ {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	SETAE:           "SETAE",
    	SETB:            "SETB",
    	SETBE:           "SETBE",
    	SETE:            "SETE",
    	SETG:            "SETG",
    	SETGE:           "SETGE",
    	SETL:            "SETL",
    	SETLE:           "SETLE",
    	SETNE:           "SETNE",
    	SETNO:           "SETNO",
    	SETNP:           "SETNP",
    	SETNS:           "SETNS",
    	SETO:            "SETO",
    	SETP:            "SETP",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const F_SETFL ideal-int
    pkg syscall (netbsd-arm64-cgo), const F_SETLK = 8
    pkg syscall (netbsd-arm64-cgo), const F_SETLK ideal-int
    pkg syscall (netbsd-arm64-cgo), const F_SETLKW = 9
    pkg syscall (netbsd-arm64-cgo), const F_SETLKW ideal-int
    pkg syscall (netbsd-arm64-cgo), const F_SETNOSIGPIPE = 14
    pkg syscall (netbsd-arm64-cgo), const F_SETNOSIGPIPE ideal-int
    pkg syscall (netbsd-arm64-cgo), const F_SETOWN = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const F_SETFL ideal-int
    pkg syscall (darwin-arm64), const F_SETLK = 8
    pkg syscall (darwin-arm64), const F_SETLK ideal-int
    pkg syscall (darwin-arm64), const F_SETLKW = 9
    pkg syscall (darwin-arm64), const F_SETLKW ideal-int
    pkg syscall (darwin-arm64), const F_SETLKWTIMEOUT = 10
    pkg syscall (darwin-arm64), const F_SETLKWTIMEOUT ideal-int
    pkg syscall (darwin-arm64), const F_SETNOSIGPIPE = 73
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top