Uses of Class
org.bridj.SizeT

Packages that use SizeT
org.bridj BridJ core classes and C runtime (Pointer, BridJ, SizeT, Platform, LastError...). 
 

Uses of SizeT in org.bridj
 

Methods in org.bridj that return SizeT
static SizeT SizeT.valueOf(long value)
           
 

Methods in org.bridj that return types with arguments of type SizeT
static Pointer<SizeT> Pointer.allocateSizeT()
          Allocate enough memory for a SizeT value and return a pointer to it.
static Pointer<SizeT> Pointer.allocateSizeTs(long arrayLength)
          Allocate enough memory for arrayLength SizeT values and return a pointer to that memory.
static PointerIO<SizeT> PointerIO.getSizeTInstance()
           
static Pointer<SizeT> Pointer.pointerToSizeT(long value)
          Allocate enough memory for a single SizeT value, copy the value provided in argument into it and return a pointer to that memory.
static Pointer<SizeT> Pointer.pointerToSizeT(SizeT value)
          Allocate enough memory for a single SizeT value, copy the value provided in argument into it and return a pointer to that memory.
static Pointer<SizeT> Pointer.pointerToSizeTs(int[] values)
          Allocate enough memory for values.length SizeT values, copy the values provided as argument into it and return a pointer to that memory.
static Pointer<SizeT> Pointer.pointerToSizeTs(long... values)
          Allocate enough memory for values.length SizeT values, copy the values provided as argument into it and return a pointer to that memory.
static Pointer<SizeT> Pointer.pointerToSizeTs(SizeT... values)
          Allocate enough memory for values.length SizeT values, copy the values provided as argument into it and return a pointer to that memory.
 

Methods in org.bridj with parameters of type SizeT
static Pointer<SizeT> Pointer.pointerToSizeT(SizeT value)
          Allocate enough memory for a single SizeT value, copy the value provided in argument into it and return a pointer to that memory.
static Pointer<SizeT> Pointer.pointerToSizeTs(SizeT... values)
          Allocate enough memory for values.length SizeT values, copy the values provided as argument into it and return a pointer to that memory.
 Pointer<T> Pointer.setSizeT(SizeT value)
          Write a SizeT value to the pointed memory location
 Pointer<T> Pointer.setSizeTAtOffset(long byteOffset, SizeT value)
          Deprecated. Avoid using the byte offset methods variants unless you know what you're doing (may cause alignment issues). Please favour Pointer.setSizeT(SizeT) over this method.
 Pointer<T> Pointer.setSizeTs(SizeT[] values)
          Write an array of SizeT values to the pointed memory location
 Pointer<T> Pointer.setSizeTsAtOffset(long byteOffset, SizeT... values)
          Deprecated. Avoid using the byte offset methods variants unless you know what you're doing (may cause alignment issues). Please favour Pointer.setSizeTs(SizeT...) over this method.
 



Copyright © 2009-2012. All Rights Reserved.