1#ifndef NMPP_CPP_DEFINED
2#define NMPP_CPP_DEFINED
13inline void nmppsSet(
nm8s *pSrcVec,
int val,
int nSize) {
14 nmppsSet_8s((
nm8s*)pSrcVec, val, nSize);
17inline void nmppsSet(
nm16s *pSrcVec,
int val,
int nSize) {
18 nmppsSet_16s((
nm16s*)pSrcVec, val, nSize);
22inline void nmppsSet(
nm32s *pSrcVec,
int val,
int nSize) {
23 nmppsSet_32s(pSrcVec, val, nSize);
26inline void nmppsSet(
nm64s *pSrcVec,
int val,
int nSize){
27 nmppsSet_64s(pSrcVec, val, nSize);
36inline void nmppsPut(
nm8s* pVec,
int nIndex,
int8b nVal) {nmppsPut_8s((
nm8s*) pVec, nIndex, nVal);}
39inline void nmppsPut(
nm16s15b* pVec,
int nIndex,
int16b nVal) {nmppsPut_16s((
nm16s*) pVec, nIndex, nVal);}
41inline void nmppsPut(
nm32s* pVec,
int nIndex,
int32b nVal) {pVec[nIndex]=nVal;}
42inline void nmppsPut(
nm64s* pVec,
int nIndex,
int64b nVal) {pVec[nIndex]=nVal;}
int int8b
Definition: nmtype.h:618
int int32b
Definition: nmtype.h:683
int int16b
Definition: nmtype.h:644
INT64 int64b
Definition: nmtype.h:709
int nm32s
Definition: nmtype.h:292
long long nm64s
Definition: nmtype.h:375
short nm16s
Definition: nmtype.h:243
nm16s nm16s15b
Definition: nmtype.h:265
char nm8s
Definition: nmtype.h:167