PSPSDK 2024-10-31
|
Go to the source code of this file.
Functions | |
int | sceKernelGzipDecompress (u8 *dest, u32 destSize, const u8 *src, u8 **src_out) |
Decompress gzip'd data (requires kernel mode) | |
int | sceKernelDeflateDecompress (u8 *dest, u32 destSize, const u8 *src, u8 **src_out) |
Decompress deflate'd data (requires kernel mode) | |
void | sceKernelDcacheInvalidateAll (void) |
Invalidate the entire data cache. | |
int | sceKernelDcacheProbe (void *addr) |
Check whether the specified address is in the data cache. | |
void | sceKernelIcacheInvalidateAll (void) |
Invalidate the entire instruction cache. | |
void | sceKernelIcacheInvalidateRange (const void *addr, unsigned int size) |
Invalidate a instruction cache range. | |
int | sceKernelIcacheProbe (const void *addr) |
Check whether the specified address is in the instruction cache. | |
Check whether the specified address is in the data cache.
addr | - The address to check |
Decompress deflate'd data (requires kernel mode)
dest | - pointer to destination buffer |
destSize | - size of destination buffer |
src | - pointer to source (compressed) data |
src_out | - if not NULL, it will store the pointer to src + compressed_bytes_processed |
Decompress gzip'd data (requires kernel mode)
dest | - pointer to destination buffer |
destSize | - size of destination buffer |
src | - pointer to source (compressed) data |
src_out | - if not NULL, it will store the pointer to src + compressed_bytes_processed |
Invalidate a instruction cache range.
addr | - The start address of the range. |
size | - The size in bytes |