Home
last modified time | relevance | path

Searched refs:cachep (Results 1 – 2 of 2) sorted by relevance

/external/jpeg/
Djquant2.c865 register histptr cachep; /* pointer into main cache array */ in fill_inverse_cmap() local
901 cachep = & histogram[c0+ic0][c1+ic1][c2]; in fill_inverse_cmap()
903 *cachep++ = (histcell) (GETJSAMPLE(*cptr++) + 1); in fill_inverse_cmap()
922 register histptr cachep; in pass2_no_dither() local
936 cachep = & histogram[c0][c1][c2]; in pass2_no_dither()
939 if (*cachep == 0) in pass2_no_dither()
942 *outptr++ = (JSAMPLE) (*cachep - 1); in pass2_no_dither()
961 histptr cachep; in pass2_fs_dither() local
1027 cachep = & histogram[cur0>>C0_SHIFT][cur1>>C1_SHIFT][cur2>>C2_SHIFT]; in pass2_fs_dither()
1030 if (*cachep == 0) in pass2_fs_dither()
[all …]
/external/kernel-headers/original/linux/
Dslab.h208 static inline void *kmem_cache_alloc_node(kmem_cache_t *cachep, gfp_t flags, int node) in kmem_cache_alloc_node() argument
210 return kmem_cache_alloc(cachep, flags); in kmem_cache_alloc_node()
219 extern int FASTCALL(kmem_ptr_validate(kmem_cache_t *cachep, void *ptr));