Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for movable (0.18 sec)

  1. src/cmd/asm/internal/asm/testdata/s390x.s

    	MOVDBR	R1, R2                // b90f0021
    	MOVWBR	R3, R4                // b91f0043
    
    	MOVDEQ	R0, R1                // b9e28010
    	MOVDGE	R2, R3                // b9e2a032
    	MOVDGT	R4, R5                // b9e22054
    	MOVDLE	R6, R7                // b9e2c076
    	MOVDLT	R8, R9                // b9e24098
    	MOVDNE	R10, R11              // b9e270ba
    
    	LOCR	$3, R2, R1            // b9f23012
    	LOCGR	$7, R5, R6            // b9e27065
    
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	MOVBEW (R11), R11                       // 66450f38f01b
    	MOVBEL DX, (BX)                         // 0f38f113
    	MOVBEL R11, (BX)                        // 440f38f11b
    	MOVBEL DX, (R11)                        // 410f38f113
    	MOVBEL R11, (R11)                       // 450f38f11b
    	MOVBEL (BX), DX                         // 0f38f013
    	MOVBEL (R11), DX                        // 410f38f013
    	MOVBEL (BX), R11                        // 440f38f01b
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/10-proposal.yml

    name: Proposals
    description: New external API or other notable changes
    title: "proposal: import/path: proposal title"
    labels: ["Proposal"]
    body:
      - type: markdown
        attributes:
          value: "Our proposal process is documented here: https://go.dev/s/proposal-process"
      - type: textarea
        id: proposal-details
        attributes:
          label: "Proposal Details"
          description: "Please provide the details of your proposal here."
        validations:
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 471 bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    		return false
    	}
    	s = s[:len(s)-3]
    	if s == "CFType" {
    		return true
    	}
    	if c.getTypeIDs[s] {
    		return true
    	}
    	if i := strings.Index(s, "Mutable"); i >= 0 && c.getTypeIDs[s[:i]+s[i+7:]] {
    		// Mutable and immutable variants share a type ID.
    		return true
    	}
    	return false
    }
    
    // Comment from Darwin's CFInternal.h
    /*
    // Tagged pointer support
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. api/go1.15.txt

    pkg debug/pe, const IMAGE_FILE_NET_RUN_FROM_SWAP ideal-int
    pkg debug/pe, const IMAGE_FILE_RELOCS_STRIPPED = 1
    pkg debug/pe, const IMAGE_FILE_RELOCS_STRIPPED ideal-int
    pkg debug/pe, const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP = 1024
    pkg debug/pe, const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP ideal-int
    pkg debug/pe, const IMAGE_FILE_SYSTEM = 4096
    pkg debug/pe, const IMAGE_FILE_SYSTEM ideal-int
    pkg debug/pe, const IMAGE_FILE_UP_SYSTEM_ONLY = 16384
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Jul 17 02:15:01 GMT 2020
    - 7.6K bytes
    - Viewed (0)
Back to top