代码搜索:Cache优化

找到约 10,000 项符合「Cache优化」的源代码

代码结果 10,000
www.eeworm.com/read/446853/7564026

h cache.h

#ifndef __CACHE_H__ #define __CACHE_H__ #ifdef __cplusplus extern "C" { #endif void DCacheFlush(void* addr,unsigned int len); void DCacheInv(void* addr,unsigned int len); #ifdef __cplusp
www.eeworm.com/read/446853/7564030

inc cache.inc

#define DCACHE_NONE 0 #define DCACHE_WT 1 #define DCACHE_WB 2 #define DCACHE_MODE DCACHE_WT
www.eeworm.com/read/446853/7564040

doj cache.doj

www.eeworm.com/read/446853/7564060

s cache.s

#include "cache.inc" #ifdef __GNUC__ .section .text #else .section program; #endif //void DCacheFlushInv(void* start,U32 count) .global _DCacheInv; .type _DCacheInv,STT_FUNC; .align 8; _DC