Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tryMerge (0.06 sec)

  1. src/runtime/syscall_windows.go

    	kind           abiPartKind
    	srcStackOffset uintptr
    	dstStackOffset uintptr // used if kind == abiPartStack
    	dstRegister    int     // used if kind == abiPartReg
    	len            uintptr
    }
    
    func (a *abiPart) tryMerge(b abiPart) bool {
    	if a.kind != abiPartStack || b.kind != abiPartStack {
    		return false
    	}
    	if a.srcStackOffset+a.len == b.srcStackOffset && a.dstStackOffset+a.len == b.dstStackOffset {
    		a.len += b.len
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top