Home
last modified time | relevance | path

Searched refs:nElem (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGenTypes/
H A DMachineValueType.h441 #define GET_VT_VECATTR(Ty, Sc, nElem, ElTy) \ in getVectorVT() argument
442 if (!Sc && VT.SimpleTy == ElTy && NumElements == nElem) \ in getVectorVT()
451 #define GET_VT_VECATTR(Ty, Sc, nElem, ElTy) \ in getScalableVectorVT() argument
452 if (Sc && VT.SimpleTy == ElTy && NumElements == nElem) \ in getScalableVectorVT()
/freebsd/contrib/opencsd/decoder/source/etmv3/
H A Dtrc_pkt_decode_etmv3.cpp671 int nElem = m_outputElemList.getNumElem(); in pendExceptionReturn() local
672 if(nElem > 1) in pendExceptionReturn()
674 if(m_outputElemList.getElemType(nElem - 2) == OCSD_GEN_TRC_ELEM_INSTR_RANGE) in pendExceptionReturn()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.td19 int nElem = 1;
47 let nElem = nelem;
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsics.td260 !and(vti.isVector, !eq(vti.nElem, nelem)));
365 !eq(iit_vt.nElem, vt.nElem)))))),
/freebsd/contrib/sqlite3/
H A Dsqlite3.c84669 int nElem, /* Maximum number of values to append */
84684 for(i=0; i<nElem; i++){
110097 SQLITE_PRIVATE Select *sqlite3ExprListToValues(Parse *pParse, int nElem, ExprList *pEList){
110100 assert( nElem>1 );
110111 if( nExprElem!=nElem ){
110113 nExprElem, nExprElem>1?"s":"", nElem
198185 int nElem = 0; /* Size of array at aElem */
198197 if( nElem==nAlloc ){
198205 nElem = 0;
198211 aElem[nElem++] = pE;
[all …]
H A Dshell.c16856 int nElem = (nPg+1+31) / 32; in recoverBitmapAlloc() local
16857 int nByte = sizeof(RecoverBitmap) + nElem*sizeof(u32); in recoverBitmapAlloc()