Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getProp3 (0.25 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            void setProp1(boolean value);
    
            int getProp2();
    
            void setProp2(int value);
    
            byte getProp3();
    
            void setProp3(byte value);
    
            short getProp4();
    
            void setProp4(short value);
    
            long getProp5();
    
            void setProp5(long value);
    
            double getProp6();
    
            void setProp6(double value);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/asm5.go

    		} else if p.As == ABFC { // only "BFC $width, $lsb, Reg" is accepted, p.Reg must be 0
    			c.ctxt.Diag("illegal combination: %v", p)
    		}
    		if p.GetFrom3() == nil || p.GetFrom3().Type != obj.TYPE_CONST {
    			c.ctxt.Diag("%v: missing or wrong LSB", p)
    			break
    		}
    		lsb := p.GetFrom3().Offset
    		width := p.From.Offset
    		if lsb < 0 || lsb > 31 || width <= 0 || (lsb+width) > 32 {
    			c.ctxt.Diag("%v: wrong width or LSB", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    			p.AddRestSourceReg(v.Args[1].Reg())
    		} else {
    			p.AddRestSourceReg(ppc64.REG_R0)
    		}
    		// AuxInt values 4,5,6 implemented with reverse operand order from 0,1,2
    		if v.AuxInt > 3 {
    			p.Reg, p.GetFrom3().Reg = p.GetFrom3().Reg, p.Reg
    		}
    		p.From.SetConst(v.AuxInt & 3)
    
    	case ssa.OpPPC64SETBC, ssa.OpPPC64SETBCR:
    		p := s.Prog(v.Op.Asm())
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto input_shape = input_ty.getShape();
    
        DenseIntElementsAttr block_shape;
        DenseIntElementsAttr crops;
        if (!matchPattern(op.getBlockShape(), m_Constant(&block_shape)) ||
            !matchPattern(op.getCrops(), m_Constant(&crops))) {
          return failure();
        }
    
        auto block_shape_ty = block_shape.getType();
        if (!block_shape_ty.hasRank() || block_shape_ty.getRank() != 1) {
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top