Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for moveFile (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r1, _, e1 := syscall.Syscall(procMoveFileExW.Addr(), 3, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(to)), uintptr(flags))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func MoveFile(from *uint16, to *uint16) (err error) {
    	r1, _, e1 := syscall.Syscall(procMoveFileW.Addr(), 2, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(to)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    // These optimizations need to be synchronized with the asmout function.
    func (o *Optab) size(ctxt *obj.Link, p *obj.Prog) int {
    	// Optimize adrp+add+ld/st to adrp+ld/st(offset).
    	sz := movesize(p.As)
    	if sz != -1 {
    		// Relocations R_AARCH64_LDST{64,32,16,8}_ABS_LO12_NC can only generate 8-byte, 4-byte,
    		// 2-byte and 1-byte aligned addresses, so the address of load/store must be aligned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		return true
    	}
    	// match: (Move [s] {t} dst src mem)
    	// cond: (s > 16 && logLargeCopy(v, s) || t.Alignment()%4 != 0)
    	// result: (LoweredMove [int32(t.Alignment())] dst src (ADDconst <src.Type> src [int32(s-moveSize(t.Alignment(), config))]) mem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		t := auxToType(v.Aux)
    		dst := v_0
    		src := v_1
    		mem := v_2
    		if !(s > 16 && logLargeCopy(v, s) || t.Alignment()%4 != 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	Right  int32
    	Bottom int32
    }
    
    type GUIThreadInfo struct {
    	Size        uint32
    	Flags       uint32
    	Active      HWND
    	Focus       HWND
    	Capture     HWND
    	MenuOwner   HWND
    	MoveSize    HWND
    	CaretHandle HWND
    	CaretRect   Rect
    }
    
    const (
    	DWMWA_NCRENDERING_ENABLED            = 1
    	DWMWA_NCRENDERING_POLICY             = 2
    	DWMWA_TRANSITIONS_FORCEDISABLED      = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		return true
    	}
    	// match: (Move [s] {t} dst src mem)
    	// cond: s > 24 && logLargeCopy(v, s) || t.Alignment()%8 != 0
    	// result: (LoweredMove [t.Alignment()] dst src (ADDVconst <src.Type> src [s-moveSize(t.Alignment(), config)]) mem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		t := auxToType(v.Aux)
    		dst := v_0
    		src := v_1
    		mem := v_2
    		if !(s > 24 && logLargeCopy(v, s) || t.Alignment()%8 != 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		return true
    	}
    	// match: (Move [s] {t} dst src mem)
    	// cond: s > 24 && logLargeCopy(v, s) || t.Alignment()%8 != 0
    	// result: (LoweredMove [t.Alignment()] dst src (ADDVconst <src.Type> src [s-moveSize(t.Alignment(), config)]) mem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		t := auxToType(v.Aux)
    		dst := v_0
    		src := v_1
    		mem := v_2
    		if !(s > 24 && logLargeCopy(v, s) || t.Alignment()%8 != 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v.AddArg3(dst, src, mem)
    		return true
    	}
    	// match: (Move [s] {t} dst src mem)
    	// cond: (s <= 16 || logLargeCopy(v, s))
    	// result: (LoweredMove [t.Alignment()] dst src (ADDI <src.Type> [s-moveSize(t.Alignment(), config)] src) mem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		t := auxToType(v.Aux)
    		dst := v_0
    		src := v_1
    		mem := v_2
    		if !(s <= 16 || logLargeCopy(v, s)) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top