aboutsummaryrefslogtreecommitdiff
path: root/util/chk64
diff options
context:
space:
mode:
Diffstat (limited to 'util/chk64')
-rwxr-xr-xutil/chk6417
1 files changed, 17 insertions, 0 deletions
diff --git a/util/chk64 b/util/chk64
new file mode 100755
index 00000000..b042cc88
--- /dev/null
+++ b/util/chk64
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+find . -type f -name \*.x -exec egrep -H SZ_REAL {} \; >& _real
+find . -type f -name \*.h -exec egrep -H SZ_REAL {} \; >& _realh
+
+find . -type f -name \*.h -exec egrep -H SZ_INT {} \; >& _inth
+find . -type f -name \*.x -exec egrep -H SZ_INT {} \; >& _int
+
+find . -type f -name \*.x -exec egrep -H SZ_STRUCT {} \; >& _sz
+find . -type f -name \*.h -exec egrep -H SZ_STRUCT {} \; >& _szh
+
+find . -type f -name \*.x -exec egrep -H mii_ {} \; >& _mii
+find . -type f -name \*.gx -exec egrep -H SZ_PIXEL {} \; >& _szpix
+
+find . -type f -name \*.x -exec egrep -H sizeof {} \; | \
+ egrep -v -e ":int" >& _sizeof
+find . -type f -name \*.x -exec egrep -H szdtype {} \; >& _szdtype