HomeSort by relevance Sort by last modified time
    Searched full:pcol (Results 1 - 14 of 14) sorted by null

  /external/eigen/Eigen/src/SparseCore/
SparseColEtree.h 80 Index pcol = col; local
81 if(perm) pcol = perm[col];
82 for (typename MatrixType::InnerIterator it(mat, pcol); it; ++it)
102 Index pcol = col; local
103 if(perm) pcol = perm[col];
104 for (typename MatrixType::InnerIterator it(mat, pcol); it||!found_diag; ++it)
  /external/chromium_org/third_party/sqlite/src/src/
alter.c 630 Column *pCol; /* The new column */
643 pCol = &pNew->aCol[pNew->nCol-1];
644 pDflt = pCol->pDflt;
667 if( pCol->isPrimKey ){
680 if( pCol->notNull && !pDflt ){
805 Column *pCol = &pNew->aCol[i];
806 pCol->zName = sqlite3DbStrDup(db, pCol->zName);
807 pCol->zColl = 0;
808 pCol->zType = 0
    [all...]
build.c 485 Column *pCol;
487 if( (pCol = pTable->aCol)!=0 ){
488 for(i=0; i<pTable->nCol; i++, pCol++){
489 sqlite3DbFree(db, pCol->zName);
490 sqlite3ExprDelete(db, pCol->pDflt);
491 sqlite3DbFree(db, pCol->zDflt);
492 sqlite3DbFree(db, pCol->zType);
493 sqlite3DbFree(db, pCol->zColl);
950 Column *pCol;
977 pCol = &p->aCol[p->nCol]
    [all...]
pragma.c 870 Column *pCol;
880 for(i=0, pCol=pTab->aCol; i<pTab->nCol; i++, pCol++){
881 if( IsHiddenColumn(pCol) ){
886 sqlite3VdbeAddOp4(v, OP_String8, 0, 2, 0, pCol->zName, 0);
888 pCol->zType ? pCol->zType : "", 0);
889 sqlite3VdbeAddOp2(v, OP_Integer, (pCol->notNull ? 1 : 0), 4);
890 if( pCol->zDflt ){
891 sqlite3VdbeAddOp4(v, OP_String8, 0, 5, 0, (char*)pCol->zDflt, 0)
    [all...]
update.c 65 Column *pCol = &pTab->aCol[i];
66 VdbeComment((v, "%s.%s", pTab->zName, pCol->zName));
68 sqlite3ValueFromExpr(sqlite3VdbeDb(v), pCol->pDflt, enc,
69 pCol->affinity, &pValue);
expr.c     [all...]
resolve.c 164 Column *pCol;
190 for(j=0, pCol=pTab->aCol; j<pTab->nCol; j++, pCol++){
191 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
247 Column *pCol = &pTab->aCol[iCol];
248 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
    [all...]
fkey.c 501 Column *pCol;
503 pCol = &pTab->aCol[iCol];
506 pLeft->affinity = pCol->affinity;
507 pLeft->pColl = sqlite3LocateCollSeq(pParse, pCol->zColl);
    [all...]
main.c     [all...]
select.c     [all...]
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
jp2.c 806 OPJ_UINT16 pcol = cmap[i].pcol; local
808 if (pcol >= nr_channels) {
809 opj_event_msg(p_manager, EVT_ERROR, "Invalid component/palette index for direct mapping %d.\n", pcol);
812 else if (pcol_usage[pcol] && cmap[i].mtyp == 1) {
813 opj_event_msg(p_manager, EVT_ERROR, "Component %d is mapped twice.\n", pcol);
816 else if (cmap[i].mtyp == 0 && cmap[i].pcol != 0) {
817 /* I.5.3.5 PCOL: If the value of the MTYP field for this channel is 0, then
819 opj_event_msg(p_manager, EVT_ERROR, "Direct use at #%d however pcol=%d.\n", i, pcol);
850 OPJ_UINT16 i, nr_channels, cmp, pcol; local
    [all...]
jp2.h 115 OPJ_BYTE mtyp, pcol; member in struct:opj_jp2_cmap_comp
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
commctrl.h     [all...]
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 404 // Copy the current (curIdx,pcol) value of the input matrix

Completed in 1020 milliseconds