Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Or64 (0.19 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r64/DaemonReuseCrossVersionSpec.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r64
    
    import org.gradle.integtests.fixtures.executer.GradleExecuter
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    
    class DaemonReuseCrossVersionSpec extends ToolingApiSpecification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r64/ToolingApiIdeaModelJavaVersionCrossVersionSpec.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.tooling.r64
    
    import org.gradle.api.JavaVersion
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.tooling.model.idea.IdeaProject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS.go

    }
    func rewriteValueMIPS_OpRotateLeft64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (RotateLeft64 <t> x (MOVWconst [c]))
    	// result: (Or64 (Lsh64x32 <t> x (MOVWconst [c&63])) (Rsh64Ux32 <t> x (MOVWconst [-c&63])))
    	for {
    		t := v.Type
    		x := v_0
    		if v_1.Op != OpMIPSMOVWconst {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    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/compile/internal/ssa/rewriteMIPS64.go

    }
    func rewriteValueMIPS64_OpRotateLeft64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (RotateLeft64 <t> x (MOVVconst [c]))
    	// result: (Or64 (Lsh64x64 <t> x (MOVVconst [c&63])) (Rsh64Ux64 <t> x (MOVVconst [-c&63])))
    	for {
    		t := v.Type
    		x := v_0
    		if v_1.Op != OpMIPS64MOVVconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/html.go

    			// hex
    			i++
    			j := i
    			for j < len(s) && isHexDigit(s[j]) {
    				j++
    			}
    			if j-i < 1 || j-i > 6 || j >= len(s) || s[j] != ';' {
    				return nil, 0, 0, false
    			}
    			r64, _ := strconv.ParseInt(s[i:j], 16, 0)
    			r = int(r64)
    			end = j + 1
    		} else {
    			// decimal
    			j := i
    			for j < len(s) && isDigit(s[j]) {
    				j++
    			}
    			if j-i < 1 || j-i > 7 || j >= len(s) || s[j] != ';' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	xArgR32          // arg r32
    	xArgR32M16       // arg r32/m16
    	xArgR32M8        // arg r32/m8
    	xArgR32op        // arg r32 with +rd in opcode
    	xArgR64          // arg r64
    	xArgR64M16       // arg r64/m16
    	xArgR64op        // arg r64 with +rd in opcode
    	xArgR8           // arg r8
    	xArgR8op         // arg r8 with +rb in opcode
    	xArgRAX          // arg RAX
    	xArgRDX          // arg RDX
    	xArgRM           // arg r/m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    		commutative: true,
    		generic:     true,
    	},
    	{
    		name:        "Or32",
    		argLen:      2,
    		commutative: true,
    		generic:     true,
    	},
    	{
    		name:        "Or64",
    		argLen:      2,
    		commutative: true,
    		generic:     true,
    	},
    	{
    		name:        "Xor8",
    		argLen:      2,
    		commutative: true,
    		generic:     true,
    	},
    	{
    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