Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for ORN (0.07 sec)

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

    	ANDCC R3, R4, R5                // 7c851839
    	ANDNCC R3, R4, R5               // 7c851879
    	OR R3, R4                       // 7c841b78
    	OR R3, R4, R5                   // 7c851b78
    	ORN R3, R4, R5                  // 7c851b38
    	ORCC R3, R4, R5                 // 7c851b79
    	ORNCC R3, R4, R5                // 7c851b39
    	XOR R3, R4                      // 7c841a78
    	XOR R3, R4, R5                  // 7c851a78
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ORN x (MOVDconst [c]))
    	// result: (ORconst [^c] x)
    	for {
    		x := v_0
    		if v_1.Op != OpARM64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		v.reset(OpARM64ORconst)
    		v.AuxInt = int64ToAuxInt(^c)
    		v.AddArg(x)
    		return true
    	}
    	// match: (ORN x x)
    	// result: (MOVDconst [-1])
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    func rewriteValuePPC64_OpPPC64ORN(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ORN x (MOVDconst [-1]))
    	// result: x
    	for {
    		x := v_0
    		if v_1.Op != OpPPC64MOVDconst || auxIntToInt64(v_1.AuxInt) != -1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (ORN (MOVDconst [c]) (MOVDconst [d]))
    	// result: (MOVDconst [c|^d])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    57\246o\302?\010|\201\\(\253\261?\367\300\362\231>l\342?\265_\\2\022t\347?`\277\233\200x\347\321?\262)\265+\356\206\350?V#\351Y[p\347?\033\331N\317\232.\357?~ms\242$\000\325?\\\000\264\352\307\213\350?\230\240\222U\022\027\265?\256?\003L+\343\356?`oRn\303\216\357?K\203ax\033\376\353?R\370\233\230\217i\324?,R\352\203\311\366\306?\036\221 e\362\242\357?\030\302\353\346ZK\327?\337R\302\265\027\246\354?\375uB}=\205\351?\260\027Y\235d\022\310?\235\'\342q\225\217\344?\326h\256\241\000\324\324?xJ\222\3...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 670826495}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 R30
    			},
    		},
    	},
    	{
    		name:   "ORN",
    		argLen: 2,
    		asm:    arm64.AORN,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 805044223}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 g R30
    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