Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ofsr (1.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/typecheck/stmt.go

    func tcCheckNil(n *ir.UnaryExpr) ir.Node {
    	n.X = Expr(n.X)
    	if !n.X.Type().IsPtrShaped() {
    		base.FatalfAt(n.Pos(), "%L is not pointer shaped", n.X)
    	}
    	return n
    }
    
    // tcFor typechecks an OFOR node.
    func tcFor(n *ir.ForStmt) ir.Node {
    	Stmts(n.Init())
    	n.Cond = Expr(n.Cond)
    	n.Cond = DefaultLit(n.Cond, nil)
    	if n.Cond != nil {
    		t := n.Cond.Type()
    		if t != nil && !t.IsBoolean() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/typecheck.go

    			n = ir.NewBlockStmt(n.Pos(), nil)
    		}
    		return n
    
    	case ir.ODEFER, ir.OGO:
    		n := n.(*ir.GoDeferStmt)
    		n.Call = typecheck(n.Call, ctxStmt|ctxExpr)
    		tcGoDefer(n)
    		return n
    
    	case ir.OFOR:
    		n := n.(*ir.ForStmt)
    		return tcFor(n)
    
    	case ir.OIF:
    		n := n.(*ir.IfStmt)
    		return tcIf(n)
    
    	case ir.ORETURN:
    		n := n.(*ir.ReturnStmt)
    		return tcReturn(n)
    
    	case ir.OTAILCALL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/order.go

    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    	// Clean temporaries from condition evaluation at
    	// beginning of loop body and after for statement.
    	case ir.OFOR:
    		n := n.(*ir.ForStmt)
    		t := o.markTemp()
    		n.Cond = o.exprInPlace(n.Cond)
    		orderBlock(&n.Body, o.free)
    		n.Post = orderStmtInPlace(n.Post, o.free)
    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top