Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 821 for Constant2 (0.14 sec)

  1. src/go/types/initorder.go

    // Object dependency graph
    
    // A dependency is an object that may be a dependency in an initialization
    // expression. Only constants, variables, and functions can be dependencies.
    // Constants are here because constant expression cycles are reported during
    // initialization order computation.
    type dependency interface {
    	Object
    	isDependency()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    	case 3:
    		if p.arch.Family == sys.PPC64 {
    			// Special 3-operand jumps.
    			// a[1] is a register number expressed as a constant or register value
    			target = &a[2]
    			prog.From = a[0]
    			if a[0].Type != obj.TYPE_CONST {
    				// Legacy code may use a plain constant, accept it, and coerce
    				// into a constant. E.g:
    				//   BC 4,...
    				// into
    				//   BC $4,...
    				prog.From = obj.Addr{
    					Type:   obj.TYPE_CONST,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/assignments.go

    	if x.mode == invalid || !isValid(x.typ) || !isValid(lhs.typ) {
    		if lhs.typ == nil {
    			lhs.typ = Typ[Invalid]
    		}
    		return
    	}
    
    	// rhs must be a constant
    	if x.mode != constant_ {
    		check.errorf(x, InvalidConstInit, "%s is not constant", x)
    		if lhs.typ == nil {
    			lhs.typ = Typ[Invalid]
    		}
    		return
    	}
    	assert(isConstType(x.typ))
    
    	// If the lhs doesn't have a type yet, use the type of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check.go

    	}
    }
    
    func (check *Checker) recordTypeAndValue(x syntax.Expr, mode operandMode, typ Type, val constant.Value) {
    	assert(x != nil)
    	assert(typ != nil)
    	if mode == invalid {
    		return // omit
    	}
    	if mode == constant_ {
    		assert(val != nil)
    		// We check allBasic(typ, IsConstType) here as constant expressions may be
    		// recorded as type parameters.
    		assert(!isValid(typ) || allBasic(typ, IsConstType))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/magic.go

    	m uint64 // ⎡2^(n+s)/c⎤ - 2^n
    }
    
    // umagic computes the constants needed to strength reduce unsigned n-bit divides by the constant uint64(c).
    // The return values satisfy for all 0 <= x < 2^n
    //
    //	floor(x / uint64(c)) = x * (m + 2^n) >> (n+s)
    func umagic(n uint, c int64) umagicData {
    	// Convert from ConstX auxint values to the real uint64 constant they represent.
    	d := uint64(c) << (64 - n) >> (64 - n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

        } else if (node.kind_case() == SavedObject::kConstant) {
          std::unique_ptr<Constant> constant;
          TF_RETURN_IF_ERROR(ConstantFromSavedConstant(context, node.constant(),
                                                       node_attr_map, &constant));
          objects->constants[i] = std::move(constant);
        } else if (node.kind_case() == SavedObject::kAsset) {
          std::unique_ptr<Asset> asset;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/kernels/xla_ops.cc

      DataTypeVector constant_types;
      OP_REQUIRES_OK_RETURN(ctx, std::vector<int>(),
                            ctx->GetAttr("Tconstants", &constant_types));
      std::vector<int> constants(constant_types.size());
      std::iota(constants.begin(), constants.end(), 0);
      return constants;
    }
    
    std::vector<int> ResourcesVector(OpKernelConstruction* ctx) {
      DataTypeVector constant_types;
      OP_REQUIRES_OK_RETURN(ctx, std::vector<int>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/text/template/parse/node.go

    	NodeList                       // A list of Nodes.
    	NodeNil                        // An untyped nil constant.
    	NodeNumber                     // A numerical constant.
    	NodePipe                       // A pipeline of commands.
    	NodeRange                      // A range action.
    	NodeString                     // A string constant.
    	NodeTemplate                   // A template invocation action.
    	NodeVariable                   // A $ variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                            final String[] searchers = DocumentUtil.getValue(doc, Constants.SEARCHER, String[].class);
                            if (searchers != null) {
                                final String[] baseSearchers = DocumentUtil.getValue(baseDoc, Constants.SEARCHER, String[].class);
                                if (baseSearchers != null) {
                                    baseDoc.put(Constants.SEARCHER, ArrayUtil.addAll(baseSearchers, searchers));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/float_test.go

    	}
    	if got := *f2i64p(10); got != 100 {
    		t.Errorf("f2i64p got %d, wanted 100", got)
    	}
    }
    
    func TestFloatConvertFolded(t *testing.T) {
    	// Assign constants to variables so that they are (hopefully) constant folded
    	// by the SSA backend rather than the frontend.
    	u64, u32, u16, u8 := uint64(1<<63), uint32(1<<31), uint16(1<<15), uint8(1<<7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top