summaryrefslogtreecommitdiff
path: root/InfraStack/OSAgnostic/Common/L4Common/SourceControl/BitmanCommon.h
blob: bdb48dc47aebecc0164561b797e29c0c5ea76912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
/*****************************************************************************
 * Project : Bitman 2
 * Module  : BitmanCommon.h
 * Author  : Ilya Gurvich
 * Date    : 25/7/2005
 * Purpose : Define internal Bitman macros. The code automatically generated
 *           by Bitman will rely on these basic macros.
 *
 * Compliant with Bitman2 executable V3.7.9
 *****************************************************************************/

#ifndef _BITMAN_COMMON_H_
#define _BITMAN_COMMON_H_

#if defined __ARMCC_VERSION
	#ifndef __arm
		#define __arm
	#endif
#endif

#if defined _ARC
	#ifndef __arc
		#define __arc
	#endif
#endif

#define BMI_MACHINE_ARM_LITTLE		(1)
#define BMI_MACHINE_ARM_BIG			(2)
#define BMI_MACHINE_INTEL_LITTLE	(3)

// New definitions for machine endianness
#if defined BMI_MACHINE_ENDIANNESS_LITTLE
#define BMI_ENDIANNESS_LITTLE
#elif defined BMI_MACHINE_ENDIANNESS_BIG
#define BMI_ENDIANNESS_BIG
#endif

//In case of using Microsoft compiler, disable the following level 4 warnings 
#ifdef _MSC_VER
#pragma warning(disable : 4127) //Conditional expression is constant (e.g. if(1) or while(1) etc.)
#pragma warning(disable : 4214) //Nonstandard extension used : bit field types other than int 
#pragma warning(disable : 4514) //unreferenced inline function has been removed 
#pragma warning(disable : 4213) //nonstandard extension used : cast on l-value E.g.: *(( int * )a )++ = 3;  // C4213
#endif

#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION > 220000)
#pragma diag_suppress 1441
#endif

// Disabling project level lint warnings
/*lint -e537 */ /* Repeated include */

/*lint ++flb */

/* Don't disable warning e702 (warning for right shifting) yet because it can
 * be handled individually and fixed.
 */

#include "TypesProxy.h"

#ifndef NULL
#define NULL ((PVOID)0)
#endif


#ifdef _WIN64
#define MASK_1 (0xFFFFFFFFFFFFFFFF)
#define MASK_2 (0xFFFFFFFFFFFFFFFE)
#define MASK_4 (0xFFFFFFFFFFFFFFFC)
#else
#define MASK_1 (0xFFFFFFFF)
#define MASK_2 (0xFFFFFFFE)
#define MASK_4 (0xFFFFFFFC)
#endif

#ifndef BMI_DUMP
	#ifdef _KERNEL_
		// TODO - #include <ntddk.h> ??
		#define BMI_DUMP(str)  DbgPrint(str);
	#else
		#define BMI_DUMP(str)  printf(str);
	#endif
#endif


/* The way inline functions are declared. */
// @@@ : 5/12/09 : JSS - To enable linux
#ifdef NATIVE_LINUX
#define BMI_INLINE	static inline
#else
#define BMI_INLINE	INLINE
#endif



// Bitman volatile types
#ifdef __arc
	typedef VUCINT		BVINT;
	typedef VUCINT8		BVINT8;
	typedef VUCINT16	BVINT16;
	typedef VUCINT32	BVINT32;
	typedef VUCINT64	BVINT64;

	typedef VUCUINT		BVUINT;
	typedef VUCUINT8	BVUINT8;
	typedef VUCUINT16	BVUINT16;
	typedef VUCUINT32	BVUINT32;
	typedef VUCUINT64	BVUINT64;
#else
	typedef VINT		BVINT;
	typedef VINT8		BVINT8;
	typedef VINT16		BVINT16;
	typedef VINT32		BVINT32;
	typedef VINT64		BVINT64;

	typedef VUINT		BVUINT;
	typedef VUINT8		BVUINT8;
	typedef VUINT16		BVUINT16;
	typedef VUINT32		BVUINT32;
	typedef VUINT64		BVUINT64;
#endif

typedef BVINT*		PBVINT;
typedef BVINT8*		PBVINT8;
typedef BVINT16*	PBVINT16;
typedef BVINT32*	PBVINT32;
typedef BVINT64*	PBVINT64;

typedef BVUINT*		PBVUINT;
typedef BVUINT8*	PBVUINT8;
typedef BVUINT16*	PBVUINT16;
typedef BVUINT32*	PBVUINT32;
typedef BVUINT64*	PBVUINT64;


// Cast a pointer into a numeric value, without losing any information (bits) and backwards
#define BMI_PTR_TO_NUMERIC_CAST(ptr)	((POINTER_AND_UINT)(ptr))
#define BMI_NUMBER_TO_PTR_CAST(num)		((PVOID)(num))
#define BMI_PTR_TO_BYTE_PTR_CAST(ptr)	((PUINT8)((PVOID)(ptr)))

// Get contents of pointers
#define BMI_GET_8BIT_PTR_CONTENTS(ptr)					(*((PUINT8)((PVOID)(ptr))))
#define BMI_GET_16BIT_PTR_CONTENTS(ptr)					(*((PUINT16)((PVOID)(ptr))))
#define BMI_GET_32BIT_PTR_CONTENTS(ptr)					(*((PUINT32)((PVOID)(ptr))))
// Same but volatile
#define BMI_GET_8BIT_PTR_CONTENTS_VOLATILE(ptr)			(*((PBVUINT8)((PVOID)(ptr))))
#define BMI_GET_16BIT_PTR_CONTENTS_VOLATILE(ptr)		(*((PBVUINT16)((PVOID)(ptr))))
#define BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(ptr)		(*((PBVUINT32)((PVOID)(ptr))))

// Get contents of pointers to arrays
#define BMI_GET_8BIT_PTR_CONTENTS_INDEX(ptr,index)		(*( (PUINT8)((PVOID)(ptr)) + (index) ))
#define BMI_GET_16BIT_PTR_CONTENTS_INDEX(ptr,index)		(*( (PUINT16)((PVOID)(ptr)) + (index) ))
#define BMI_GET_32BIT_PTR_CONTENTS_INDEX(ptr,index)		(*( (PUINT32)((PVOID)(ptr)) + (index) ))
// Same but volatile
#define BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(ptr,index)		(*( (PBVUINT8)((PVOID)(ptr)) + (index) ))
#define BMI_GET_16BIT_PTR_CONTENTS_INDEX_VOLATILE(ptr,index)	(*( (PBVUINT16)((PVOID)(ptr)) + (index) ))
#define BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(ptr,index)	(*( (PBVUINT32)((PVOID)(ptr)) + (index) ))

// Create a mask starting from bit 0, whose length is len. (0 to len bits)
#define BMI_8BIT_MASK(len)					((0xFF >> (8-(len))))
#define BMI_16BIT_MASK(len)					((0xFFFF >> (16-(len))))
#define BMI_32BIT_MASK(len)					((0xFFFFFFFF >> (32-(len))))

// Create a mask starting from bit pos whose length is len
#define BMI_8BIT_MASK_POSITION(len,pos)		(BMI_8BIT_MASK(len) << (pos))
#define BMI_16BIT_MASK_POSITION(len,pos)	(BMI_16BIT_MASK(len) << (pos))
#define BMI_32BIT_MASK_POSITION(len,pos)	(BMI_32BIT_MASK(len) << (pos))

// Swap the 4 bytes of a dword
#define BMI_SWAP_32BIT(x)	( ((x) >> 24) | (((x) >> 8) & 0xFF00) | (((x) << 8) & 0xFF0000) | ((x) << 24) )
// 8bit, 16bit versions not implemented

// Get len bits from val starting from bit pos, and return them starting from bit new_pos
/*#571 - Suspicious cast. cast is needed in case 'val' is an enum*/
#define BMI_8BIT_EXTRACT(val, pos, len, new_pos)								\
	( (/*lint -e(571)*/(UINT8)(BMI_8BIT_MASK(len) & (((UINT)(val)) >> (pos)))) << (new_pos) )

/*#571 - Suspicious cast. cast is needed in case 'val' is an enum*/
#define BMI_16BIT_EXTRACT(val, pos, len, new_pos)								\
	( (/*lint -e(571)*/(UINT16)(BMI_16BIT_MASK(len) & (((UINT)(val)) >> (pos)))) << (new_pos) )

/*#571 - Suspicious cast. cast is needed in case 'val' is an enum*/
#define BMI_32BIT_EXTRACT(val, pos, len, new_pos)								\
	( (/*lint -e(571)*/(UINT32)(BMI_32BIT_MASK(len) & (((UINT)(val)) >> (pos)))) << (new_pos) )

/* Assign len bits from src_value starting from src_pos bit-position
 * to dst_value starting from dst_pos.
 */

#define BMI_8BIT_ASSIGN(dst_value, src_value, dst_pos, src_pos, len)			\
	{																			\
		(dst_value) = (UINT8)(											\
			(~(BMI_8BIT_MASK_POSITION((len), (dst_pos))) & (dst_value)) |		\
			BMI_8BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))			\
			);																	\
	}

#define BMI_16BIT_ASSIGN(dst_value, src_value, dst_pos, src_pos, len)			\
	{																			\
		(dst_value) = (UINT16)(													\
			(~(BMI_16BIT_MASK_POSITION((len), (dst_pos))) & (dst_value)) |		\
			BMI_16BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))			\
			);																	\
	}
#define BMI_32BIT_ASSIGN(dst_value, src_value, dst_pos, src_pos, len)			\
	{																			\
		(dst_value) = (															\
			(~(BMI_32BIT_MASK_POSITION((len), (dst_pos))) & (dst_value)) |		\
			BMI_32BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))			\
			);																	\
	}

#define BMI_32BIT_ASSIGN_TYPE(dst_value, src_value, dst_pos, src_pos, len, cast_type)\
	{																			\
		(dst_value) = (cast_type)(												\
			(~(BMI_32BIT_MASK_POSITION((len), (dst_pos))) & (dst_value)) |		\
			BMI_32BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))			\
			);																	\
	}


#define BMI_32BIT_SWAP_ASSIGN(dst_value, src_value, dst_pos, src_pos, len)						\
	{																							\
		(dst_value) = (																			\
			( BMI_SWAP_32BIT(~(BMI_32BIT_MASK_POSITION((len), (dst_pos)))) & (dst_value)) |		\
			BMI_SWAP_32BIT( BMI_32BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))	)		\
			);																					\
	}
// 8bit, 16bit versions not implemented

#define BMI_8BIT_ASSIGN_VOLATILE(dst_value, src_value, dst_pos, src_pos, len)	\
	{																			\
		*((PBVUINT8)(&(dst_value))) = (UINT8)(			\
			(~(BMI_8BIT_MASK_POSITION((len), (dst_pos))) & (dst_value)) |		\
			BMI_8BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))			\
			);																	\
	}
#define BMI_16BIT_ASSIGN_VOLATILE(dst_value, src_value, dst_pos, src_pos, len)	\
	{																			\
		*((PBVUINT16)(&(dst_value))) = (UINT16)(		\
			(~(BMI_16BIT_MASK_POSITION((len), (dst_pos))) & (dst_value)) |		\
			BMI_16BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))			\
			);																	\
	}
#define BMI_32BIT_ASSIGN_VOLATILE(dst_value, src_value, dst_pos, src_pos, len)	\
	{																			\
		*((PBVUINT32)(&(dst_value))) = (UINT32)(							\
			(~(BMI_32BIT_MASK_POSITION((len), (dst_pos))) & (dst_value)) |		\
			BMI_32BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))			\
			);																	\
	}

#define BMI_32BIT_ASSIGN_VOLATILE_TYPE(dst_value, src_value, dst_pos, src_pos, len, cast_type)\
	{																			\
		*((PBVUINT32)(&(dst_value))) = (cast_type)(							\
			(~(BMI_32BIT_MASK_POSITION((len), (dst_pos))) & (dst_value)) |		\
			BMI_32BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))			\
			);																	\
	}

#define BMI_32BIT_SWAP_ASSIGN_VOLATILE(dst_value, src_value, dst_pos, src_pos, len)				\
	{																							\
		*((PBVUINT32)(&(dst_value))) = (UINT32)(											\
			( BMI_SWAP_32BIT(~(BMI_32BIT_MASK_POSITION((len), (dst_pos)))) & (dst_value)) |		\
			BMI_SWAP_32BIT( BMI_32BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))	)		\
			);																					\
	}
// 8bit, 16bit versions not implemented

#define BMI_8BIT_CLEAR_ASSIGN(dst_value, src_value, dst_pos, src_pos, len)						\
	{																							\
		(dst_value) = (UINT8)(																	\
			BMI_8BIT_EXTRACT( (src_value), (src_pos), (len), (dst_pos) )						\
			);																					\
	}
#define BMI_16BIT_CLEAR_ASSIGN(dst_value, src_value, dst_pos, src_pos, len)						\
	{																							\
		(dst_value) = (UINT16)(																	\
			BMI_16BIT_EXTRACT( (src_value), (src_pos), (len), (dst_pos) )						\
			);																					\
	}
#define BMI_32BIT_CLEAR_ASSIGN(dst_value, src_value, dst_pos, src_pos, len)						\
	{																							\
		(dst_value) = (UINT32)(																	\
			BMI_32BIT_EXTRACT( (src_value), (src_pos), (len), (dst_pos) )						\
			);																					\
	}

#define BMI_32BIT_CLEAR_ASSIGN_TYPE(dst_value, src_value, dst_pos, src_pos, len, cast_type)		\
	{																							\
		(dst_value) = (cast_type)(																\
			BMI_32BIT_EXTRACT( (src_value), (src_pos), (len), (dst_pos) )						\
			);																					\
	}


#define BMI_32BIT_SWAP_CLEAR_ASSIGN(dst_value, src_value, dst_pos, src_pos, len)				\
	{																							\
		(dst_value) = (																			\
			BMI_SWAP_32BIT( BMI_32BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))	)		\
			);																					\
	}
// 8bit, 16bit versions not implemented

#define BMI_8BIT_CLEAR_ASSIGN_VOLATILE(dst_value, src_value, dst_pos, src_pos, len)				\
	{																							\
		*((PBVUINT8)(&(dst_value))) = (UINT8)(							\
			BMI_8BIT_EXTRACT( (src_value), (src_pos), (len), (dst_pos) )						\
			);																					\
	}
#define BMI_16BIT_CLEAR_ASSIGN_VOLATILE(dst_value, src_value, dst_pos, src_pos, len)			\
	{																							\
		*((PBVUINT16)(&(dst_value))) = (UINT16)(						\
			BMI_16BIT_EXTRACT( (src_value), (src_pos), (len), (dst_pos) )						\
			);																					\
	}
#define BMI_32BIT_CLEAR_ASSIGN_VOLATILE(dst_value, src_value, dst_pos, src_pos, len)			\
	{																							\
		*((PBVUINT32)(&(dst_value))) = (UINT32)(													\
			BMI_32BIT_EXTRACT( (src_value), (src_pos), (len), (dst_pos) )						\
			);																					\
	}

#define BMI_32BIT_CLEAR_ASSIGN_VOLATILE_TYPE(dst_value, src_value, dst_pos, src_pos, len, cast_type)\
	{																							\
		*((PBVUINT32)(&(dst_value))) = (cast_type)(												\
			BMI_32BIT_EXTRACT( (src_value), (src_pos), (len), (dst_pos) )						\
			);																					\
	}


#define BMI_32BIT_SWAP_CLEAR_ASSIGN_VOLATILE(dst_value, src_value, dst_pos, src_pos, len)		\
	{																							\
		*((PBVUINT32)(&(dst_value))) = (UINT32)(													\
			BMI_SWAP_32BIT( BMI_32BIT_EXTRACT((src_value), (src_pos), (len), (dst_pos))	)		\
			);																					\
	}
// 8bit, 16bit versions not implemented


#define BMI_NORMALIZE_BITSIZE(size_bytes, size_bits)					\
	{																	\
		(size_bytes) += ((size_bits)>>3);								\
		(size_bits) &= 7;												\
	}

// Normalize bitoff. If it exceeds 8, ptr will be advanced the right number of times.
#define BMI_NORMALIZE_BITOFF(ptr, bitoff)								\
	{																	\
		(ptr) = (PVOID)(BMI_PTR_TO_NUMERIC_CAST(ptr) + ((bitoff)>>3));	\
		(bitoff) &= 7;													\
	}
//Same as BMI_NORMALIZE_BITOFF - the ptr here arrives as an integer 
//value, therefore using BMI_NORMALIZE_BITSIZE
//because its the same algorithm as BMI_NORMALIZE_BITOFF
#define BMI_NORMALIZE_BITOFF_NUMERIC(ptr, bitoff)						\
	{																	\
		BMI_NORMALIZE_BITSIZE((ptr), (bitoff));							\
	}															



#define BMI_ROUND_UP_4BYTES(bytes, bits)								\
	{																	\
		BMI_NORMALIZE_BITSIZE( (bytes), (bits) );						\
		/*lint -save -e774 */ /* Boolean within if always evaluates to True */		\
		if( (bits) || (bytes & 0x3) )									\
		{																\
			(bytes) = ((bytes) & MASK_4) + 4;							\
			(bits) = 0;													\
		}																\
		/*lint -restore */												\
	}
#define BMI_ROUND_UP_2BYTES(bytes, bits)								\
	{																	\
		BMI_NORMALIZE_BITSIZE( (bytes), (bits) );						\
		/*lint -save -e774 */ /* Boolean within if always evaluates to True*/		\
		if( (bits) || (bytes & 0x1) )									\
		{																\
			(bytes) = ((bytes) & MASK_2) + 2;							\
			(bits) = 0;													\
		}																\
		/*lint -restore */												\
	}
#define BMI_ROUND_UP_1BYTES(bytes, bits)								\
	{																	\
		BMI_NORMALIZE_BITSIZE( (bytes), (bits) );						\
		/*lint -save -e774 */ /* Boolean within 'if' always evaluates to True*/		\
		if( (bits) )													\
		{																\
			(bytes) += 1;												\
			(bits) = 0;													\
		}																\
		/*lint -restore */												\
	}

#define BMI_ADD_ASSIGN_PTR( ptr, byte_off )\
{\
	ptr = BMI_NUMBER_TO_PTR_CAST( BMI_PTR_TO_NUMERIC_CAST(ptr) + (byte_off) );\
}

#define BULK_OFFSET_LITTLE( bulk_size, field_size, field_offset )	(field_offset)
#define BULK_OFFSET_BIG( bulk_size, field_size, field_offset )		((bulk_size)-(field_size)-(field_offset))
/* In the follow macros the operations are not performed in a loop because we
 * assume that conditions can be optimized better (especially in case of
 * compile-time constant expressions).
 */
// always use the following macro's - this is a fix related to release mode complilation
// the macro's defined in the else might read/write to an address outside the boudaries
//#if (defined __arm) || (defined WINCE) || (defined __arc)
#if 1
#define BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off )\
	POINTER_AND_UINT new_ptr;\
	POINTER_AND_UINT ptr_byte_off;\
	POINTER_AND_UINT first_bit_pos;\
	POINTER_AND_UINT last_bit_pos;\
	\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
	\
	if( MASK_1 == byte_align_off || 0xFFFFFFFF == byte_align_off )\
	{\
		new_ptr = BMI_PTR_TO_NUMERIC_CAST((base_ptr)) & MASK_4;\
		ptr_byte_off = BMI_PTR_TO_NUMERIC_CAST((base_ptr)) & 0x03;\
		first_bit_pos = ptr_byte_off*8 + (base_bitoff);\
		last_bit_pos = first_bit_pos + (bitsize);\
	}\
	else\
	{\
		new_ptr = BMI_PTR_TO_NUMERIC_CAST((base_ptr)) - byte_align_off;\
		ptr_byte_off = byte_align_off;\
		first_bit_pos = ptr_byte_off*8 + (base_bitoff);\
		last_bit_pos = first_bit_pos + (bitsize);\
	}



#define BMI_COMMON_16BIT_ADDRESS_CALC_NOSPAN( base_ptr, base_bitoff, bitsize, byte_align_off )\
	POINTER_AND_UINT new_ptr;\
	POINTER_AND_UINT ptr_byte_off;\
	POINTER_AND_UINT first_bit_pos;\
	\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
	\
	if( MASK_1 == byte_align_off )\
	{\
		new_ptr = BMI_PTR_TO_NUMERIC_CAST((base_ptr)) & MASK_2;\
		ptr_byte_off = BMI_PTR_TO_NUMERIC_CAST((base_ptr)) & 0x01;\
		first_bit_pos = ptr_byte_off*8 + (base_bitoff);\
	}\
	else\
	{\
		new_ptr = BMI_PTR_TO_NUMERIC_CAST((base_ptr)) - (byte_align_off%2);\
		ptr_byte_off = (byte_align_off%2);\
		first_bit_pos = ptr_byte_off*8 + (base_bitoff);\
	}

#else /* __arm */

#define BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off )\
	POINTER_AND_UINT new_ptr;\
	UINT first_bit_pos;\
	UINT last_bit_pos;\
	\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
	\
	new_ptr = BMI_PTR_TO_NUMERIC_CAST((base_ptr));\
	first_bit_pos = (base_bitoff);\
	last_bit_pos = first_bit_pos + (bitsize);

#define BMI_COMMON_16BIT_ADDRESS_CALC_NOSPAN( base_ptr, base_bitoff, bitsize, byte_align_off )\
	POINTER_AND_UINT new_ptr;\
	UINT first_bit_pos;\
	\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
	\
	new_ptr = BMI_PTR_TO_NUMERIC_CAST((base_ptr));\
	first_bit_pos = (base_bitoff);

#endif /* else __arm */


#define BMI_GENERIC_GET_LITTLE_NATIVE( base_ptr, base_bitoff, bitsize, cast_type, out_val )\
{\
	UINT last_bit_pos;\
\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
\
	last_bit_pos = bitsize + base_bitoff;\
\
	if( last_bit_pos > 8 )\
	{\
		UINT cur_pos, cur_len;\
		UINT byte_index=0;\
\
		/* 1st byte - first and middle*/ \
		cur_pos = 0;\
		cur_len = 8-base_bitoff;\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,0), base_bitoff, cur_len, cur_pos);\
		cur_pos += cur_len;\
\
		if( last_bit_pos > 16 )\
		{\
			/* 2nd byte - middle */\
			cur_len = 8;\
			(out_val) = (cast_type)(out_val | BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,1), 0, cur_len, cur_pos));\
			cur_pos += cur_len;\
\
			if( last_bit_pos > 24 )\
			{\
				/* 3rd byte - middle */\
				cur_len = 8;\
				(out_val) = (cast_type)(out_val | BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,2), 0, cur_len, cur_pos));\
				cur_pos += cur_len;\
\
                if( last_bit_pos > 32 )\
				{\
					/* 4th byte - middle */\
					cur_len = 8;\
					(out_val) = (cast_type)(out_val | BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,3), 0, cur_len, cur_pos));\
					cur_pos += cur_len;\
\
					byte_index = 4;\
				}\
				else\
				{\
					byte_index = 3;\
				}\
			}\
			else\
			{\
				byte_index = 2;\
			}\
		}\
		else\
		{\
			byte_index = 1;\
		}\
\
		/* (byte_index)-byte - last */\
		cur_len = bitsize-cur_pos;\
		(out_val) = (cast_type)(out_val | BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,byte_index), 0, cur_len, cur_pos));\
\
	}\
	else\
	{\
		/* 1st byte - first and last */\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,0), base_bitoff, bitsize, 0);\
	}\
}\

#define BMI_GENERIC_SET_LITTLE_NATIVE( base_ptr, base_bitoff, bitsize, in_val )\
{\
	UINT last_bit_pos;\
	UINT my_bitsize = bitsize; /* No additional functionality here, but eliminates ARM compiler warnings */ \
\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
\
	last_bit_pos = my_bitsize + base_bitoff;\
\
	if( last_bit_pos > 8 )\
	{\
		UINT cur_pos, cur_len;\
		UINT byte_index=0;\
\
		/* 1st byte - first and middle*/ \
		cur_pos = 0;\
		cur_len = 8-base_bitoff;\
		BMI_8BIT_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,0), (in_val), base_bitoff, cur_pos, cur_len);\
		cur_pos += cur_len;\
\
		if( last_bit_pos > 16 )\
		{\
			/* 2nd byte - middle */\
			cur_len = 8;\
			BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,1), (in_val), 0, cur_pos, cur_len);\
			cur_pos += cur_len;\
\
			if( last_bit_pos > 24 )\
			{\
				/* 3rd byte - middle */\
				cur_len = 8;\
				BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,2), (in_val), 0, cur_pos, cur_len);\
				cur_pos += cur_len;\
\
                if( last_bit_pos > 32 )\
				{\
					/* 4th byte - middle */\
					cur_len = 8;\
					BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,3), (in_val), 0, cur_pos, cur_len);\
					cur_pos += cur_len;\
\
					byte_index = 4;\
				}\
				else\
				{\
					byte_index = 3;\
				}\
			}\
			else\
			{\
				byte_index = 2;\
			}\
		}\
		else\
		{\
			byte_index = 1;\
		}\
\
		/* (byte_index)-byte - last */\
		cur_len = my_bitsize-cur_pos;\
		BMI_8BIT_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,byte_index), (in_val), 0, cur_pos, cur_len);\
	}\
	else\
	{\
		/* 1st byte - first and last */\
		BMI_8BIT_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,0), (in_val), base_bitoff, 0, my_bitsize);\
	}\
}\

#define BMI_GENERIC_CLEAR_LITTLE_NATIVE( base_ptr, base_bitoff, bitsize, in_val )\
{\
	UINT last_bit_pos;\
	UINT my_bitsize = bitsize; /* No additional functionality here, but eliminates ARM compiler warnings */ \
\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
\
	last_bit_pos = my_bitsize + base_bitoff;\
\
	if( last_bit_pos > 8 )\
	{\
		UINT cur_pos, cur_len;\
		UINT byte_index=0;\
\
		/* 1st byte - first and middle*/ \
		cur_pos = 0;\
		cur_len = 8-base_bitoff;\
		BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,0), (in_val), base_bitoff, cur_pos, cur_len);\
		cur_pos += cur_len;\
\
		if( last_bit_pos > 16 )\
		{\
			/* 2nd byte - middle */\
			cur_len = 8;\
			BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,1), (in_val), 0, cur_pos, cur_len);\
			cur_pos += cur_len;\
\
			if( last_bit_pos > 24 )\
			{\
				/* 3rd byte - middle */\
				cur_len = 8;\
				BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,2), (in_val), 0, cur_pos, cur_len);\
				cur_pos += cur_len;\
\
                if( last_bit_pos > 32 )\
				{\
					/* 4th byte - middle */\
					cur_len = 8;\
					BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,3), (in_val), 0, cur_pos, cur_len);\
					cur_pos += cur_len;\
\
					byte_index = 4;\
				}\
				else\
				{\
					byte_index = 3;\
				}\
			}\
			else\
			{\
				byte_index = 2;\
			}\
		}\
		else\
		{\
			byte_index = 1;\
		}\
\
		/* (byte_index)-byte - last */\
		cur_len = my_bitsize-cur_pos;\
		BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,byte_index), (in_val), 0, cur_pos, cur_len);\
	}\
	else\
	{\
		/* 1st byte - first and last */\
		BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS_INDEX(base_ptr,0), (in_val), base_bitoff, 0, my_bitsize);\
	}\
}\

//////////////////////////////////////////////////////////////////////////
#define BMI_GENERIC_GET_LITTLE_NATIVE_VOLATILE( base_ptr, base_bitoff, bitsize, cast_type, out_val )\
{\
	UINT last_bit_pos;\
\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
\
	last_bit_pos = bitsize + base_bitoff;\
\
	if( last_bit_pos > 8 )\
	{\
		UINT cur_pos, cur_len;\
		UINT byte_index=0;\
\
		/* 1st byte - first and middle*/ \
		cur_pos = 0;\
		cur_len = 8-base_bitoff;\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,0), base_bitoff, cur_len, cur_pos);\
		cur_pos += cur_len;\
\
		if( last_bit_pos > 16 )\
		{\
			/* 2nd byte - middle */\
			cur_len = 8;\
			(out_val) = (cast_type)(out_val | BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,1), 0, cur_len, cur_pos));\
			cur_pos += cur_len;\
\
			if( last_bit_pos > 24 )\
			{\
				/* 3rd byte - middle */\
				cur_len = 8;\
				(out_val) = (cast_type)(out_val | BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,2), 0, cur_len, cur_pos));\
				cur_pos += cur_len;\
\
                if( last_bit_pos > 32 )\
				{\
					/* 4th byte - middle */\
					cur_len = 8;\
					(out_val) = (cast_type)(out_val | BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,3), 0, cur_len, cur_pos));\
					cur_pos += cur_len;\
\
					byte_index = 4;\
				}\
				else\
				{\
					byte_index = 3;\
				}\
			}\
			else\
			{\
				byte_index = 2;\
			}\
		}\
		else\
		{\
			byte_index = 1;\
		}\
\
		/* (byte_index)-byte - last */\
		cur_len = bitsize-cur_pos;\
		(out_val) = (cast_type)(out_val | BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,byte_index), 0, cur_len, cur_pos));\
\
	}\
	else\
	{\
		/* 1st byte - first and last */\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,0), base_bitoff, bitsize, 0);\
	}\
}\

#define BMI_GENERIC_SET_LITTLE_NATIVE_VOLATILE( base_ptr, base_bitoff, bitsize, in_val )\
{\
	UINT last_bit_pos;\
	UINT my_bitsize = bitsize; /* No additional functionality here, but eliminates ARM compiler warnings */ \
\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
\
	last_bit_pos = my_bitsize + base_bitoff;\
\
	if( last_bit_pos > 8 )\
	{\
		UINT cur_pos, cur_len;\
		UINT byte_index=0;\
\
		/* 1st byte - first and middle*/ \
		cur_pos = 0;\
		cur_len = 8-base_bitoff;\
		BMI_8BIT_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,0), (in_val), base_bitoff, cur_pos, cur_len);\
		cur_pos += cur_len;\
\
		if( last_bit_pos > 16 )\
		{\
			/* 2nd byte - middle */\
			cur_len = 8;\
			BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,1), (in_val), 0, cur_pos, cur_len);\
			cur_pos += cur_len;\
\
			if( last_bit_pos > 24 )\
			{\
				/* 3rd byte - middle */\
				cur_len = 8;\
				BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,2), (in_val), 0, cur_pos, cur_len);\
				cur_pos += cur_len;\
\
                if( last_bit_pos > 32 )\
				{\
					/* 4th byte - middle */\
					cur_len = 8;\
					BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,3), (in_val), 0, cur_pos, cur_len);\
					cur_pos += cur_len;\
\
					byte_index = 4;\
				}\
				else\
				{\
					byte_index = 3;\
				}\
			}\
			else\
			{\
				byte_index = 2;\
			}\
		}\
		else\
		{\
			byte_index = 1;\
		}\
\
		/* (byte_index)-byte - last */\
		cur_len = my_bitsize-cur_pos;\
		BMI_8BIT_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,byte_index), (in_val), 0, cur_pos, cur_len);\
	}\
	else\
	{\
		/* 1st byte - first and last */\
		BMI_8BIT_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,0), (in_val), base_bitoff, 0, my_bitsize);\
	}\
}\

#define BMI_GENERIC_CLEAR_LITTLE_NATIVE_VOLATILE( base_ptr, base_bitoff, bitsize, in_val )\
{\
	UINT last_bit_pos;\
	UINT my_bitsize = bitsize; /* No additional functionality here, but eliminates ARM compiler warnings */ \
\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
\
	last_bit_pos = my_bitsize + base_bitoff;\
\
	if( last_bit_pos > 8 )\
	{\
		UINT cur_pos, cur_len;\
		UINT byte_index=0;\
\
		/* 1st byte - first and middle*/ \
		cur_pos = 0;\
		cur_len = 8-base_bitoff;\
		BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,0), (in_val), base_bitoff, cur_pos, cur_len);\
		cur_pos += cur_len;\
\
		if( last_bit_pos > 16 )\
		{\
			/* 2nd byte - middle */\
			cur_len = 8;\
			BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,1), (in_val), 0, cur_pos, cur_len);\
			cur_pos += cur_len;\
\
			if( last_bit_pos > 24 )\
			{\
				/* 3rd byte - middle */\
				cur_len = 8;\
				BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,2), (in_val), 0, cur_pos, cur_len);\
				cur_pos += cur_len;\
\
                if( last_bit_pos > 32 )\
				{\
					/* 4th byte - middle */\
					cur_len = 8;\
					BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,3), (in_val), 0, cur_pos, cur_len);\
					cur_pos += cur_len;\
\
					byte_index = 4;\
				}\
				else\
				{\
					byte_index = 3;\
				}\
			}\
			else\
			{\
				byte_index = 2;\
			}\
		}\
		else\
		{\
			byte_index = 1;\
		}\
\
		/* (byte_index)-byte - last */\
		cur_len = my_bitsize-cur_pos;\
		BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,byte_index), (in_val), 0, cur_pos, cur_len);\
	}\
	else\
	{\
		/* 1st byte - first and last */\
		BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_INDEX_VOLATILE(base_ptr,0), (in_val), base_bitoff, 0, my_bitsize);\
	}\
}\

// prev BMI_GENERIC_32BIT_GET_GRANULARITY_32BIT_LITTLE
#define BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_NATIVE( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), first_bit_pos, (bitsize), 0);\
	}\
	else /* last_bit_pos = 32 */\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,0), first_bit_pos, 32-first_bit_pos, 0);\
		(out_val) = (cast_type)((/*lint -e(571)*/(UINT32)out_val) | BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,1), 0, last_bit_pos-32, 32-first_bit_pos));\
	}\
	/*lint -restore */\
	/*lint -restore */\
}

#define BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_NATIVE_VOLATILE( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), first_bit_pos, (bitsize), 0);\
	}\
	else /* last_bit_pos = 32 */\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), first_bit_pos, 32-first_bit_pos, 0);\
		(out_val) = (cast_type)((/*lint -e(571)*/(UINT32)out_val) | BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), 0, last_bit_pos-32, 32-first_bit_pos));\
	}\
	/*lint -restore */\
	/*lint -restore */\
}


// Derived from BMI_GENERIC_32BIT_SET_GRANULARITY_32BIT_LITTLE
// prev BMI_GENERIC_32BIT_GET_GRANULARITY_32BIT_LITTLE_ON_BIG_MACHINE
#define BMI_GENERIC_32BIT_GET_BIG_MACHINE_SWAP( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS(new_ptr)), first_bit_pos, (bitsize), 0);\
	}\
	else /* last_bit_pos = 32 */\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,0)), first_bit_pos, 32-first_bit_pos, 0);\
		(out_val) = (cast_type)((/*lint -e(571)*/(UINT32)out_val) | BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,1)), 0, last_bit_pos-32, 32-first_bit_pos));\
	}\
	/*lint -restore */\
	/*lint -restore */\
}

#define BMI_GENERIC_32BIT_GET_BIG_MACHINE_SWAP_VOLATILE( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr)), first_bit_pos, (bitsize), 0);\
	}\
	else /* last_bit_pos = 32 */\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0)), first_bit_pos, 32-first_bit_pos, 0);\
		(out_val) = (cast_type)((/*lint -e(571)*/(UINT32)out_val) | BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1)), 0, last_bit_pos-32, 32-first_bit_pos));\
	}\
	/*lint -restore */\
	/*lint -restore */\
}


// prev BMI_GENERIC_32BIT_GET_GRANULARITY_32BIT_BIG
#define BMI_GENERIC_32BIT_GET_BIG_MACHINE_NATIVE( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), 32-first_bit_pos-(bitsize), (bitsize), 0);\
	}\
	else /* last_bit_pos = 32 */\
	{/* ILYA BUG FIX: 22/3/2005: Changed a parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,0), 0, 32-first_bit_pos, last_bit_pos-32);\
		(out_val) = (cast_type)((/*lint -e(571)*/(UINT32)out_val) | BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,1), 64-last_bit_pos, last_bit_pos-32, 0));\
	}\
	/*lint -restore */\
	/*lint -restore */\
}

#define BMI_GENERIC_32BIT_GET_BIG_MACHINE_NATIVE_VOLATILE( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), 32-first_bit_pos-(bitsize), (bitsize), 0);\
	}\
	else /* last_bit_pos = 32 */\
	{/* ILYA BUG FIX: 22/3/2005: Changed a parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), 0, 32-first_bit_pos, last_bit_pos-32);\
		(out_val) = (cast_type)((/*lint -e(571)*/(UINT32)out_val) | BMI_32BIT_EXTRACT( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), 64-last_bit_pos, last_bit_pos-32, 0));\
	}\
	/*lint -restore */\
	/*lint -restore */\
}


// Derived from BMI_GENERIC_32BIT_GET_GRANULARITY_32BIT_BIG
// prev BMI_GENERIC_32BIT_GET_GRANULARITY_32BIT_BIG_ON_LITTLE_MACHINE
#define BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_SWAP( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS(new_ptr)), 32-first_bit_pos-(bitsize), (bitsize), 0);\
	}\
	else /* last_bit_pos = 32 */\
	{ /* ILYA BUG FIX: 22/3/2005: Changed the last parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,0)), 0, 32-first_bit_pos, last_bit_pos-32);\
		(out_val) = (cast_type)((/*lint -e(571)*/(UINT32)out_val) | BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,1)), 64-last_bit_pos, last_bit_pos-32, 0));\
	}\
	/*lint -restore */\
	/*lint -restore */\
}

#define BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_SWAP_VOLATILE( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr)), 32-first_bit_pos-(bitsize), (bitsize), 0);\
	}\
	else /* last_bit_pos = 32 */\
	{ /* ILYA BUG FIX: 22/3/2005: Changed the last parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		(out_val) = (cast_type)BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0)), 0, 32-first_bit_pos, last_bit_pos-32);\
		(out_val) = (cast_type)((/*lint -e(571)*/(UINT32)out_val) | BMI_32BIT_EXTRACT( BMI_SWAP_32BIT(BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1)), 64-last_bit_pos, last_bit_pos-32, 0));\
	}\
	/*lint -restore */\
	/*lint -restore */\
}


// prev BMI_GENERIC_32BIT_SET_GRANULARITY_32BIT_LITTLE
#define BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_NATIVE( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e506 */ /* Constant value boolean*/\
	/*lint -save -e774 */ /* Boolean within 'if' always evaluates to false*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( (first_bit_pos == 0) && ((bitsize) == 32) )\
	{\
		BMI_32BIT_CLEAR_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{\
		BMI_32BIT_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,0), (in_val), first_bit_pos, 0, 32-first_bit_pos);\
		BMI_32BIT_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,1), (in_val), 0, 32-first_bit_pos, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
	/*lint -restore */\
}

#define BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_NATIVE_VOLATILE( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e506 */ /* Constant value boolean*/\
	/*lint -save -e774 */ /* Boolean within 'if' always evaluates to false*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( (first_bit_pos == 0) && ((bitsize) == 32) )\
	{\
		BMI_32BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{\
		BMI_32BIT_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), (in_val), first_bit_pos, 0, 32-first_bit_pos);\
		BMI_32BIT_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), (in_val), 0, 32-first_bit_pos, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
	/*lint -restore */\
}


#define BMI_GENERIC_32BIT_CLEAR_LITTLE_MACHINE_NATIVE( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{\
		BMI_32BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), (in_val), first_bit_pos, 0, 32-first_bit_pos);\
		BMI_32BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), (in_val), 0, 32-first_bit_pos, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
}


// Derived from BMI_GENERIC_32BIT_SET_GRANULARITY_32BIT_LITTLE
// prev BMI_GENERIC_32BIT_SET_GRANULARITY_32BIT_LITTLE_ON_BIG_MACHINE
#define BMI_GENERIC_32BIT_SET_BIG_MACHINE_SWAP( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e506 */ /* Constant value boolean*/\
	/*lint -save -e774 */ /* Boolean within 'if' always evaluates to false*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( (first_bit_pos == 0) && ((bitsize) == 32) )\
	{\
		BMI_32BIT_SWAP_CLEAR_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_SWAP_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{\
		BMI_32BIT_SWAP_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,0), (in_val), first_bit_pos, 0, 32-first_bit_pos);\
		BMI_32BIT_SWAP_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,1), (in_val), 0, 32-first_bit_pos, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
	/*lint -restore */\
}

#define BMI_GENERIC_32BIT_SET_BIG_MACHINE_SWAP_VOLATILE( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e506 */ /* Constant value boolean*/\
	/*lint -save -e774 */ /* Boolean within 'if' always evaluates to false*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( (first_bit_pos == 0) && ((bitsize) == 32) )\
	{\
		BMI_32BIT_SWAP_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_SWAP_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{\
		BMI_32BIT_SWAP_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), (in_val), first_bit_pos, 0, 32-first_bit_pos);\
		BMI_32BIT_SWAP_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), (in_val), 0, 32-first_bit_pos, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
	/*lint -restore */\
}


#define BMI_GENERIC_32BIT_CLEAR_BIG_MACHINE_SWAP( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_SWAP_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), first_bit_pos, 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{\
		BMI_32BIT_SWAP_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), (in_val), first_bit_pos, 0, 32-first_bit_pos);\
		BMI_32BIT_SWAP_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), (in_val), 0, 32-first_bit_pos, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
}


// prev BMI_GENERIC_32BIT_SET_GRANULARITY_32BIT_BIG
#define BMI_GENERIC_32BIT_SET_BIG_MACHINE_NATIVE( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e506 */ /* Constant value boolean*/\
	/*lint -save -e774 */ /* Boolean within 'if' always evaluates to false*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( (first_bit_pos == 0) && ((bitsize) == 32) )\
	{\
		BMI_32BIT_CLEAR_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{/* ILYA BUG FIX: 22/3/2005: Changed a parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		BMI_32BIT_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,0), (in_val), 0, last_bit_pos-32, 32-first_bit_pos);\
		BMI_32BIT_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,1), (in_val), 64-last_bit_pos, 0, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
	/*lint -restore */\
}

#define BMI_GENERIC_32BIT_SET_BIG_MACHINE_NATIVE_VOLATILE( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e506 */ /* Constant value boolean*/\
	/*lint -save -e774 */ /* Boolean within 'if' always evaluates to false*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( (first_bit_pos == 0) && ((bitsize) == 32) )\
	{\
		BMI_32BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{/* ILYA BUG FIX: 22/3/2005: Changed a parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		BMI_32BIT_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), (in_val), 0, last_bit_pos-32, 32-first_bit_pos);\
		BMI_32BIT_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), (in_val), 64-last_bit_pos, 0, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
	/*lint -restore */\
}



#define BMI_GENERIC_32BIT_CLEAR_BIG_MACHINE_NATIVE( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{/* ILYA BUG FIX: 22/3/2005: Changed a parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		BMI_32BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), (in_val), 0, last_bit_pos-32, 32-first_bit_pos);\
		BMI_32BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), (in_val), 64-last_bit_pos, 0, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
}


// Derived from BMI_GENERIC_32BIT_SET_GRANULARITY_32BIT_BIG
// prev BMI_GENERIC_32BIT_SET_GRANULARITY_32BIT_BIG_ON_LITTLE_MACHINE
#define BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_SWAP( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e506 */ /* Constant value boolean*/\
	/*lint -save -e774 */ /* Boolean within 'if' always evaluates to false*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( (first_bit_pos == 0) && ((bitsize) == 32) )\
	{\
		BMI_32BIT_SWAP_CLEAR_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_SWAP_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{ /* ILYA BUG FIX: 22/3/2005: Changed a parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		BMI_32BIT_SWAP_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,0), (in_val), 0, last_bit_pos-32, 32-first_bit_pos);\
		BMI_32BIT_SWAP_ASSIGN( BMI_GET_32BIT_PTR_CONTENTS_INDEX(new_ptr,1), (in_val), 64-last_bit_pos, 0, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
	/*lint -restore */\
}

#define BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_SWAP_VOLATILE( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e506 */ /* Constant value boolean*/\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( (first_bit_pos == 0) && ((bitsize) == 32) )\
	{\
		BMI_32BIT_SWAP_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_SWAP_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{ /* ILYA BUG FIX: 22/3/2005: Changed a parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		BMI_32BIT_SWAP_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), (in_val), 0, last_bit_pos-32, 32-first_bit_pos);\
		BMI_32BIT_SWAP_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), (in_val), 64-last_bit_pos, 0, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
	/*lint -restore */\
}

#define BMI_GENERIC_32BIT_CLEAR_LITTLE_MACHINE_SWAP( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	/*lint -save -e774 */ /* Boolean within if always evaluates to True*/\
	/*lint -save -e778 */ /* Constant expression evaluates to 0 in operation e.g.: x << ((32) - (32))*/\
	BMI_COMMON_32BIT_ADDRESS_CALC( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( last_bit_pos <= 32 )\
	{\
		BMI_32BIT_SWAP_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), 32-first_bit_pos-(bitsize), 0, (bitsize));\
	}\
	else /* last_bit_pos > 32 */\
	{ /* ILYA BUG FIX: 22/3/2005: Changed a parameter from (first_bit_pos) to (last_bit_pos-32) */ \
		BMI_32BIT_SWAP_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,0), (in_val), 0, last_bit_pos-32, 32-first_bit_pos);\
		BMI_32BIT_SWAP_CLEAR_ASSIGN_VOLATILE( BMI_GET_32BIT_PTR_CONTENTS_INDEX_VOLATILE(new_ptr,1), (in_val), 64-last_bit_pos, 0, last_bit_pos-32);\
	}\
	/*lint -restore */\
	/*lint -restore */\
}
//////////////////////////////////////////////////////////////////////////
// 8BIT MACROs

#define BMI_GENERIC_8BIT_GET_LITTLE_MACHINE_NATIVE_NOSPAN( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
	\
	(out_val) = (cast_type)BMI_8BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS((base_ptr)), (base_bitoff), (bitsize), 0 );\
}

#define BMI_GENERIC_8BIT_SET_LITTLE_MACHINE_NATIVE_NOSPAN( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
	\
	if( (bitsize) == 8 )\
	{\
		BMI_8BIT_CLEAR_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS((base_ptr)), (in_val), (base_bitoff), 0, (bitsize) );\
	}\
	else /* else if( (bitsize) < 8 ) */\
	{\
		BMI_8BIT_ASSIGN( BMI_GET_8BIT_PTR_CONTENTS((base_ptr)), (in_val), (base_bitoff), 0, (bitsize) );\
	}\
}

#define BMI_GENERIC_8BIT_CLEAR_LITTLE_MACHINE_NATIVE_NOSPAN( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
	\
	BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_VOLATILE((base_ptr)), (in_val), (base_bitoff), 0, (bitsize) );\
}

#define BMI_GENERIC_8BIT_GET_LITTLE_MACHINE_NATIVE_VOLATILE_NOSPAN( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
	\
	(out_val) = (cast_type)BMI_8BIT_EXTRACT( BMI_GET_8BIT_PTR_CONTENTS_VOLATILE((base_ptr)), (base_bitoff), (bitsize), 0 );\
}

#define BMI_GENERIC_8BIT_SET_LITTLE_MACHINE_NATIVE_VOLATILE_NOSPAN( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	BMI_NORMALIZE_BITOFF( (base_ptr), (base_bitoff) );\
	\
	if( (bitsize) == 8 )\
	{\
		BMI_8BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_VOLATILE((base_ptr)), (in_val), (base_bitoff), 0, (bitsize) );\
	}\
	else /* else if( (bitsize) < 8 ) */\
	{\
		BMI_8BIT_ASSIGN_VOLATILE( BMI_GET_8BIT_PTR_CONTENTS_VOLATILE((base_ptr)), (in_val), (base_bitoff), 0, (bitsize) );\
	}\
}

//////////////////////////////////////////////////////////////////////////
// 16BIT MACROs

#define BMI_GENERIC_16BIT_GET_LITTLE_MACHINE_NATIVE_NOSPAN( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	BMI_COMMON_16BIT_ADDRESS_CALC_NOSPAN( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	(out_val) = (cast_type)BMI_16BIT_EXTRACT( BMI_GET_16BIT_PTR_CONTENTS(new_ptr), (first_bit_pos), (bitsize), 0 );\
}

#define BMI_GENERIC_16BIT_SET_LITTLE_MACHINE_NATIVE_NOSPAN( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	BMI_COMMON_16BIT_ADDRESS_CALC_NOSPAN( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	if( (bitsize) == 16 )\
	{\
		BMI_16BIT_CLEAR_ASSIGN( BMI_GET_16BIT_PTR_CONTENTS(new_ptr), (in_val), first_bit_pos, 0, (bitsize) );\
	}\
	else /* else if( (bitsize) < 16 ) */\
	{\
		BMI_16BIT_ASSIGN( BMI_GET_16BIT_PTR_CONTENTS(new_ptr), (in_val), first_bit_pos, 0, (bitsize) );\
	}\
}

#define BMI_GENERIC_16BIT_CLEAR_LITTLE_MACHINE_NATIVE_NOSPAN( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	BMI_COMMON_16BIT_ADDRESS_CALC_NOSPAN( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	BMI_16BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_16BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), first_bit_pos, 0, (bitsize) );\
}

#define BMI_GENERIC_16BIT_GET_LITTLE_MACHINE_NATIVE_VOLATILE_NOSPAN( base_ptr, base_bitoff, bitsize, cast_type, out_val, byte_align_off )\
{\
	BMI_COMMON_16BIT_ADDRESS_CALC_NOSPAN( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	(out_val) = (cast_type)BMI_16BIT_EXTRACT( BMI_GET_16BIT_PTR_CONTENTS_VOLATILE(new_ptr), first_bit_pos, (bitsize), 0 );\
}

#define BMI_GENERIC_16BIT_SET_LITTLE_MACHINE_NATIVE_VOLATILE_NOSPAN( base_ptr, base_bitoff, bitsize, in_val, byte_align_off )\
{\
	BMI_COMMON_16BIT_ADDRESS_CALC_NOSPAN( base_ptr, base_bitoff, bitsize, byte_align_off );\
	\
	/*lint -e{506} -e{774} */\
	if( (bitsize) == 16 )\
	{\
		BMI_16BIT_CLEAR_ASSIGN_VOLATILE( BMI_GET_16BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), first_bit_pos, 0, (bitsize) );\
	}\
	else /* else if( (bitsize) < 16 ) */\
	{\
		BMI_16BIT_ASSIGN_VOLATILE( BMI_GET_16BIT_PTR_CONTENTS_VOLATILE(new_ptr), (in_val), first_bit_pos, 0, (bitsize) );\
	}\
}

#if defined BMI_ENDIANNESS_LITTLE

	#if (defined __arm || defined __arc)
		#define BMI_MACHINE_VALUE (BMI_MACHINE_ARM_LITTLE)
	#else
		#define BMI_MACHINE_VALUE (BMI_MACHINE_INTEL_LITTLE)
	#endif

	/* 32BIT SPAN-ENABLED GENERIC ---------------------------- */
	/* NON-VOLATILE macros */
	#define BMI_GENERIC_32BIT_BIG_GET					BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_SWAP
	#define BMI_GENERIC_32BIT_BIG_SET					BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_SWAP
	#define BMI_GENERIC_32BIT_LITTLE_GET				BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_NATIVE
	#define BMI_GENERIC_32BIT_LITTLE_SET				BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_NATIVE

	/* VOLATILE macros */
	#define BMI_GENERIC_32BIT_BIG_GET_VOLATILE			BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_32BIT_BIG_SET_VOLATILE			BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_32BIT_LITTLE_GET_VOLATILE		BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_NATIVE_VOLATILE
	#define BMI_GENERIC_32BIT_LITTLE_SET_VOLATILE		BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_NATIVE_VOLATILE

	/* The following CLEAR macros are volatile */
	#define BMI_GENERIC_32BIT_BIG_CLEAR					BMI_GENERIC_32BIT_CLEAR_LITTLE_MACHINE_SWAP
	#define BMI_GENERIC_32BIT_LITTLE_CLEAR				BMI_GENERIC_32BIT_CLEAR_LITTLE_MACHINE_NATIVE

	/* 8BIT NOSPAN ------------------------------------------- */
	/* NON-VOLATILE macros */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_8BIT_BIG_GET_NOSPAN				BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_8BIT_BIG_SET_NOSPAN				BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_8BIT_LITTLE_GET_NOSPAN			BMI_GENERIC_8BIT_GET_LITTLE_MACHINE_NATIVE_NOSPAN
	#define BMI_GENERIC_8BIT_LITTLE_SET_NOSPAN			BMI_GENERIC_8BIT_SET_LITTLE_MACHINE_NATIVE_NOSPAN

	/* VOLATILE macros */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_8BIT_BIG_GET_VOLATILE_NOSPAN	BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_8BIT_BIG_SET_VOLATILE_NOSPAN	BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_8BIT_LITTLE_GET_VOLATILE_NOSPAN	BMI_GENERIC_8BIT_GET_LITTLE_MACHINE_NATIVE_VOLATILE_NOSPAN
	#define BMI_GENERIC_8BIT_LITTLE_SET_VOLATILE_NOSPAN	BMI_GENERIC_8BIT_SET_LITTLE_MACHINE_NATIVE_VOLATILE_NOSPAN

	/* The following CLEAR macros are volatile */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_8BIT_BIG_CLEAR_NOSPAN			BMI_GENERIC_32BIT_CLEAR_LITTLE_MACHINE_SWAP
	#define BMI_GENERIC_8BIT_LITTLE_CLEAR_NOSPAN		BMI_GENERIC_8BIT_CLEAR_LITTLE_MACHINE_NATIVE_NOSPAN

	/* 16BIT NOSPAN ------------------------------------------- */
	/* NON-VOLATILE macros */
	/* TEMPORARY IMPLEMENTATION 16 ==>> 32 */
	#define BMI_GENERIC_16BIT_BIG_GET_NOSPAN				BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_SWAP
	#define BMI_GENERIC_16BIT_BIG_SET_NOSPAN				BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_SWAP
	#define BMI_GENERIC_16BIT_LITTLE_GET_NOSPAN				BMI_GENERIC_16BIT_GET_LITTLE_MACHINE_NATIVE_NOSPAN
	#define BMI_GENERIC_16BIT_LITTLE_SET_NOSPAN				BMI_GENERIC_16BIT_SET_LITTLE_MACHINE_NATIVE_NOSPAN

	/* VOLATILE macros */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_16BIT_BIG_GET_VOLATILE_NOSPAN		BMI_GENERIC_32BIT_GET_LITTLE_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_16BIT_BIG_SET_VOLATILE_NOSPAN		BMI_GENERIC_32BIT_SET_LITTLE_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_16BIT_LITTLE_GET_VOLATILE_NOSPAN	BMI_GENERIC_16BIT_GET_LITTLE_MACHINE_NATIVE_VOLATILE_NOSPAN
	#define BMI_GENERIC_16BIT_LITTLE_SET_VOLATILE_NOSPAN	BMI_GENERIC_16BIT_SET_LITTLE_MACHINE_NATIVE_VOLATILE_NOSPAN

	/* The following CLEAR macros are volatile */
	/* TEMPORARY IMPLEMENTATION 16 ==>> 32 */
	#define BMI_GENERIC_16BIT_BIG_CLEAR_NOSPAN				BMI_GENERIC_32BIT_CLEAR_LITTLE_MACHINE_SWAP
	#define BMI_GENERIC_16BIT_LITTLE_CLEAR_NOSPAN			BMI_GENERIC_16BIT_CLEAR_LITTLE_MACHINE_NATIVE_NOSPAN

#elif defined BMI_ENDIANNESS_BIG

	#define BMI_MACHINE_VALUE (BMI_MACHINE_ARM_BIG)

	/* NON-VOLATILE macros */
	#define BMI_GENERIC_32BIT_BIG_GET					BMI_GENERIC_32BIT_GET_BIG_MACHINE_NATIVE
	#define BMI_GENERIC_32BIT_BIG_SET					BMI_GENERIC_32BIT_SET_BIG_MACHINE_NATIVE
	#define BMI_GENERIC_32BIT_LITTLE_GET				BMI_GENERIC_32BIT_GET_BIG_MACHINE_SWAP
	#define BMI_GENERIC_32BIT_LITTLE_SET				BMI_GENERIC_32BIT_SET_BIG_MACHINE_SWAP

	/* VOLATILE macros */
	#define BMI_GENERIC_32BIT_BIG_GET_VOLATILE			BMI_GENERIC_32BIT_GET_BIG_MACHINE_NATIVE_VOLATILE
	#define BMI_GENERIC_32BIT_BIG_SET_VOLATILE			BMI_GENERIC_32BIT_SET_BIG_MACHINE_NATIVE_VOLATILE
	#define BMI_GENERIC_32BIT_LITTLE_GET_VOLATILE		BMI_GENERIC_32BIT_GET_BIG_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_32BIT_LITTLE_SET_VOLATILE		BMI_GENERIC_32BIT_SET_BIG_MACHINE_SWAP_VOLATILE

	/* The following CLEAR macros are volatile */
	#define BMI_GENERIC_32BIT_BIG_CLEAR					BMI_GENERIC_32BIT_CLEAR_BIG_MACHINE_NATIVE
	#define BMI_GENERIC_32BIT_LITTLE_CLEAR				BMI_GENERIC_32BIT_CLEAR_BIG_MACHINE_SWAP

	/* 8BIT NOSPAN ------------------------------------------- */
	/* NON-VOLATILE macros */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_8BIT_BIG_GET_NOSPAN				BMI_GENERIC_32BIT_GET_BIG_MACHINE_NATIVE
	#define BMI_GENERIC_8BIT_BIG_SET_NOSPAN				BMI_GENERIC_32BIT_SET_BIG_MACHINE_NATIVE
	#define BMI_GENERIC_8BIT_LITTLE_GET_NOSPAN			BMI_GENERIC_32BIT_GET_BIG_MACHINE_SWAP
	#define BMI_GENERIC_8BIT_LITTLE_SET_NOSPAN			BMI_GENERIC_32BIT_SET_BIG_MACHINE_SWAP

	/* VOLATILE macros */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_8BIT_BIG_GET_VOLATILE_NOSPAN	BMI_GENERIC_32BIT_GET_BIG_MACHINE_NATIVE_VOLATILE
	#define BMI_GENERIC_8BIT_BIG_SET_VOLATILE_NOSPAN	BMI_GENERIC_32BIT_SET_BIG_MACHINE_NATIVE_VOLATILE
	#define BMI_GENERIC_8BIT_LITTLE_GET_VOLATILE_NOSPAN	BMI_GENERIC_32BIT_GET_BIG_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_8BIT_LITTLE_SET_VOLATILE_NOSPAN	BMI_GENERIC_32BIT_SET_BIG_MACHINE_SWAP_VOLATILE

	/* The following CLEAR macros are volatile */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_8BIT_BIG_CLEAR_NOSPAN			BMI_GENERIC_32BIT_CLEAR_BIG_MACHINE_NATIVE
	#define BMI_GENERIC_8BIT_LITTLE_CLEAR_NOSPAN		BMI_GENERIC_32BIT_CLEAR_BIG_MACHINE_SWAP

	/* 16BIT NOSPAN ------------------------------------------- */
	/* NON-VOLATILE macros */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_16BIT_BIG_GET_NOSPAN				BMI_GENERIC_32BIT_GET_BIG_MACHINE_NATIVE
	#define BMI_GENERIC_16BIT_BIG_SET_NOSPAN				BMI_GENERIC_32BIT_SET_BIG_MACHINE_NATIVE
	#define BMI_GENERIC_16BIT_LITTLE_GET_NOSPAN				BMI_GENERIC_32BIT_GET_BIG_MACHINE_SWAP
	#define BMI_GENERIC_16BIT_LITTLE_SET_NOSPAN				BMI_GENERIC_32BIT_SET_BIG_MACHINE_SWAP

	/* VOLATILE macros */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_16BIT_BIG_GET_VOLATILE_NOSPAN		BMI_GENERIC_32BIT_GET_BIG_MACHINE_NATIVE_VOLATILE
	#define BMI_GENERIC_16BIT_BIG_SET_VOLATILE_NOSPAN		BMI_GENERIC_32BIT_SET_BIG_MACHINE_NATIVE_VOLATILE
	#define BMI_GENERIC_16BIT_LITTLE_GET_VOLATILE_NOSPAN	BMI_GENERIC_32BIT_GET_BIG_MACHINE_SWAP_VOLATILE
	#define BMI_GENERIC_16BIT_LITTLE_SET_VOLATILE_NOSPAN	BMI_GENERIC_32BIT_SET_BIG_MACHINE_SWAP_VOLATILE

	/* The following CLEAR macros are volatile */
	/* TEMPORARY IMPLEMENTATION 8 ==>> 32 */
	#define BMI_GENERIC_16BIT_BIG_CLEAR_NOSPAN				BMI_GENERIC_32BIT_CLEAR_BIG_MACHINE_NATIVE
	#define BMI_GENERIC_16BIT_LITTLE_CLEAR_NOSPAN			BMI_GENERIC_32BIT_CLEAR_BIG_MACHINE_SWAP

#else
	#error The target processor endianness must be specified (BMI_MACHINE_ENDIANNESS_LITTLE/BIG. Note that BMI_ENDIANNESS_LITTLE/BIG is obsolete).
#endif

//////////////////////////////////////////////////////////////////////////
// Prototypes for functions in BitmanCommon.c
void BMI_GET_BIG_TLV_LENGTH(
	PVOID cur_ptr,
	UINT cur_bitoff,
	PUINT puiout_length_of_length,
	PUINT out_length,
	PUINT out_error_value );

void BMI_GET_LITTLE_TLV_LENGTH(
	PVOID cur_ptr,
	UINT cur_bitoff,
	PUINT puiout_length_of_length,
	PUINT out_length,
	PUINT out_error_value );

void BMI_SET_BIG_TLV_LENGTH(
	PVOID cur_ptr,
	UINT cur_bitoff,
	UINT length_of_length,
	UINT length );

void BMI_SET_LITTLE_TLV_LENGTH(
	PVOID cur_ptr,
	UINT cur_bitoff,
	UINT length_of_length,
	UINT length );


void BMI_GET_BIG_T2L2V_LENGTH(
	PVOID cur_ptr,
	UINT cur_bitoff,
	PUINT out_length,
	PUINT out_error_value );

void BMI_GET_LITTLE_T2L2V_LENGTH(
	PVOID cur_ptr,
	UINT cur_bitoff,
	PUINT out_length,
	PUINT out_error_value );

void BMI_SET_BIG_T2L2V_LENGTH(
	PVOID cur_ptr,
	UINT cur_bitoff,
	UINT length );

void BMI_SET_LITTLE_T2L2V_LENGTH(
	PVOID cur_ptr,
	UINT cur_bitoff,
	UINT length );


void BMI_FORMAT_DUMP( UINT level, PSTR name, UINT size_bits, UINT value, PCSTR val_format, BOOL addnewline );
void BMI_STR_DUMP( UINT level, PSTR name, PSTR value, BOOL addnewline );
void BMI_FORMAT_NONVALUE_DUMP( UINT level, PSTR name, BOOL addnewline );

//////////////////////////////////////////////////////////////////////////
//#ifdef __arm
//	/* The following macro was previously declared as { (x) = (x); }.
//	 * It was changed to allow treating constants as unused variables.
//	 * The previous declaration resulted in an "invalid l-value" error
//	 * because it's impossible to assign a constant into a constant.
//	 */
//	#define BMI_UNUSED_VAR(x)	{ INT tmp; tmp = (INT)(x); tmp = tmp; }
//#else
//	/* We had a problem disabling lint warning 522 for the next statement
//	 * using the "lint -e(522)" syntax. Lint had simply ignored it.
//	 */
//	#define BMI_UNUSED_VAR(x)	{  /*lint -e522*/ (x); /*lint +e522*/ }
//#endif

//#define BMI_UNUSED_VAR(x)	{INT tmp; tmp = (INT)(x); tmp = tmp; }
#define BMI_UNUSED_VAR(x)	{POINTER_AND_UINT tmp; tmp = (POINTER_AND_UINT)(x); tmp = tmp; }

//////////////////////////////////////////////////////////////////////////
// TLV Related structures
typedef struct
{
	PVOID ptr;
	UINT bitoff;
} BMI_tlv_buf_cell;

//////////////////////////////////////////////////////////////////////////
// Errors
#define BM_ERROR_SUCCESS						(0)
#define BM_ERROR_TLV_TOO_LONG_LENGTH			(1)
#define BM_ERROR_TLV_UNKNOWN_TYPE				(2)
#define BM_ERROR_TLV_ZERO_LENGTH				(3)

#define BMI_ASSERT( x )

/*lint --flb */

#endif /* _BITMAN_COMMON_H_ */

/* Leave the next new line (at the end of file) to avoid RVDS/ADS compiler warning */