~henrix/ubuntu/precise/open-vm-dkms/lp-1416003

« back to all changes in this revision

Viewing changes to modules/freebsd/vmhgfs/sha1.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-10-23 15:32:00 UTC
  • mfrom: (1.1.2 upstream) (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20081023153200-gc1bfx89hj35c799
Tags: 2008.10.10-123053-2
* Correcting typo in dh_installinit call.
* Downgrading depends on module-assistant to recommends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
 
76
76
#define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
77
77
 
78
 
#if defined(_WIN32)
79
 
#define Bswap(x) ((rol((x), 24) & 0xff00ff00) | (rol((x), 8) & 0x00ff00ff))
80
 
#endif
81
 
 
82
78
#define F0(w,x,y) ((w&(x^y))^y)
83
79
#define F1(w,x,y) (w^x^y)
84
80
#define F2(w,x,y) (((w|x)&y)|(w&x))