The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/include/minix/u64.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      minix/u64.h                                     Author: Kees J. Bot
    2  *                                                              7 Dec 1995
    3  * Functions to manipulate 64 bit disk addresses.
    4  */
    5 #ifndef _MINIX__U64_H
    6 #define _MINIX__U64_H
    7 
    8 #ifndef _TYPES_H
    9 #include <sys/types.h>
   10 #endif
   11 
   12 u64_t add64(u64_t i, u64_t j);
   13 u64_t add64u(u64_t i, unsigned j);
   14 u64_t add64ul(u64_t i, unsigned long j);
   15 u64_t sub64(u64_t i, u64_t j);
   16 u64_t sub64u(u64_t i, unsigned j);
   17 u64_t sub64ul(u64_t i, unsigned long j);
   18 unsigned diff64(u64_t i, u64_t j);
   19 u64_t cvu64(unsigned i);
   20 u64_t cvul64(unsigned long i);
   21 unsigned cv64u(u64_t i);
   22 unsigned long cv64ul(u64_t i);
   23 unsigned long div64u(u64_t i, unsigned j);
   24 unsigned rem64u(u64_t i, unsigned j);
   25 u64_t mul64u(unsigned long i, unsigned j);
   26 int cmp64(u64_t i, u64_t j);
   27 int cmp64u(u64_t i, unsigned j);
   28 int cmp64ul(u64_t i, unsigned long j);
   29 unsigned long ex64lo(u64_t i);
   30 unsigned long ex64hi(u64_t i);
   31 u64_t make64(unsigned long lo, unsigned long hi);
   32 
   33 #endif /* _MINIX__U64_H */

Cache object: 2c6947482b261eec59639373d92a5163


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.