Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for ofsr (0.1 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    		v := c.regoff(&p.To)
    
    		r := int(p.To.Reg)
    		if r == 0 {
    			r = int(o.param)
    		}
    		o1 = c.ofsr(p.As, int(p.From.Reg), v, r, int(p.Scond), p)
    
    	case 51: /* floating point load */
    		v := c.regoff(&p.From)
    
    		r := int(p.From.Reg)
    		if r == 0 {
    			r = int(o.param)
    		}
    		o1 = c.ofsr(p.As, int(p.To.Reg), v, r, int(p.Scond), p) | 1<<20
    
    	case 52: /* floating point store, int32 offset UGLY */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/initializer/initializer_test.go

    func (s *serviceWanter) SetServiceResolver(sr webhook.ServiceResolver) { s.got = sr }
    
    func TestWantsServiceResolver(t *testing.T) {
    	sw := &serviceWanter{}
    	fsr := &fakeServiceResolver{}
    	i := NewPluginInitializer(nil, fsr)
    	i.Initialize(sw)
    	if got, ok := sw.got.(*fakeServiceResolver); !ok || got != fsr {
    		t.Errorf("plumbing fail - %v %v#", ok, got)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 08 07:19:52 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/stmt.go

    			// so open-coded defers cannot be used in this function.
    			ir.CurFunc.SetOpenCodedDeferDisallowed(true)
    		}
    		fallthrough
    	case ir.OGO:
    		n := n.(*ir.GoDeferStmt)
    		return walkGoDefer(n)
    
    	case ir.OFOR:
    		n := n.(*ir.ForStmt)
    		return walkFor(n)
    
    	case ir.OIF:
    		n := n.(*ir.IfStmt)
    		return walkIf(n)
    
    	case ir.ORETURN:
    		n := n.(*ir.ReturnStmt)
    		return walkReturn(n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/cover/cfg_test.go

    		incfg = writePkgConfig(t, instdira, tag, ppath, pname, gran, "")
    		ofs, outcfg, _ := runPkgCover(t, instdira, tag, incfg, mode,
    			apkgfiles, false)
    		t.Logf("outfiles: %+v\n", ofs)
    
    		// Run the compiler on the files to make sure the result is
    		// buildable.
    		bargs := []string{"tool", "compile", "-p", "a", "-coveragecfg", outcfg}
    		bargs = append(bargs, ofs...)
    		cmd := testenv.Command(t, testenv.GoToolPath(t), bargs...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

    TEST(IoTest, ReadFileToString) {
      // Prepare a temp file and write some string to it.
      const std::string src_file_path =
          absl::StrCat(testing::TempDir(), "/tmp_file");
    
      {
        std::ofstream ofs(src_file_path);
        ofs << "test_string";
      }
    
      // Test that the contents match.
      const absl::StatusOr<std::string> read_status =
          ReadFileToString(src_file_path);
      ASSERT_THAT(read_status, IsOk());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/fmt.go

    	ODEFER:      -1,
    	OFALL:       -1,
    	OFOR:        -1,
    	OGOTO:       -1,
    	OIF:         -1,
    	OLABEL:      -1,
    	OGO:         -1,
    	ORANGE:      -1,
    	ORETURN:     -1,
    	OSELECT:     -1,
    	OSWITCH:     -1,
    
    	OEND: 0,
    }
    
    // StmtWithInit reports whether op is a statement with an explicit init list.
    func StmtWithInit(op Op) bool {
    	switch op {
    	case OIF, OFOR, OSWITCH:
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/dwarf.go

    }
    func (c dwCtxt) AddSectionOffset(s dwarf.Sym, size int, t interface{}, ofs int64) {
    	panic("should be used only in the linker")
    }
    func (c dwCtxt) AddDWARFAddrSectionOffset(s dwarf.Sym, t interface{}, ofs int64) {
    	size := 4
    	if isDwarf64(c.Link) {
    		size = 8
    	}
    
    	ls := s.(*LSym)
    	rsym := t.(*LSym)
    	ls.WriteAddr(c.Link, ls.Size, size, rsym, ofs)
    	r := &ls.R[len(ls.R)-1]
    	r.Type = objabi.R_DWARFSECREF
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. src/cmd/internal/dwarf/dwarf.go

    	PtrSize() int
    	Size(s Sym) int64
    	AddInt(s Sym, size int, i int64)
    	AddBytes(s Sym, b []byte)
    	AddAddress(s Sym, t interface{}, ofs int64)
    	AddCURelativeAddress(s Sym, t interface{}, ofs int64)
    	AddSectionOffset(s Sym, size int, t interface{}, ofs int64)
    	AddDWARFAddrSectionOffset(s Sym, t interface{}, ofs int64)
    	CurrentOffset(s Sym) int64
    	RecordDclReference(from Sym, to Sym, dclIdx int, inlIndex int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

       *
       * The fields are specified as a list of member adapters. When decoding, a value for each
       * non-optional member but be included in sequence.
       *
       * TODO: for sets, sort by tag when encoding.
       * TODO: for set ofs, sort by encoded value when encoding.
       */
      fun <T> sequence(
        name: String,
        vararg members: DerAdapter<*>,
        decompose: (T) -> List<*>,
        construct: (List<*>) -> T,
      ): BasicDerAdapter<T> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Oacute;":                          "\u00d3",
    	"&Ocirc;":                           "\u00d4",
    	"&Ocy;":                             "\u041e",
    	"&Odblac;":                          "\u0150",
    	"&Ofr;":                             "\U0001d512",
    	"&Ograve;":                          "\u00d2",
    	"&Omacr;":                           "\u014c",
    	"&Omega;":                           "\u03a9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
Back to top