HomeSort by: relevance | last modified time | path
    Searched refs:VCHI_BULK_ALIGN (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/vchiq/dist/interface/vchi/
vchi_cfg.h 44 #ifndef VCHI_BULK_ALIGN
46 # define VCHI_BULK_ALIGN 32 // Allows for the need to do cache cleans
48 # define VCHI_BULK_ALIGN 16
53 /* May be less than or greater than VCHI_BULK_ALIGN */
vchi.h 47 #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 13 milliseconds