Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,527 for inst (0.04 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	n = int(p1.a1) - int(p2.a1)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.a2) - int(p2.a2)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.a3) - int(p2.a3)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.a4) - int(p2.a4)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.a5) - int(p2.a5)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.a6) - int(p2.a6)
    	if n != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/runtime/race_ppc64le.s

    	BR	racecalladdr<>(SB)
    
    // func runtime·RaceWrite(addr uintptr)
    // Called from instrumented Go code
    TEXT	runtime·racewrite<ABIInternal>(SB), NOSPLIT, $0-8
    	MOVD	R3, R4 // addr
    	MOVD	LR, R5 // caller has set LR via BL inst
    	// void __tsan_write(ThreadState *thr, void *addr, void *pc);
    	MOVD	$__tsan_write(SB), R8
    	BR	racecalladdr<>(SB)
    
    TEXT    runtime·RaceWrite(SB), NOSPLIT, $0-8
    	JMP	runtime·racewrite(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal.go

    			return fmt.Errorf("xml: EncodeToken of ProcInst with invalid Target")
    		}
    		if bytes.Contains(t.Inst, endProcInst) {
    			return fmt.Errorf("xml: EncodeToken of ProcInst containing ?> marker")
    		}
    		p.WriteString("<?")
    		p.WriteString(t.Target)
    		if len(t.Inst) > 0 {
    			p.WriteByte(' ')
    			p.Write(t.Inst)
    		}
    		p.WriteString("?>")
    	case Directive:
    		if !isValidDirective(t) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/encoding/xml/xml.go

    func (c Comment) Copy() Comment { return Comment(bytes.Clone(c)) }
    
    // A ProcInst represents an XML processing instruction of the form <?target inst?>
    type ProcInst struct {
    	Target string
    	Inst   []byte
    }
    
    // Copy creates a new copy of ProcInst.
    func (p ProcInst) Copy() ProcInst {
    	p.Inst = bytes.Clone(p.Inst)
    	return p
    }
    
    // A Directive represents an XML directive of the form <!text>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

              "Graph not traversed in reverse post order; use seen before def!");
        mlir::Operation* inst = node_values_[input_node.id()];
        if (input_edge->IsControlEdge())
          control_operands.push_back(inst->getResult(inst->getNumResults() - 1));
        else
          result.operands.push_back(inst->getResult(input_edge->src_output()));
      }
    
      using FuncPairType = std::pair<const std::string*, const AttrValue*>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/endtoend_test.go

    	}
    }
    
    func Test386EndToEnd(t *testing.T) {
    	testEndToEnd(t, "386", "386")
    }
    
    func TestARMEndToEnd(t *testing.T) {
    	defer func(old int) { buildcfg.GOARM.Version = old }(buildcfg.GOARM.Version)
    	for _, goarm := range []int{5, 6, 7} {
    		t.Logf("GOARM=%d", goarm)
    		buildcfg.GOARM.Version = goarm
    		testEndToEnd(t, "arm", "arm")
    		if goarm == 6 {
    			testEndToEnd(t, "arm", "armv6")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. src/internal/xcoff/xcoff.go

    	R_REL = 0x02 // A(sym-*) Relative to self
    	R_TOC = 0x03 // A(sym-TOC) Relative to TOC
    	R_TRL = 0x12 // A(sym-TOC) TOC Relative indirect load.
    
    	R_TRLA = 0x13 // A(sym-TOC) TOC Rel load address. modifiable inst
    	R_GL   = 0x05 // A(external TOC of sym) Global Linkage
    	R_TCL  = 0x06 // A(local TOC of sym) Local object TOC address
    	R_RL   = 0x0C // A(sym) Pos indirect load. modifiable instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      InitializeResultState(new_op, 0, new_op.getResult());
      return new_op;
    }
    
    bool QuantizationDriver::ShouldCheckBiasScale(
        Operation* op, const int bias_index, ArrayRef<int> input_indices,
        const QuantizedType quantized_type, int& input_index, int& filter_index) {
      // For now, restrict scale adjustment to ops with affine quantized weights,
      // and having weights and biases as constants. This currently only applies to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/mips64.s

    //	LFMOV fimm ',' freg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVD	$0.1, F2 // MOVD $(0.10000000000000001), F2
    
    //	LFMOV freg ',' freg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVD	F1, F2
    
    //	LFMOV freg ',' addr
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVD	F2, foo<>+3(SB)
    	MOVD	F2, 16(R1)
    	MOVD	F2, (R1)
    
    //
    // store ints and bytes
    //
    //	LMOVV rreg ',' addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/run.go

    )
    
    type (
    	perDeploymentTest  func(t framework.TestContext, deployments echo.Instances)
    	perNDeploymentTest func(t framework.TestContext, deployments echo.Services)
    	perInstanceTest    func(t framework.TestContext, inst echo.Instance)
    	perClusterTest     func(t framework.TestContext, c cluster.Cluster)
    
    	oneToOneTest      func(t framework.TestContext, from echo.Instance, to echo.Target)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top