Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/alaisi/nalloc
/ functions
Functions
148 in github.com/alaisi/nalloc
⨍
Functions
148
◇
Types & classes
31
Method
getInt
(final long address)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:39
Method
getInts
(final long address, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:59
Method
getLongs
(final long address, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:64
Method
getString
(final long address, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:69
Method
malloc
(final Class<T> structType)
src/main/java/com/github/nalloc/impl/UnsafeNativeHeapAllocator.java:43
Method
mmap
(final File file, final long nmemb, final Class<T> structType)
src/main/java/com/github/nalloc/impl/DirectBufferMmapAllocator.java:49
Method
realloc
(final Array<T> pointer, final long nmemb)
src/main/java/com/github/nalloc/impl/UnsafeNativeHeapAllocator.java:61
Method
setAddress
Sets memory address of the struct. @param address New address
src/main/java/com/github/nalloc/impl/NativeStruct.java:51
Method
setAnsiCChar
(final long address, final char value)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:129
Method
setAnsiCChars
(final long address, final char[] chars, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:132
Method
setAnsiCString
(final long address, final String string, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:137
Method
setByte
(final long address, final byte value)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:75
Method
setBytes
(final long address, final byte[] bytes, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:88
Method
setChar
(final long address, final char value)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:78
Method
setChars
(final long address, final char[] chars, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:91
Method
setInt
(final long address, final int value)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:81
Method
setInts
(final long address, final int[] ints, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:94
Method
setLong
(final long address, final long value)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:84
Method
setLongs
(final long address, final long[] longs, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:97
Method
setString
(final long address, final String string, final long len)
src/main/java/com/github/nalloc/impl/PointerArithmetics.java:100
Method
shoulMemoryMapAnonymousBuffer
()
src/test/java/com/github/nalloc/impl/DirectBufferMmapAllocatorTest.java:79
Method
shouldAccessStructAsByteBuffer
()
src/test/java/com/github/nalloc/impl/DirectBufferMmapAllocatorTest.java:57
Method
shouldCallocArray
()
src/test/java/com/github/nalloc/impl/UnsafeNativeHeapAllocatorTest.java:46
Method
shouldClearIndex
()
src/test/java/com/github/nalloc/impl/HeapArrayTest.java:69
Method
shouldCloneArray
()
src/test/java/com/github/nalloc/impl/MmapArrayTest.java:35
Method
shouldCloneArray
()
src/test/java/com/github/nalloc/impl/HeapArrayTest.java:50
Method
shouldCloneNestedFields
()
src/test/java/com/github/nalloc/impl/NativeStructTest.java:38
Method
shouldClonePointer
()
src/test/java/com/github/nalloc/impl/HeapPointerTest.java:50
Method
shouldFailCallocZero
()
src/test/java/com/github/nalloc/impl/UnsafeNativeHeapAllocatorTest.java:67
Method
shouldGetAndSetArrayTypes
()
src/test/java/com/github/nalloc/impl/StructTest.java:56
Method
shouldGetAndSetCCompatible
()
src/test/java/com/github/nalloc/impl/StructTest.java:76
Method
shouldGetAndSetSimpleTypes
()
src/test/java/com/github/nalloc/impl/StructTest.java:38
Method
shouldGetNestedStructArrays
()
src/test/java/com/github/nalloc/impl/StructTest.java:107
Method
shouldGetNestedStructs
()
src/test/java/com/github/nalloc/impl/StructTest.java:96
Method
shouldMallocSingleStruct
()
src/test/java/com/github/nalloc/impl/UnsafeNativeHeapAllocatorTest.java:38
Method
shouldMemoryMapBuffer
()
src/test/java/com/github/nalloc/impl/DirectBufferMmapAllocatorTest.java:69
Method
shouldMemoryMapFile
()
src/test/java/com/github/nalloc/impl/DirectBufferMmapAllocatorTest.java:45
Method
shouldPrintAddressWithToString
()
src/test/java/com/github/nalloc/impl/HeapArrayTest.java:62
Method
shouldPrintAddressWithToString
()
src/test/java/com/github/nalloc/impl/HeapPointerTest.java:61
Method
shouldRejectCastingBufferInWrongOrder
()
src/test/java/com/github/nalloc/impl/DirectBufferMmapAllocatorTest.java:95
Method
shouldRejectCastingIndirectBuffer
()
src/test/java/com/github/nalloc/impl/DirectBufferMmapAllocatorTest.java:90
Method
shouldResizeArrayOnRealloc
()
src/test/java/com/github/nalloc/impl/UnsafeNativeHeapAllocatorTest.java:56
Method
shouldSetArrayAddress
()
src/test/java/com/github/nalloc/impl/HeapArrayTest.java:34
Method
shouldSetPointerAddress
()
src/test/java/com/github/nalloc/impl/HeapPointerTest.java:34
Method
size
()
src/main/java/com/github/nalloc/impl/HeapArray.java:60
Method
toBytes
(final Array<?> structs)
src/main/java/com/github/nalloc/impl/DirectBufferMmapAllocator.java:74
Method
toString
()
src/main/java/com/github/nalloc/impl/HeapPointer.java:56
Method
toString
()
src/main/java/com/github/nalloc/impl/NativeStruct.java:55
← previous
101–148 of 148, ranked by callers