Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setlkw (0.16 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. 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