HomeSort by: relevance | last modified time | path
    Searched defs:DEV_BSHIFT (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/arch/hpc/stand/include/machine/
param.h 6 #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */
11 #define btodb(x) ((x) >> DEV_BSHIFT)
  /src/usr.sbin/makefs/ffs/
buf.h 143 #define DEV_BSHIFT 9
  /src/sys/sys/
param.h 192 #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */
193 #define DEV_BSIZE (1 << DEV_BSHIFT) /* 512 */
204 #define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT))
205 #define dtoc(x) ((x) >> (PGSHIFT - DEV_BSHIFT))
212 #define dbtob(x) ((x) << DEV_BSHIFT)
213 #define btodb(x) ((x) >> DEV_BSHIFT)

Completed in 37 milliseconds