nmpp
vSelect.h
1//------------------------------------------------------------------------
2//
3// $Workfile:: vSelect.h $
4//
5// Векторно-матричная библиотека
6//
7// Copyright (c) RC Module Inc.
8//
9// $Revision: 1.2 $ $Date: 2005/07/13 14:19:56 $
10//
11// author: S. Mushkaev
12//------------------------------------------------------------------------
13
14#ifndef VSELECT_H
15#define VSELECT_H
16
17#include "malloc32.h"
18#ifdef __cplusplus
19 extern "C" {
20#endif
21
76
91void nmppsMax_8s7b(const nm8s7b* pSrcVec, int nSize, int8b* nMaxValue);
103void nmppsMax_16s15b(const nm16s15b* pSrcVec, int nSize, int16b* nMaxValue);
116void nmppsMax_32s31b(const nm32s31b* pSrcVec, int nSize, int* nMaxValue);
117void nmppsMax_64s63b(const nm64s63b* pSrcVec, int nSize, int64b *nMaxValue);
118
119int nmppsMax_8sm (const nm8s* srcVec, int size, int8b* maxValue, nm16s* tmp);
120int nmppsMax_16sm(const nm16s* srcVec, int size, int16b* maxValue, nm32s* tmp);
121int nmppsMax_32sm(const nm32s* srcVec, int size, int32b* maxValue, nm64s* tmp);
122
123
125
126//*****************************************************************************
127
182
196void nmppsMin_8s7b(const nm8s7b* pSrcVec, int nSize, int8b* nMinValue);
208void nmppsMin_16s15b(const nm16s15b* pSrcVec, int nSize, int16b* nMinValue);
220void nmppsMin_32s31b(const nm32s31b* pSrcVec, int nSize, int* nMinValue);
221void nmppsMin_64s63b(const nm64s63b* pSrcVec, int nSize, int64b* nMinValue);
222
223
224int nmppsMin_8sm (const nm8s* srcVec, int size, int8b* minValue, nm16s* tmp);
225int nmppsMin_16sm(const nm16s* srcVec, int size, int16b* minValue, nm32s* tmp);
226int nmppsMin_32sm(const nm32s* srcVec, int size, int32b* minValue, nm64s* tmp);
227
228
230
231//*****************************************************************************
232
313void nmppsMaxIndx_8s(nm8s7b *pSrcVec, int nSize, int* nIndex, int8b *nMaxValue, void *pLTmpBuf,void *pGTmpBuf, int nSearchDir);
314void nmppsMaxIndx_16s(nm16s15b *pSrcVec, int nSize, int* nIndex, int16b *nMaxValue, void *pLTmpBuf,void *pGTmpBuf, int nSearchDir);
315void nmppsMaxIndx_32s(nm32s31b *pSrcVec, int nSize, int* nIndex, int32b *nMaxValue, void *pLTmpBuf,void *pGTmpBuf, int nSearchDir);
317
318
319//*****************************************************************************
320
401void nmppsMinIndx_8s(nm8s7b *pSrcVec, int nSize, int* nIndex, int8b *nMinValue, void *pLTmpBuf,void *pGTmpBuf, int nSearchDir);
402void nmppsMinIndx_16s(nm16s15b *pSrcVec, int nSize, int* nIndex, int16b *nMinValue, void *pLTmpBuf,void *pGTmpBuf, int nSearchDir);
403void nmppsMinIndx_32s(nm32s31b *pSrcVec, int nSize, int* nIndex, int32b *nMinValue, void *pLTmpBuf,void *pGTmpBuf, int nSearchDir);
405
406
407//*****************************************************************************
408
450int nmppsMinIndxV9_32s(int* pSrcVec,int nStride,int* nPos);
451int nmppsMinIndxV16_32s(int* pSrcVec,int nStride,int* nPos);
452int nmppsMinIndxV25_32s(int* pSrcVec,int nStride,int* nPos);
453int nmppsMinIndxV256_32s(int* pSrcVec,int nStride,int* nPos);
454int nmppsMinIndxV1024_32s(int* pSrcVec,int nStride,int* nPos);
456
457//*****************************************************************************
458
496int nmppsFirstZeroIndx_32s(int* pSrcVec, int nSize);
498//*****************************************************************************
499
537int nmppsFirstNonZeroIndx_32s(int* pSrcVec, int nSize);
539
540//*****************************************************************************
541
579int nmppsLastZeroIndx_32s(int* pSrcVec, int nSize);
581
582//*****************************************************************************
583
623int nmppsLastNonZeroIndx_32s(int* pSrcVec, int nSize);
625
626
627//*****************************************************************************
687
688void nmppsMinEvery_8s(nm8s7b* pSrcVec1, nm8s7b* pSrcVec2, nm8s7b* pDstMinVec, int nSize);
689void nmppsMinEvery_16s(nm16s15b* pSrcVec1, nm16s15b* pSrcVec2, nm16s15b* pDstMinVec, int nSize);
690void nmppsMinEvery_32s(nm32s31b* pSrcVec1, nm32s31b* pSrcVec2, nm32s31b* pDstMinVec, int nSize);
691void nmppsMinEvery_64s(nm64s63b* pSrcVec1, nm64s63b* pSrcVec2, nm64s63b* pDstMinVec, int nSize);
692
694//*****************************************************************************
695// numVecs > 2
696void nmppsMinNV_8s(nm8s7b** pSrcVecs, int numVecs, nm8s7b* pDstMinVec, int nSize);
697void nmppsMinNV_16s(nm16s15b** pSrcVecs, int numVecs, nm16s15b* pDstMinVec, int nSize);
698void nmppsMinNV_32s(nm32s31b** pSrcVecs, int numVecs, nm32s31b* pDstMinVec, int nSize);
699void nmppsMinNV_64s(nm64s63b** pSrcVecs, int numVecs, nm64s63b* pDstMinVec, int nSize);
700
701//*****************************************************************************
702
763void nmppsMaxEvery_8s(nm8s7b* pSrcVec1, nm8s7b* pSrcVec2, nm8s7b* pDstMaxVec, int nSize);
764void nmppsMaxEvery_16s(nm16s15b* pSrcVec1, nm16s15b* pSrcVec2, nm16s15b* pDstMaxVec, int nSize);
765void nmppsMaxEvery_32s(nm32s31b* pSrcVec1, nm32s31b* pSrcVec2, nm32s31b* pDstMaxVec, int nSize);
766void nmppsMaxEvery_64s(nm64s63b* pSrcVec1, nm64s63b* pSrcVec2, nm64s63b* pDstMaxVec, int nSize);
767
769
770//*****************************************************************************
771
848void nmppsMinCmpLtV_16s(nm16s15b* pSrcVec1, nm16s15b* pSrcVec2, nm16s15b* pDstMin, nm16s15b* pDstSignMask, int nSize);
850
851
852//*****************************************************************************
853
911void nmppsCmpLt0_8s (const nm8s* pSrcVec, nm8s* pDstVec, int nSize);
912void nmppsCmpLt0_16s(const nm16s* pSrcVec, nm16s* pDstVec, int nSize);
913void nmppsCmpLt0_32s(const nm32s* pSrcVec, nm32s* pDstVec, int nSize);
914void nmppsCmpLt0_64s(const nm64s* pSrcVec, nm64s* pDstVec, int nSize);
916
932void nmppsCmpLteC_v2nm32f(const v2nm32f* pSrcVec, const v2nm32f* C, nm1* evenFlags, nm1* oddFlags, int step, int nSize);
934
950void nmppsCmpLtC_v2nm32f(const v2nm32f* pSrcVec, const v2nm32f* C, nm1* evenFlags, nm1* oddFlags, int step, int nSize);
952
953//*****************************************************************************
954
1023
1026void nmppsCmpEq0_8u7b(nm8u7b* pSrcVec, nm1* pDstVec, int nSize, int nTrueFlag);
1030void nmppsCmpEq0_16u15b(nm16u15b* pSrcVec, nm1* pDstVec, int nSize, int nTrueFlag);
1034void nmppsCmpEq0_32u31b(nm32u31b* pSrcVec, nm1* pDstVec, int nSize, int nTrueFlag);
1035
1036//void nmppsCmpNe0_8s (const nm8s* pSrcVec, nm8s* pDstVec, int nSize);
1037//void nmppsCmpNe0_16s(const nm16s* pSrcVec, nm16s* pDstVec, int nSize);
1038//void nmppsCmpNe0_32s(const nm32s* pSrcVec, nm32s* pDstVec, int nSize);
1039//void nmppsCmpNe0_64s(const nm64s* pSrcVec, nm64s* pDstVec, int nSize);
1040
1042
1043//*****************************************************************************
1044
1102void nmppsCmpGt0_8s (const nm8s* pSrcVec, nm8s* pDstVec, int nSize);
1103void nmppsCmpGt0_16s(const nm16s* pSrcVec, nm16s* pDstVec, int nSize);
1104void nmppsCmpGt0_32s(const nm32s* pSrcVec, nm32s* pDstVec, int nSize);
1105void nmppsCmpGt0_64s(const nm64s* pSrcVec, nm64s* pDstVec, int nSize);
1107
1172void nmppsMinMaxEvery_8s(nm8s* pSrcVec1, nm8s* pSrcVec2, nm8s* pDstMin, nm8s* pDstMax, int nSize);
1173void nmppsMinMaxEvery_16s(nm16s* pSrcVec1, nm16s* pSrcVec2, nm16s* pDstMin, nm16s* pDstMax, int nSize);
1174void nmppsMinMaxEvery_32s(nm32s* pSrcVec1, nm32s* pSrcVec2, nm32s* pDstMin, nm32s* pDstMax, int nSize);
1176
1177
1178//*****************************************************************************
1179
1240void nmppsClipPowC_8s(nm8s* pSrcVec, int nClipFactor, nm8s* pDstVec, int nSize);
1241void nmppsClipPowC_16s(nm16s* pSrcVec, int nClipFactor, nm16s* pDstVec, int nSize);
1242void nmppsClipPowC_32s(nm32s* pSrcVec, int nClipFactor, nm32s* pDstVec, int nSize);
1243void nmppsClipPowC_64s(nm64s* pSrcVec, int nClipFactor, nm64s* pDstVec, int nSize);
1245
1246//*****************************************************************************
1247
1323void nmppsClipCC_32s(nm32s30b* pSrcVec, int30b nNegThresh, int30b nPosThresh, nm32s30b* pDstVec, int nSize);
1325
1394void nmppsThreshold_Lt_Gt_32f(nm32f* pSrcVec, nm32f* pDstVec, float min, float max, int nSize);
1396
1397//*****************************************************************************
1398
1494void nmppsClipRShiftConvertAddC_16s8s(nm16s* pSrcVec, int nClipFactor,int nShift, int8b nAddValue,nm8s* pDstVec, int nSize);
1495void nmppsClipRShiftConvertAddC_32s8s(nm32s* pSrcVec, int nClipFactor,int nShift, int8b nAddValue,nm8s* pDstVec, int nSize);
1497
1498//extern "C" nm64u VEC_TBL_Diagonal_01h_G[8];
1499//extern "C" nm64u VEC_TBL_Diagonal_01h_L[8];
1550
1551//void nmppsClipConvertAddC_16s8s(nm16s* pSrcVec, int nClipFactor, int8b nAddValue,nm8s* pDstVec, int nSize, nm64u* weights); //=VEC_TBL_Diagonal_01h_G
1552typedef nm64u NmppsWeightState;
1553void nmppsClipConvertAddCInitAlloc_16s8s(NmppsWeightState** ppState);
1554void nmppsClipConvertAddC_16s8s(nm16s* pSrcVec, int nClipFactor, int8b nAddValue,nm8s* pDstVec, int nSize, NmppsWeightState* pState); //=VEC_TBL_Diagonal_01h_G
1555void nmppsClipConvertAddCFree(NmppsWeightState* pState);
1557
1558
1559//*****************************************************************************
1650
1651//void nmppsClipRShiftConvert_AddC_Ext_(v8nm16s* pSrcVec, v8nm32s* pnClipFactor, v8nm32s* pnShift, v8nm8s* pnAdd, v8nm8s* pDstVec, int nSize);
1652void nmppsClipRShiftConvert_AddC_Ext_(v8nm16s* pSrcVec, v8nm32s* pnClipFactor, v8nm32s* pnShift, v8nm32s* pnAdd, v8nm8s* pDstVec, int nSize);
1653
1655//void nmppsClipRShiftConvert_AddC_Ext_(v16nm16s* pSrcVec, v16nm32s* pnClipFactor, v16nm32s* pnShift,v16nm4s* pnAdd,
1656// v16nm4s* pDstVec, int nSize);
1657
1658
1659//******************************************************************************************
1660
1716void nmppsCmpEqC_16u15b(nm16u15b* pSrcVec, uint15b nCmpVal, nm16s* pDstVec, int nSize, int16b nTrueFlag);
1717void nmppsCmpEqC_8u7b (nm8u7b* pSrcVec, uint7b nCmpVal, nm8s* pDstVec, int nSize, int8b nTrueFlag);
1718void nmppsCmpEqC_4u3b (nm4u3b* pSrcVec, uint3b nCmpVal, nm4s* pDstVec, int nSize, int4b nTrueFlag);
1720
1721
1722//******************************************************************************************
1723
1768
1769 void nmppsCmpNe0_8s (const nm8s* pSrcVec, nm8s* pDstVec, int nSize);
1770 void nmppsCmpNe0_16s(const nm16s* pSrcVec, nm16s* pDstVec, int nSize);
1771 void nmppsCmpNe0_32s(const nm32s* pSrcVec, nm32s* pDstVec, int nSize);
1772 void nmppsCmpNe0_64s(const nm64s* pSrcVec, nm64s* pDstVec, int nSize);
1773
1775
1820
1821 void nmppsCmpEq0_32s(const nm32s* pSrcVec, nm32s* pDstVec, int nSize);
1822
1824
1825
1873 void nmppsCmpNeC_8s (const nm8s* pSrcVec, int8b nCmpVal, nm8s* pDstVec, int nSize);
1874 void nmppsCmpNeC_16s (const nm16s* pSrcVec, int16b nCmpVal, nm16s* pDstVec, int nSize);
1875 void nmppsCmpNeC_32s (const nm32s* pSrcVec, int32b nCmpVal, nm32s* pDstVec, int nSize);
1876 void nmppsCmpNeC_64s (const nm64s* pSrcVec, int64b nCmpVal, nm64s* pDstVec, int nSize);
1878
1939 void nmppsCmpNeC_8u7b (nm8u7b* pSrcVec, uint7b nCmpVal, nm8s* pDstVec, int nSize, int8b nTrueFlag);
1940 void nmppsCmpNeC_16u15b(nm16u15b* pSrcVec, uint15b nCmpVal, nm16s* pDstVec, int nSize, int16b nTrueFlag);
1942
1943 int nmppsCmpNeC_8s8um (const nm8s* pSrcVec, int8b nCmpVal, nm8u* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1944 int nmppsCmpNeC_16s8um (const nm16s* pSrcVec, int16b nCmpVal, nm8u* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1945 int nmppsCmpNeC_32s8um (const nm32s* pSrcVec, int32b nCmpVal, nm8u* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1946 int nmppsCmpNeC_64s8um (const nm64s* pSrcVec, int64b nCmpVal, nm8u* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1947
1948
1949
1950
1951
1952
1953 //spec.mode=ONE_TIME_ALLOC|ROUTE_ALLOC|OPTIMIZE_ROUTE;
1954
1955 //int nmppsCmpLtC_8s8um (const nm8s* pSrcVec, int8b nCmpVal, nm8s* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1956 //int nmppsCmpLtC_16s8um (const nm16s* pSrcVec, int16b nCmpVal, nm16s* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1957 //int nmppsCmpLtC_32s8um (const nm32s* pSrcVec, int32b nCmpVal, nm32s* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1958 //int nmppsCmpLtC_64s (const nm64s* pSrcVec, int64b nCmpVal, nm64s* pDstVec, int nSize, Tmp2BuffSpec *spec);
1959 //
1960 int nmppsCmpLtC_8s8um (const nm8s* pSrcVec, int8b nCmpVal, nm8u* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1961 int nmppsCmpLtC_16s8um (const nm16s* pSrcVec, int16b nCmpVal, nm8u* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1962 int nmppsCmpLtC_32s8um (const nm32s* pSrcVec, int32b nCmpVal, nm8u* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1963 int nmppsCmpLtC_64s8um (const nm64s* pSrcVec, int64b nCmpVal, nm8u* pDstVec, int nSize, struct NmppsTmpSpec *spec);
1964
1965/*
1966 void nmppsCmpGtC_8s (nm8s* pSrcVec, int8b nCmpVal, nm8s* pDstVec, int nSize, Tmp2BuffSpec *spec);
1967 void nmppsCmpGtC_16s (nm16s* pSrcVec, int16b nCmpVal, nm16s* pDstVec, int nSize, Tmp2BuffSpec *spec);
1968 void nmppsCmpGtC_32s (nm32s* pSrcVec, int32b nCmpVal, nm32s* pDstVec, int nSize, Tmp2BuffSpec *spec);
1969 void nmppsCmpGtC_64s (nm64s* pSrcVec, int64b nCmpVal, nm64s* pDstVec, int nSize, Tmp2BuffSpec *spec);
1970*/
2008 void nmppsCmpLtC_8s7b (const nm8s7b * pSrcVec, int8b nCmpVal,nm8s* pDstVec, int nSize);
2009 void nmppsCmpLtC_16s15b (const nm16s15b* pSrcVec, int16b nCmpVal, nm16s* pDstVec, int nSize);
2010 void nmppsCmpLtC_32s31b (const nm32s31b* pSrcVec, int32b nCmpVal, nm32s* pDstVec, int nSize);
2011 void nmppsCmpLtC_64s63b (const nm64s63b* pSrcVec, int64b nCmpVal, nm64s* pDstVec, int nSize);
2013
2051 void nmppsCmpGtC_8s7b (const nm8s7b * pSrcVec, int8b nCmpVal, nm8s * pDstVec, int nSize);
2052 void nmppsCmpGtC_16s15b (const nm16s15b* pSrcVec, int16b nCmpVal, nm16s* pDstVec, int nSize);
2053 void nmppsCmpGtC_32s31b (const nm32s31b* pSrcVec, int32b nCmpVal, nm32s* pDstVec, int nSize);
2054 void nmppsCmpGtC_64s63b (const nm64s63b* pSrcVec, int64b nCmpVal, nm64s* pDstVec, int nSize);
2056
2071void nmppsCmpGteC_v2nm32f(const v2nm32f* pSrcVec, const v2nm32f* C, nm1* evenFlags, nm1* oddFlags, int step, int nSize);
2073
2088void nmppsCmpGtC_v2nm32f(const v2nm32f* pSrcVec, const v2nm32f* C, nm1* evenFlags, nm1* oddFlags, int step, int nSize);
2090
2091//******************************************************************************************
2092
2146void nmppsCmpEqV_16u15b(nm16u15b* pSrcVec1, nm16u15b* pSrcVec2, nm16s* pDstVec, int nSize, int16b nTrueFlag);
2147void nmppsCmpEqV_8u7b(nm8u7b* pSrcVec1, nm8u7b* pSrcVec2, nm8s* pDstVec, int nSize, int8b nTrueFlag);
2149
2193void nmppsCmpNe_8s (const nm8s* pSrcVec1, const nm8s* pSrcVec2, nm8s* pDstVec, int nSize);
2194void nmppsCmpNe_16s (const nm16s* pSrcVec1, const nm16s* pSrcVec2, nm16s* pDstVec, int nSize);
2195void nmppsCmpNe_32s (const nm32s* pSrcVec1, const nm32s* pSrcVec2, nm32s* pDstVec, int nSize);
2196void nmppsCmpNe_64s (const nm64s* pSrcVec1, const nm64s* pSrcVec2, nm64s* pDstVec, int nSize);
2198
2199int nmppsCmpNe_8s8um (const nm8s* pSrcVec1, const nm8s* pSrcVec2, nm8u* pDstVec, int nSize, struct NmppsTmpSpec* spec);
2200int nmppsCmpNe_16s8um(const nm16s* pSrcVec1, const nm16s* pSrcVec2, nm8u* pDstVec, int nSize, struct NmppsTmpSpec* spec);
2201int nmppsCmpNe_32s8um(const nm32s* pSrcVec1, const nm32s* pSrcVec2, nm8u* pDstVec, int nSize, struct NmppsTmpSpec* spec);
2202int nmppsCmpNe_64s8um(const nm64s* pSrcVec1, const nm64s* pSrcVec2, nm8u* pDstVec, int nSize, struct NmppsTmpSpec* spec);
2203
2204
2241void nmppsCmpLt_8s7b (const nm8s* pSrcVec1,const nm8s* pSrcVec2, nm8s* pDstVec, int nSize);
2242void nmppsCmpLt_16s15b(const nm16s* pSrcVec1,const nm16s* pSrcVec2, nm16s* pDstVec, int nSize);
2243void nmppsCmpLt_32s31b(const nm32s* pSrcVec1,const nm32s* pSrcVec2, nm32s* pDstVec, int nSize);
2244void nmppsCmpLt_64s63b(const nm64s* pSrcVec1,const nm64s* pSrcVec2, nm64s* pDstVec, int nSize);
2246int nmppsCmpLt_8s8um (const nm8s* pSrcVec1, const nm8s* pSrcVec2, nm8u* pDstVec, int nSize, struct NmppsTmpSpec* spec);
2247int nmppsCmpLt_16s8um(const nm16s* pSrcVec1, const nm16s* pSrcVec2, nm8u* pDstVec, int nSize, struct NmppsTmpSpec* spec);
2248int nmppsCmpLt_32s8um(const nm32s* pSrcVec1, const nm32s* pSrcVec2, nm8u* pDstVec, int nSize, struct NmppsTmpSpec* spec);
2249int nmppsCmpLt_64s8um(const nm64s* pSrcVec1, const nm64s* pSrcVec2, nm8u* pDstVec, int nSize, struct NmppsTmpSpec* spec);
2250
2251//******************************************************************************************
2252
2306void nmppsCmpNeV_16u(nm16u15b* pSrcVec1, nm16u15b* pSrcVec2, nm16s* pDstVec, int nSize, int16b nTrueFlag);
2307void nmppsCmpNeV_8u(nm8u7b* pSrcVec1, nm8u7b* pSrcVec2, nm8s* pDstVec, int nSize, int8b nTrueFlag);
2309
2310
2311void nmppsCmpNeV_8s8u(nm8s* src1, nm8s* src2, nm8u* dst, int nSize, int8b nTrueFlag);
2312
2313//******************************************************************************************
2314
2315
2369void Vec_ClipRShiftConvert_AddC( nm32s* pSrcVec, nm8u* pDstVec, int nSize);
2371
2372#ifdef __cplusplus
2373 };
2374#endif
2375
2376#endif
void nmppsCmpEq0_16u15b(nm16u15b *pSrcVec, nm1 *pDstVec, int nSize, int nTrueFlag)
void nmppsCmpEq0_32u31b(nm32u31b *pSrcVec, nm1 *pDstVec, int nSize, int nTrueFlag)
void nmppsCmpEq0_8u7b(nm8u7b *pSrcVec, nm1 *pDstVec, int nSize, int nTrueFlag)
void nmppsMax_8s7b(const nm8s7b *pSrcVec, int nSize, int8b *nMaxValue)
void nmppsMax_16s15b(const nm16s15b *pSrcVec, int nSize, int16b *nMaxValue)
void nmppsMax_32s31b(const nm32s31b *pSrcVec, int nSize, int *nMaxValue)
void nmppsMin_8s7b(const nm8s7b *pSrcVec, int nSize, int8b *nMinValue)
void nmppsMin_16s15b(const nm16s15b *pSrcVec, int nSize, int16b *nMinValue)
void nmppsMin_32s31b(const nm32s31b *pSrcVec, int nSize, int *nMinValue)
unsigned int uint3b
Definition: nmtype.h:748
unsigned int uint15b
Definition: nmtype.h:800
int int4b
Definition: nmtype.h:592
int int30b
Definition: nmtype.h:657
int int8b
Definition: nmtype.h:618
int int32b
Definition: nmtype.h:683
int int16b
Definition: nmtype.h:644
INT64 int64b
Definition: nmtype.h:709
unsigned int uint7b
Definition: nmtype.h:774
unsigned char nm8u
Definition: nmtype.h:448
int nm32s
Definition: nmtype.h:292
int nm32s31b
Definition: nmtype.h:334
nm8u nm8u7b
Definition: nmtype.h:463
long long nm64s
Definition: nmtype.h:375
nm4u nm4u3b
Definition: nmtype.h:430
nm64s nm64s63b
Definition: nmtype.h:390
int nm1
Definition: nmtype.h:100
nm8s nm8s7b
Definition: nmtype.h:197
int nm32s30b
Definition: nmtype.h:354
unsigned int nm32u31b
Definition: nmtype.h:523
short nm16s
Definition: nmtype.h:243
void nm4s
Definition: nmtype.h:129
unsigned long long nm64u
Definition: nmtype.h:536
nm16s nm16s15b
Definition: nmtype.h:265
char nm8s
Definition: nmtype.h:167
nm16u nm16u15b
Definition: nmtype.h:495
Definition: malloc32.h:73
Definition: nmtype.h:1311
Definition: nmtype.h:1049
Definition: nmtype.h:1094
Definition: nmtype.h:1014