Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 139 for csflags (0.15 sec)

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

    		s.values = make([]stackValState, n)
    	}
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			s.values[v.ID].typ = v.Type
    			s.values[v.ID].needSlot = !v.Type.IsMemory() && !v.Type.IsVoid() && !v.Type.IsFlags() && f.getHome(v.ID) == nil && !v.rematerializeable() && !v.OnWasmStack
    			s.values[v.ID].isArg = hasAnyArgOp(v)
    			if f.pass.debug > stackDebug && s.values[v.ID].needSlot {
    				fmt.Printf("%s needs a stack slot\n", v)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/syscall_windows.go

    	BufferCount uint32
    	Control     syscall.WSABuf
    	Flags       uint32
    }
    
    //sys	WSASocket(af int32, typ int32, protocol int32, protinfo *syscall.WSAProtocolInfo, group uint32, flags uint32) (handle syscall.Handle, err error) [failretval==syscall.InvalidHandle] = ws2_32.WSASocketW
    //sys	WSAGetOverlappedResult(h syscall.Handle, o *syscall.Overlapped, bytes *uint32, wait bool, flags *uint32) (err error) = ws2_32.WSAGetOverlappedResult
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    //sys	Faccessat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchflags(fd int, flags int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    //sys	Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error)
    //sys	Flock(fd int, how int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    //sys	Dup2(from int, to int) (err error)
    //sys	Dup3(from int, to int, flags int) (err error)
    //sys	Exit(code int)
    //sys	Faccessat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchflags(fd int, flags int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    //sys	Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	Srelptr  uint64  // File Offset To Relocation
    	Slnnoptr uint64  // File Offset To Line Numbers
    	Snreloc  uint32  // Number Of Relocation Entries
    	Snlnno   uint32  // Number Of Line Number Entries
    	Sflags   uint32  // flags
    }
    
    // Flags defining the section type.
    const (
    	STYP_DWARF  = 0x0010
    	STYP_TEXT   = 0x0020
    	STYP_DATA   = 0x0040
    	STYP_BSS    = 0x0080
    	STYP_EXCEPT = 0x0100
    	STYP_INFO   = 0x0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/build.go

    		}
    		if load.BuildLdflags.Present() {
    			fmt.Println("go build: when using gccgo toolchain, please pass linker flags using -gccgoflags, not -ldflags")
    		}
    	case "gc":
    		if load.BuildGccgoflags.Present() {
    			fmt.Println("go build: when using gc toolchain, please pass compile flags using -gcflags, and linker flags using -ldflags")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/go/build/build.go

    		}
    
    		switch verb {
    		case "CFLAGS", "CPPFLAGS", "CXXFLAGS", "FFLAGS", "LDFLAGS":
    			// Change relative paths to absolute.
    			ctxt.makePathsAbsolute(args, di.Dir)
    		}
    
    		switch verb {
    		case "CFLAGS":
    			di.CgoCFLAGS = append(di.CgoCFLAGS, args...)
    		case "CPPFLAGS":
    			di.CgoCPPFLAGS = append(di.CgoCPPFLAGS, args...)
    		case "CXXFLAGS":
    			di.CgoCXXFLAGS = append(di.CgoCXXFLAGS, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/cpu.go

    	ARDCYCLE
    	ARDCYCLEH
    	ARDTIME
    	ARDTIMEH
    	ARDINSTRET
    	ARDINSTRETH
    
    	// 11.2: Floating-Point Control and Status Register
    	AFRCSR
    	AFSCSR
    	AFRRM
    	AFSRM
    	AFRFLAGS
    	AFSFLAGS
    	AFSRMI
    	AFSFLAGSI
    
    	// 11.5: Single-Precision Load and Store Instructions
    	AFLW
    	AFSW
    
    	// 11.6: Single-Precision Floating-Point Computational Instructions
    	AFADDS
    	AFSUBS
    	AFMULS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // If the condition does not set the flags, we need to generate a comparison.
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 1
        => (CondSelect <t> x y (MOVBQZX <typ.UInt64> check))
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 2
        => (CondSelect <t> x y (MOVWQZX <typ.UInt64> check))
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sys	Faccessat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchflags(fd int, flags int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    //sys	Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error)
    //sys	Flock(fd int, how int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top