aboutsummaryrefslogtreecommitdiff
path: root/util/chk64
blob: b042cc8858fab40596a380bc7c31bd674aa6b241 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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