Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/vchiq/interface/vchi/
H A Dvchi_cfg.h44 #ifndef VCHI_BULK_ALIGN
46 # define VCHI_BULK_ALIGN 32 // Allows for the need to do cache cleans macro
48 # define VCHI_BULK_ALIGN 16 macro
H A Dvchi.h47 #define VCHI_BULK_ROUND_UP(x) ((((unsigned long)(x))+VCHI_BULK_ALIGN-1) & ~(VCHI_BULK_ALIGN-1))
48 #define VCHI_BULK_ROUND_DOWN(x) (((unsigned long)(x)) & ~(VCHI_BULK_ALIGN-1))
49 …LK_ALIGN_NBYTES(x) (VCHI_BULK_ALIGNED(x) ? 0 : (VCHI_BULK_ALIGN - ((unsigned long)(x) & (VCHI_BULK…
54 #define VCHI_BULK_ALIGNED(x) (((unsigned long)(x) & (VCHI_BULK_ALIGN-1)) == 0)