Codota Logo
Size.getValue
Code IndexAdd Codota to your IDE (free)

How to use
getValue
method
in
com.io7m.jpra.model.types.Size

Best Java code snippets using com.io7m.jpra.model.types.Size.getValue (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerSignedNormalized(
 final TIntegerSignedNormalized t)
{
 return this.onIntegerNormalized(t.getSizeInBits().getValue());
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerSigned(
 final TIntegerSigned t)
{
 return this.onInteger(t.getSizeInBits().getValue());
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerUnsignedNormalized(
 final TIntegerUnsignedNormalized t)
{
 return this.onIntegerNormalized(t.getSizeInBits().getValue());
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerUnsignedNormalized(
 final TIntegerUnsignedNormalized t)
{
 return this.onIntegerNormalized(t.getSizeInBits().getValue(), false);
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerSigned(final TIntegerSigned t)
{
 return this.onInteger(t.getSizeInBits().getValue());
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerUnsigned(final TIntegerUnsigned t)
{
 return this.onInteger(t.getSizeInBits().getValue());
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerSignedNormalized(
 final TIntegerSignedNormalized t)
{
 return this.onIntegerNormalized(t.getSizeInBits().getValue(), true);
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerUnsigned(
 final TIntegerUnsigned t)
{
 return this.onInteger(t.getSizeInBits().getValue());
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerUnsigned(
 final TIntegerUnsigned t)
{
 return this.onInteger(t.getSizeInBits().getValue());
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerSigned(
 final TIntegerSigned t)
{
 return this.onInteger(t.getSizeInBits().getValue());
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

@Override
public Unit matchIntegerSignedNormalized(
 final TIntegerSignedNormalized t)
{
 final BigInteger size = t.getSizeInBits().getValue();
 this.onIntegerNormalized(size, true);
 return Unit.unit();
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

 @Override
 public Unit matchIntegerUnsignedNormalized(
  final TIntegerUnsignedNormalized t)
 {
  final BigInteger size = t.getSizeInBits().getValue();
  this.onIntegerNormalized(size, false);
  return Unit.unit();
 }
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

static VectorsClasses getVectorClassesFor(
 final TVector v)
{
 NullCheck.notNull(v, "v");
 final TypeScalarType e_type = v.getElementType();
 final int e_count = v.getElementCount().getValue().intValue();
 return e_type.matchTypeScalar(new VectorClassMatcher(e_count));
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.java

public static MatrixClasses getMatrixClassesFor(final TMatrix t)
{
 NullCheck.notNull(t, "t");
 final TypeScalarType e_type = t.getElementType();
 final int e_width = t.getWidth().getValue().intValue();
 return e_type.matchTypeScalar(new MatrixClassMatcher(e_width, e_width));
}
origin: com.io7m.jpra/io7m-jpra-compiler-core

 @Override public Unit matchScalarFloat(
  final TFloat t)
  throws JPRACompilerCheckerException
 {
  final BigInteger size = t.getSizeInBits().getValue();
  if (!JPRAChecker.this.caps.isVectorFloatSizeSupported(size)) {
   throw JPRACompilerCheckerException.vectorFloatSizeNotSupported(
    t, size, JPRAChecker.this.caps.getVectorFloatSizeSupported());
  }
  return Unit.unit();
 }
});
origin: com.io7m.jpra/com.io7m.jpra.compiler.core

@Override
public Unit matchScalarInteger(
 final TIntegerType t)
 throws JPRACompilerCheckerException
{
 final BigInteger size = t.getSizeInBits().getValue();
 if (!JPRAChecker.this.caps.isMatrixIntegerSizeSupported(size)) {
  throw JPRACompilerCheckerException.matrixIntegerSizeNotSupported(
   t, size, JPRAChecker.this.caps.getMatrixIntegerSizeSupported());
 }
 return Unit.unit();
}
origin: com.io7m.jpra/io7m-jpra-compiler-core

 @Override public Unit matchScalarFloat(
  final TFloat t)
  throws JPRACompilerCheckerException
 {
  final BigInteger size = t.getSizeInBits().getValue();
  if (!JPRAChecker.this.caps.isMatrixFloatSizeSupported(size)) {
   throw JPRACompilerCheckerException.matrixFloatSizeNotSupported(
    t, size, JPRAChecker.this.caps.getMatrixFloatSizeSupported());
  }
  return Unit.unit();
 }
});
origin: com.io7m.jpra/io7m-jpra-compiler-core

@Override public Unit matchScalarInteger(
 final TIntegerType t)
 throws JPRACompilerCheckerException
{
 final BigInteger size = t.getSizeInBits().getValue();
 if (!JPRAChecker.this.caps.isVectorIntegerSizeSupported(size)) {
  throw JPRACompilerCheckerException.vectorIntegerSizeNotSupported(
   t, size, JPRAChecker.this.caps.getVectorIntegerSizeSupported());
 }
 return Unit.unit();
}
origin: com.io7m.jpra/io7m-jpra-compiler-core

@Override public Unit matchScalarInteger(
 final TIntegerType t)
 throws JPRACompilerCheckerException
{
 final BigInteger size = t.getSizeInBits().getValue();
 if (!JPRAChecker.this.caps.isMatrixIntegerSizeSupported(size)) {
  throw JPRACompilerCheckerException.matrixIntegerSizeNotSupported(
   t, size, JPRAChecker.this.caps.getMatrixIntegerSizeSupported());
 }
 return Unit.unit();
}
origin: com.io7m.jpra/com.io7m.jpra.compiler.core

@Override
public Unit matchScalarInteger(
 final TIntegerType t)
 throws JPRACompilerCheckerException
{
 final BigInteger size = t.getSizeInBits().getValue();
 if (!JPRAChecker.this.caps.isVectorIntegerSizeSupported(size)) {
  throw JPRACompilerCheckerException.vectorIntegerSizeNotSupported(
   t, size, JPRAChecker.this.caps.getVectorIntegerSizeSupported());
 }
 return Unit.unit();
}
com.io7m.jpra.model.typesSizegetValue

Popular methods of Size

  • <init>
  • toBits
  • valueOf
  • zero

Popular in Java

  • Reading from database using SQL prepared statement
  • putExtra (Intent)
  • startActivity (Activity)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • Kernel (java.awt.image)
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • JTable (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now