Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for null (0.18 sec)

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

    	MULW DX                                 // 66f7e2
    	MULW R11                                // 6641f7e3
    	MULL (BX)                               // f723
    	MULL (R11)                              // 41f723
    	MULL DX                                 // f7e2
    	MULL R11                                // 41f7e3
    	MULQ (BX)                               // 48f723
    	MULQ (R11)                              // 49f723
    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)
  2. src/cmd/asm/internal/asm/testdata/arm.s

    //	}
    	MRC.S	4, 6, R1, C2, C3, 7 // MRC $8301712627
    	MCR.S	4, 6, R1, C2, C3, 7 // MRC $8300664051
    
    //
    // MULL r1,r2,(hi,lo)
    //
    //	LTYPEM cond reg ',' reg ',' regreg
    //	{
    //		outcode($1, $2, &$3, int32($5.Reg), &$7);
    //	}
    	MULL	R1, R2, (R3,R4)
    
    //
    // MULA r1,r2,r3,r4: (r1*r2+r3) & 0xffffffff . r4
    // MULAW{T,B} r1,r2,r3,r4
    //
    //	LTYPEN cond reg ',' reg ',' reg ',' spreg
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/00-bug.yml

    # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-forms
    # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
    name: Bugs
    description: The go command, standard library, or anything else
    title: "import/path: issue title"
    
    body:
      - type: markdown
        attributes:
    Others
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/armerror.s

    	MUL.P	R0, R1, R2         // ERROR "invalid .P suffix"
    	MULU.W	R1, R2             // ERROR "invalid .W suffix"
    	DIVHW.S	R0, R1, R2         // ERROR "invalid .S suffix"
    	DIVHW.W	R1, R2             // ERROR "invalid .W suffix"
    	MULL.W	R2, R0, (R5, R8)   // ERROR "invalid .W suffix"
    	MULLU.U	R2, R0, (R5, R8)   // ERROR "invalid .U suffix"
    	BFX.S	$2, $4, R3         // ERROR "invalid .S suffix"
    	BFXU.W	$2, $4, R3, R0     // ERROR "invalid .W suffix"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Nov 03 14:06:21 GMT 2017
    - 14.4K bytes
    - Viewed (0)
Back to top