Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for if64 (0.04 sec)

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

    		return C_TEXTSIZE
    
    	case obj.TYPE_FCONST:
    		// The only cases where FCONST will occur are with float64 +/- 0.
    		// All other float constants are generated in memory.
    		f64 := a.Val.(float64)
    		if f64 == 0 {
    			if math.Signbit(f64) {
    				return C_S16CON
    			}
    			return C_ZCON
    		}
    		log.Fatalf("Unexpected nonzero FCONST operand %v", a)
    
    	case obj.TYPE_CONST,
    		obj.TYPE_ADDR:
    		switch a.Name {
    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/cmd/internal/obj/s390x/asmz.go

    				return C_SOREG
    			}
    			return C_LOREG
    		}
    
    		return C_GOK
    
    	case obj.TYPE_TEXTSIZE:
    		return C_TEXTSIZE
    
    	case obj.TYPE_FCONST:
    		if f64, ok := a.Val.(float64); ok && math.Float64bits(f64) == 0 {
    			return C_ZCON
    		}
    		c.ctxt.Diag("cannot handle the floating point constant %v", a.Val)
    
    	case obj.TYPE_CONST,
    		obj.TYPE_ADDR:
    		switch a.Name {
    		case obj.NAME_NONE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

            mlir::cast<mlir::TensorType>(input_type).getElementType();
        RankedTensorType type = tensorflow::GetTypeFromTFTensorShape(
            {static_cast<int64_t>(shape.size())}, element_type);
        // Input could only be i32 or i64. For i32, downcast to int32_t array.
        if (element_type.isInteger(32)) {
          SmallVector<int32_t, 4> i32_shape;
          for (auto s : shape) i32_shape.push_back(static_cast<int32_t>(s));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top