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

/freebsd-11.0-release/sys/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
53 /* May be less than or greater than VCHI_BULK_ALIGN */
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 #define VCHI_BULK_ALIGN_NBYTES(x) (VCHI_BULK_ALIGNED(x) ? 0 : (VCHI_BULK_ALIGN - ((unsigned long)(x) & (VCHI_BULK_ALIGN-1))))
54 #define VCHI_BULK_ALIGNED(x) (((unsigned long)(x) & (VCHI_BULK_ALIGN-1)) == 0)

Completed in 111 milliseconds