summaryrefslogtreecommitdiff
path: root/bitfield.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-12 23:25:26 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-12 23:25:26 +0000
commit37438ca202a9a1f4e782f1d1803686fc6b65e918 (patch)
tree7cf856979306a32f7817b528b306539cf914e93b /bitfield.c
parent7a57eeccd8ded740d88aba3ea9dcb09050983dd0 (diff)
Move static function prototypes from nbench1.h to appropriate files
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@14 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'bitfield.c')
-rw-r--r--bitfield.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/bitfield.c b/bitfield.c
index 5f85e34..7b5a2ed 100644
--- a/bitfield.c
+++ b/bitfield.c
@@ -12,6 +12,18 @@
** BITFIELD OPERATIONS **
*************************/
+static unsigned long DoBitfieldIteration(unsigned long *bitarraybase,
+ unsigned long *bitoparraybase,
+ long bitoparraysize,
+ unsigned long *nbitops);
+static void ToggleBitRun(unsigned long *bitmap,
+ unsigned long bit_addr,
+ unsigned long nbits,
+ unsigned int val);
+static void FlipBitRun(unsigned long *bitmap,
+ unsigned long bit_addr,
+ unsigned long nbits);
+
/*************
** DoBitops **
**************