Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for SBC (0.47 sec)

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

    // Note that these semantics differ from x86: the carry flag has the opposite
    // sense on a subtraction!
    //
    //	On amd64, C=1 represents a borrow, e.g. SBB on amd64 does x - y - C.
    //	On arm64, C=0 represents a borrow, e.g. SBC on arm64 does x - y - ^C.
    //	 (because it does x + ^y + C).
    //
    // See https://en.wikipedia.org/wiki/Carry_flag#Vs._borrow_flag
    type flagConstant uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	CCMN	MI, ZR, R1, $4	                 // e44341ba
    	// MADD Rn,Rm,Ra,Rd
    	MADD	R1, R2, R3, R4                   // 6408019b
    	// CLS
    	CLSW	R1, R2
    	CLS	R1, R2
    	SBC	$0, R1                           // 21001fda
    	SBCW	$0, R1                           // 21001f5a
    	SBCS	$0, R1                           // 21001ffa
    	SBCSW	$0, R1                           // 21001f7a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.ecelp7470"/>
      </mime-type>
      <mime-type type="audio/vnd.nuera.ecelp9600">
        <glob pattern="*.ecelp9600"/>
      </mime-type>
      <mime-type type="audio/vnd.octel.sbc"/>
      <mime-type type="audio/vnd.qcelp"/>
      <mime-type type="audio/vnd.rhetorex.32kadpcm"/>
      <mime-type type="audio/vnd.sealedmedia.softseal.mpeg"/>
      <mime-type type="audio/vnd.vmx.cvsd"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{1, 0},
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:   "SBC",
    		argLen: 3,
    		asm:    arm.ASBC,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    				{1, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top