Home
last modified time | relevance | path

Searched refs:idxType (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/mlir/lib/Conversion/VectorToLLVM/
DConvertVectorToLLVM.cpp41 auto idxType = rewriter.getIndexType(); in insertOne() local
43 loc, typeConverter.convertType(idxType), in insertOne()
44 rewriter.getIntegerAttr(idxType, pos)); in insertOne()
68 auto idxType = rewriter.getIndexType(); in extractOne() local
70 loc, typeConverter.convertType(idxType), in extractOne()
71 rewriter.getIntegerAttr(idxType, pos)); in extractOne()
120 Type idxType; in buildVectorComparison() local
125 idxType = rewriter.getI32Type(); in buildVectorComparison()
130 idxType = rewriter.getI64Type(); in buildVectorComparison()
134 Value o = rewriter.create<IndexCastOp>(loc, idxType, *off); in buildVectorComparison()
[all …]
/external/llvm-project/flang/lib/Lower/
DCharacterExpr.cpp316 auto idxType = builder.getIndexType(); in createSubstring() local
317 if (offset.getType() != idxType) in createSubstring()
318 offset = builder.createConvert(loc, idxType, offset); in createSubstring()
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcusparse_11_0.inc6058 void *indices, void *values, cusparseIndexType_t idxType,
6065 return func_ptr(spVecDescr, size, nnz, indices, values, idxType, idxBase,
6080 cusparseIndexType_t *idxType,
6088 return func_ptr(spVecDescr, size, nnz, indices, values, idxType, idxBase,
6308 cusparseIndexType_t *idxType, cusparseIndexBase_t *idxBase,
6316 idxType, idxBase, valueType);
6324 cusparseIndexType_t *idxType,
6332 return func_ptr(spMatDescr, rows, cols, nnz, cooInd, cooValues, idxType,
Dcusparse_10_2.inc7787 void *indices, void *values, cusparseIndexType_t idxType,
7794 return func_ptr(spVecDescr, size, nnz, indices, values, idxType, idxBase,
7808 void **indices, void **values, cusparseIndexType_t *idxType,
7815 return func_ptr(spVecDescr, size, nnz, indices, values, idxType, idxBase,
7949 cusparseIndexType_t *idxType, cusparseIndexBase_t *idxBase,
7958 idxType, idxBase, valueType);
7966 cusparseIndexType_t *idxType, cusparseIndexBase_t *idxBase,
7973 return func_ptr(spMatDescr, rows, cols, nnz, cooInd, cooValues, idxType,
Dcusparse_10_1.inc7787 void *indices, void *values, cusparseIndexType_t idxType,
7794 return func_ptr(spVecDescr, size, nnz, indices, values, idxType, idxBase,
7808 void **indices, void **values, cusparseIndexType_t *idxType,
7815 return func_ptr(spVecDescr, size, nnz, indices, values, idxType, idxBase,
7949 cusparseIndexType_t *idxType, cusparseIndexBase_t *idxBase,
7958 idxType, idxBase, valueType);
7966 cusparseIndexType_t *idxType, cusparseIndexBase_t *idxBase,
7973 return func_ptr(spMatDescr, rows, cols, nnz, cooInd, cooValues, idxType,
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.c17797 unsigned idxType:2; /* 0:Normal 1:UNIQUE, 2:PRIMARY KEY, 3:IPK */ member
17827 #define IsPrimaryKeyIndex(X) ((X)->idxType==SQLITE_IDXTYPE_PRIMARYKEY)
111078 || (IsVirtual(pTable) && pIndex->idxType!=SQLITE_IDXTYPE_APPDEF) );
112356 assert( pPk->idxType==SQLITE_IDXTYPE_PRIMARYKEY );
113886 u8 idxType /* The index type */
113908 if( IN_DECLARE_VTAB && idxType!=SQLITE_IDXTYPE_PRIMARYKEY ){
114114 pIndex->idxType = idxType;
114272 assert( pIdx->idxType!=SQLITE_IDXTYPE_APPDEF );
114302 if( idxType==SQLITE_IDXTYPE_PRIMARYKEY ) pIdx->idxType = idxType;
114536 if( pIndex->idxType!=SQLITE_IDXTYPE_APPDEF ){
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c17766 unsigned idxType:2; /* 0:Normal 1:UNIQUE, 2:PRIMARY KEY, 3:IPK */ member
17796 #define IsPrimaryKeyIndex(X) ((X)->idxType==SQLITE_IDXTYPE_PRIMARYKEY)
110787 || (IsVirtual(pTable) && pIndex->idxType!=SQLITE_IDXTYPE_APPDEF) );
112064 assert( pPk->idxType==SQLITE_IDXTYPE_PRIMARYKEY );
113596 u8 idxType /* The index type */
113618 if( IN_DECLARE_VTAB && idxType!=SQLITE_IDXTYPE_PRIMARYKEY ){
113827 pIndex->idxType = idxType;
113985 assert( pIdx->idxType!=SQLITE_IDXTYPE_APPDEF );
114015 if( idxType==SQLITE_IDXTYPE_PRIMARYKEY ) pIdx->idxType = idxType;
114237 if( pIndex->idxType!=SQLITE_IDXTYPE_APPDEF ){
[all …]
/external/sqlite/dist/
Dsqlite3.c17766 unsigned idxType:2; /* 0:Normal 1:UNIQUE, 2:PRIMARY KEY, 3:IPK */ member
17796 #define IsPrimaryKeyIndex(X) ((X)->idxType==SQLITE_IDXTYPE_PRIMARYKEY)
110803 || (IsVirtual(pTable) && pIndex->idxType!=SQLITE_IDXTYPE_APPDEF) );
112080 assert( pPk->idxType==SQLITE_IDXTYPE_PRIMARYKEY );
113612 u8 idxType /* The index type */
113634 if( IN_DECLARE_VTAB && idxType!=SQLITE_IDXTYPE_PRIMARYKEY ){
113843 pIndex->idxType = idxType;
114001 assert( pIdx->idxType!=SQLITE_IDXTYPE_APPDEF );
114031 if( idxType==SQLITE_IDXTYPE_PRIMARYKEY ) pIdx->idxType = idxType;
114253 if( pIndex->idxType!=SQLITE_IDXTYPE_APPDEF ){
[all …]
/external/python/pycparser/utils/benchmark/inputs/
Dsqlite-btree.c.ppout2348 unsigned idxType:2;