Lines Matching refs:scope
67 cache_flush_040 (unsigned long addr, int scope, int cache, unsigned long len) in cache_flush_040() argument
71 switch (scope) in cache_flush_040()
227 cache_flush_060 (unsigned long addr, int scope, int cache, unsigned long len) in cache_flush_060() argument
237 switch (scope) in cache_flush_060()
377 sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len) in sys_cacheflush() argument
381 if (scope < FLUSH_SCOPE_LINE || scope > FLUSH_SCOPE_ALL || in sys_cacheflush()
385 if (scope == FLUSH_SCOPE_ALL) { in sys_cacheflush()
409 if (scope == FLUSH_SCOPE_LINE && len < 256) { in sys_cacheflush()
442 if (len>=3*PAGE_SIZE && scope<FLUSH_SCOPE_PAGE) in sys_cacheflush()
443 scope=FLUSH_SCOPE_PAGE; in sys_cacheflush()
444 if (len>=10*PAGE_SIZE && scope<FLUSH_SCOPE_ALL) in sys_cacheflush()
445 scope=FLUSH_SCOPE_ALL; in sys_cacheflush()
447 ret = cache_flush_040 (addr, scope, cache, len); in sys_cacheflush()
449 ret = cache_flush_060 (addr, scope, cache, len); in sys_cacheflush()
525 sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len) in sys_cacheflush() argument