Searched refs:CACHE_SIZE (Results 1 – 17 of 17) sorted by relevance
/external/quake/quake/src/WinQuake/ |
D | d_ifacea.h | 44 #define CACHE_SIZE 32 // used to align key data structures macro
|
D | r_main.cpp | 879 ((CACHE_SIZE - 1) / sizeof(edge_t)) + 1]; in R_EdgeDrawing() 881 ((CACHE_SIZE - 1) / sizeof(surf_t)) + 1]; in R_EdgeDrawing() 890 (((long)&ledges[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_EdgeDrawing() 896 (((long)&lsurfs[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_EdgeDrawing()
|
D | r_edge.cpp | 666 byte basespans[MAXSPANS*sizeof(espan_t)+CACHE_SIZE]; in R_ScanEdges() 671 ((long)(basespans + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_ScanEdges()
|
D | r_alias.cpp | 706 ((CACHE_SIZE - 1) / sizeof(finalvert_t)) + 1]; in R_AliasDrawModel() 713 (((long)&finalverts[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_AliasDrawModel()
|
D | d_polyse.cpp | 128 ((CACHE_SIZE - 1) / sizeof(spanpackage_t)) + 1]; in D_PolysetDraw() 132 (((long)&spans[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in D_PolysetDraw()
|
D | quakedef.h | 83 #define CACHE_SIZE 32 // used to align key data structures macro
|
D | d_polysa.s | 1097 addl $(CACHE_SIZE - 1),%eax 1098 andl $(~(CACHE_SIZE - 1)),%eax
|
/external/quake/quake/src/QW/client/ |
D | d_ifacea.h | 44 #define CACHE_SIZE 32 // used to align key data structures macro
|
D | r_main.c | 892 ((CACHE_SIZE - 1) / sizeof(edge_t)) + 1]; in R_EdgeDrawing() 894 ((CACHE_SIZE - 1) / sizeof(surf_t)) + 1]; in R_EdgeDrawing() 903 (((long)&ledges[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_EdgeDrawing() 909 (((long)&lsurfs[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_EdgeDrawing()
|
D | bothdefs.h | 45 #define CACHE_SIZE 32 // used to align key data structures macro
|
D | r_edge.c | 666 byte basespans[MAXSPANS*sizeof(espan_t)+CACHE_SIZE]; in R_ScanEdges() 671 ((long)(basespans + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_ScanEdges()
|
D | r_alias.c | 721 ((CACHE_SIZE - 1) / sizeof(finalvert_t)) + 1]; in R_AliasDrawModel() 728 (((long)&finalverts[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_AliasDrawModel()
|
D | d_polyse.c | 128 ((CACHE_SIZE - 1) / sizeof(spanpackage_t)) + 1]; in D_PolysetDraw() 132 (((long)&spans[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in D_PolysetDraw()
|
D | d_polysa.s | 1097 addl $(CACHE_SIZE - 1),%eax 1098 andl $(~(CACHE_SIZE - 1)),%eax
|
/external/e2fsprogs/lib/ext2fs/ |
D | unix_io.c | 79 #define CACHE_SIZE 8 macro 90 struct unix_cache cache[CACHE_SIZE]; 303 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) { in alloc_cache() 331 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) { in free_cache() 357 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) { in find_cached_block() 404 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) { in flush_cached_blocks()
|
/external/javassist/src/main/javassist/bytecode/ |
D | ConstPool.java | 42 private static final int CACHE_SIZE = 32; field in ConstPool 131 constInfoCache = new ConstInfo[CACHE_SIZE]; in ConstPool() 132 constInfoIndexCache = new int[CACHE_SIZE]; in ConstPool() 144 constInfoCache = new ConstInfo[CACHE_SIZE]; in ConstPool() 145 constInfoIndexCache = new int[CACHE_SIZE]; in ConstPool() 155 constInfoCache = new ConstInfo[CACHE_SIZE]; in prune() 156 constInfoIndexCache = new int[CACHE_SIZE]; in prune()
|
/external/opencv/cv/src/ |
D | cvsmooth.cpp | 1454 const int CACHE_SIZE = (int) ( 0.95 * 256 * 1024 / cn ); // assume a 256 kB cache size in cvSmooth() local 1456 (CACHE_SIZE / sizeof(Histogram) - 2*r) ); in cvSmooth()
|