Go to the source code of this file.
Functions | |
| int | sceKernelGzipDecompress (u8 *dest, u32 destSize, const u8 *src, u32 unknown) |
| Decompress gzip'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. | |
| void sceKernelDcacheInvalidateAll | ( | void | ) |
Invalidate the entire data cache.
| int sceKernelDcacheProbe | ( | void * | addr | ) |
Check whether the specified address is in the data cache.
| addr | - The address to check |
Decompress gzip'd data (requires kernel mode).
| dest | - pointer to destination buffer | |
| destSize | - size of destination buffer | |
| src | - pointer to source (compressed) data | |
| unknown | - unknown, pass NULL |
| void sceKernelIcacheInvalidateAll | ( | void | ) |
Invalidate the entire instruction cache.
| void sceKernelIcacheInvalidateRange | ( | const void * | addr, | |
| unsigned int | size | |||
| ) |
Invalidate a instruction cache range.
| addr | - The start address of the range. | |
| size | - The size in bytes |
| int sceKernelIcacheProbe | ( | const void * | addr | ) |
Check whether the specified address is in the instruction cache.
| addr | - The address to check |
1.5.2