| 
 | " 2013 FRC Java API" | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use UWord | |
|---|---|
| com.sun.cldc.jna | The CLDC/JNA package contains classes that help import native data structures and functions from Java code without writing C code. | 
| com.sun.squawk | Provides classes for low level interactions with the Squawk VM. | 
| com.sun.squawk.realtime | Provides classes for native memory access based on the javax.realtime package. | 
| Uses of UWord in com.sun.cldc.jna | 
|---|
| Constructors in com.sun.cldc.jna with parameters of type UWord | |
|---|---|
| Pointer(Address base,
        UWord size)Create a pointer that refers to a memory range from [base..base+size). | |
| Uses of UWord in com.sun.squawk | 
|---|
| Methods in com.sun.squawk that return UWord | |
|---|---|
|  UWord | UWord.and(UWord word)Logically AND a word with this word. | 
| static UWord | UWord.fromPrimitive(int value)Casts a word expressed as the appropriate Java primitive type for the platform (i.e. | 
| static UWord | NativeUnsafe.getAsUWord(Object base,
           int offset)Gets a UWord value from memory ignoring any recorded type of the value at the designated location. | 
| static UWord | Unsafe.getUWord(Address base,
         int offset)Gets an unsigned 32 or 64 bit value from memory. | 
| static UWord | NativeUnsafe.getUWord(Object base,
         int offset) | 
| static UWord | UWord.max()Gets the largest possible machine word. | 
|  UWord | UWord.or(UWord word)Logically OR a word with this word. | 
|  UWord | Address.toUWord()Casts this address to a UWord. | 
|  UWord | Offset.toUWord()Casts a value of type Offset into a UWord. | 
| static UWord | UWord.zero()Gets the canonical UWord representation of null. | 
| Methods in com.sun.squawk with parameters of type UWord | |
|---|---|
|  Address | Address.and(UWord word)Logically AND a word with this address. | 
|  UWord | UWord.and(UWord word)Logically AND a word with this word. | 
|  boolean | UWord.eq(UWord word2)Determines if this word is equal to a given word. | 
|  boolean | UWord.hi(UWord word2)Determines if this word is higher than a given word. | 
|  boolean | UWord.hieq(UWord word2)Determines if this word is higher than or equal to a given word. | 
|  boolean | UWord.lo(UWord word2)Determines if this word is lower than a given word. | 
|  boolean | UWord.loeq(UWord word2)Determines if this word is lower than or equal to a given word. | 
| static Address | NativeUnsafe.malloc(UWord size)Allocate a block of memory outside of the Java heap. | 
|  boolean | UWord.ne(UWord word2)Determines if this word is not equal to a given word. | 
|  Address | Address.or(UWord word)Logically OR a word with this address. | 
|  UWord | UWord.or(UWord word)Logically OR a word with this word. | 
| static void | VM.printUWord(UWord val)Prints an unsigned word to the VM stream. | 
| static void | Unsafe.setUWord(Address base,
         int offset,
         UWord value)Sets a UWord value in memory. | 
| static void | NativeUnsafe.setUWord(Object base,
         int offset,
         UWord value) | 
| Uses of UWord in com.sun.squawk.realtime | 
|---|
| Methods in com.sun.squawk.realtime that return UWord | |
|---|---|
| protected  UWord | RawMemoryAccess.size()Gets the virtual memory location at which the memory region is mapped. | 
| 
 | " 2013 FRC Java API" | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||