Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for _Cvar_ (0.21 sec)

  1. src/cmd/compile/internal/types2/call.go

    			check.assignment(a, sigParams.vars[i].typ, context)
    		}
    	}
    
    	return
    }
    
    var cgoPrefixes = [...]string{
    	"_Ciconst_",
    	"_Cfconst_",
    	"_Csconst_",
    	"_Ctype_",
    	"_Cvar_", // actually a pointer to the var
    	"_Cfpvar_fp_",
    	"_Cfunc_",
    	"_Cmacro_", // function to evaluate the expanded expression
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/go/types/call.go

    			check.assignment(a, sigParams.vars[i].typ, context)
    		}
    	}
    
    	return
    }
    
    var cgoPrefixes = [...]string{
    	"_Ciconst_",
    	"_Cfconst_",
    	"_Csconst_",
    	"_Ctype_",
    	"_Cvar_", // actually a pointer to the var
    	"_Cfpvar_fp_",
    	"_Cfunc_",
    	"_Cmacro_", // function to evaluate the expanded expression
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/variable_info.cc

        : index_(index),
          name_(name),
          var_(var),
          definition_stack_trace_(definition_stack_trace) {}
    
    VariableInfo::VariableInfo(VariableInfo&& other)
        : index_(other.index_),
          var_(other.var_),
          definition_stack_trace_(other.definition_stack_trace_),
          lock_held_(other.lock_held_) {
      other.index_ = -1;
      other.var_ = nullptr;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/test_utils.py

        with backprop.GradientTape() as gt:
          for var_ in vars_:
            gt.watch(var_)
          y = compute_op(**op_kwargs)  # uses op and decomposites by the graph pass.
          grads = gt.gradient(y, vars_)  # uses registered gradient function.
    
        # compute with composition
        with backprop.GradientTape() as gt:
          for var_ in vars_:
            gt.watch(var_)
          re_y = compute_composite(**kwargs)  # uses composite function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 02 18:32:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/phi.go

    			}
    			s.fwdrefs = append(s.fwdrefs, v)
    			var_ := v.Aux.(fwdRefAux).N
    			if _, ok := s.defvars[b.ID][var_]; !ok {
    				s.defvars[b.ID][var_] = v // treat FwdDefs as definitions.
    			}
    		}
    	}
    
    	var args []*ssa.Value
    
    loop:
    	for len(s.fwdrefs) > 0 {
    		v := s.fwdrefs[len(s.fwdrefs)-1]
    		s.fwdrefs = s.fwdrefs[:len(s.fwdrefs)-1]
    		b := v.Block
    		var_ := v.Aux.(fwdRefAux).N
    		if b == s.f.Entry {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/complit.go

    		}
    		appendWalkStmt(init, ir.NewAssignStmt(base.Pos, var_, r))
    
    		var_ = ir.NewStarExpr(base.Pos, var_)
    		var_ = typecheck.AssignExpr(var_)
    		anylit(n.X, var_, init)
    
    	case ir.OSTRUCTLIT, ir.OARRAYLIT:
    		n := n.(*ir.CompLitExpr)
    		if !t.IsStruct() && !t.IsArray() {
    			base.Fatalf("anylit: not struct/array")
    		}
    
    		if isSimpleName(var_) && len(n.List) > 4 {
    			// lay out static data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/variable_info.h

      int index() const { return index_; }
    
      // A pointer to the resource variable.  May be null if this VariableInfo is
      // "empty", i.e. it does not track a resource variable.
      Var* var() const { return var_; }
    
      // Returns the variable name.
      absl::string_view name() const { return name_; }
    
      // Returns true if the resource variable lock was successfully acquired by
      // this thread.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/escaping_test.go

    		{unescaped: "loop", escaped: "__loop__"},
    		{unescaped: "package", escaped: "__package__"},
    		{unescaped: "namespace", escaped: "__namespace__"},
    		{unescaped: "return", escaped: "__return__"},
    		{unescaped: "var", escaped: "__var__"},
    		{unescaped: "void", escaped: "__void__"},
    		{unescaped: "while", escaped: "__while__"},
    		// Not all property names are escapable
    		{unescaped: "@", unescapable: true},
    		{unescaped: "1up", unescapable: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/token_string.go

    	_ = x[_Import-36]
    	_ = x[_Interface-37]
    	_ = x[_Map-38]
    	_ = x[_Package-39]
    	_ = x[_Range-40]
    	_ = x[_Return-41]
    	_ = x[_Select-42]
    	_ = x[_Struct-43]
    	_ = x[_Switch-44]
    	_ = x[_Type-45]
    	_ = x[_Var-46]
    	_ = x[tokenCount-47]
    }
    
    const _token_name = "EOFnameliteralopop=opop=:=<-*([{)]},;:....breakcasechanconstcontinuedefaultdeferelsefallthroughforfuncgogotoifimportinterfacemappackagerangereturnselectstructswitchtypevar"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/tokens.go

    	_Map         // map
    	_Package     // package
    	_Range       // range
    	_Return      // return
    	_Select      // select
    	_Struct      // struct
    	_Switch      // switch
    	_Type        // type
    	_Var         // var
    
    	// empty line comment to exclude it from .String
    	tokenCount //
    )
    
    const (
    	// for BranchStmt
    	Break       = _Break
    	Continue    = _Continue
    	Fallthrough = _Fallthrough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top