Home
last modified time | relevance | path

Searched refs:CACHE_SIZE (Results 1 – 17 of 17) sorted by relevance

/external/quake/quake/src/WinQuake/
Dd_ifacea.h44 #define CACHE_SIZE 32 // used to align key data structures macro
Dr_main.cpp879 ((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()
Dr_edge.cpp666 byte basespans[MAXSPANS*sizeof(espan_t)+CACHE_SIZE]; in R_ScanEdges()
671 ((long)(basespans + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_ScanEdges()
Dr_alias.cpp706 ((CACHE_SIZE - 1) / sizeof(finalvert_t)) + 1]; in R_AliasDrawModel()
713 (((long)&finalverts[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_AliasDrawModel()
Dd_polyse.cpp128 ((CACHE_SIZE - 1) / sizeof(spanpackage_t)) + 1]; in D_PolysetDraw()
132 (((long)&spans[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in D_PolysetDraw()
Dquakedef.h83 #define CACHE_SIZE 32 // used to align key data structures macro
Dd_polysa.s1097 addl $(CACHE_SIZE - 1),%eax
1098 andl $(~(CACHE_SIZE - 1)),%eax
/external/quake/quake/src/QW/client/
Dd_ifacea.h44 #define CACHE_SIZE 32 // used to align key data structures macro
Dr_main.c892 ((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()
Dbothdefs.h45 #define CACHE_SIZE 32 // used to align key data structures macro
Dr_edge.c666 byte basespans[MAXSPANS*sizeof(espan_t)+CACHE_SIZE]; in R_ScanEdges()
671 ((long)(basespans + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_ScanEdges()
Dr_alias.c721 ((CACHE_SIZE - 1) / sizeof(finalvert_t)) + 1]; in R_AliasDrawModel()
728 (((long)&finalverts[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in R_AliasDrawModel()
Dd_polyse.c128 ((CACHE_SIZE - 1) / sizeof(spanpackage_t)) + 1]; in D_PolysetDraw()
132 (((long)&spans[0] + CACHE_SIZE - 1) & ~(CACHE_SIZE - 1)); in D_PolysetDraw()
Dd_polysa.s1097 addl $(CACHE_SIZE - 1),%eax
1098 andl $(~(CACHE_SIZE - 1)),%eax
/external/e2fsprogs/lib/ext2fs/
Dunix_io.c79 #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/
DConstPool.java42 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/
Dcvsmooth.cpp1454 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()