Searched refs:lastCol (Results 1 – 5 of 5) sorted by relevance
/external/freetype/src/pcf/ |
D | pcfdrivr.c | 114 if ( charcode > (FT_UInt32)( enc->lastRow * 256 + enc->lastCol ) || in pcf_cmap_char_index() 122 charcodeCol > enc->lastCol ) in pcf_cmap_char_index() 126 ( enc->lastCol - enc->firstCol + 1 ) + in pcf_cmap_char_index() 143 while ( charcode < (FT_UInt32)( enc->lastRow * 256 + enc->lastCol ) ) in pcf_cmap_char_next() 155 else if ( charcodeCol > enc->lastCol ) in pcf_cmap_char_next() 164 ( enc->lastCol - enc->firstCol + 1 ) + in pcf_cmap_char_next()
|
D | pcfread.c | 953 FT_FRAME_USHORT_LE( lastCol ), 969 FT_FRAME_USHORT( lastCol ), 1028 enc->firstCol, enc->lastCol, in pcf_get_encodings() 1033 if ( enc->firstCol > enc->lastCol || in pcf_get_encodings() 1034 enc->lastCol > 0xFF || in pcf_get_encodings() 1039 nencoding = (FT_ULong)( enc->lastCol - enc->firstCol + 1 ) * in pcf_get_encodings() 1058 defaultCharCol > enc->lastCol ) in pcf_get_encodings() 1081 ( enc->lastCol - enc->firstCol + 1 ) + in pcf_get_encodings() 1118 for ( j = enc->firstCol; j <= enc->lastCol; j++ ) in pcf_get_encodings()
|
D | pcf.h | 111 FT_UShort lastCol; member
|
/external/eigen/Eigen/src/SVD/ |
D | BDCSVD.h | 175 void divide(Index firstCol, Index lastCol, Index firstRowW, Index firstColW, Index shift); 182 …void deflation(Index firstCol, Index lastCol, Index k, Index firstRowW, Index firstColW, Index shi… 391 void BDCSVD<MatrixType>::divide (Index firstCol, Index lastCol, Index firstRowW, Index firstColW, I… 397 const Index n = lastCol - firstCol + 1; 429 divide(k + 1 + firstCol, lastCol, k + 1 + firstRowW, k + 1 + firstColW, shift); 435 phi = m_naiveU(firstCol + k + 1, lastCol + 1); 440 phi = m_naiveU(0, lastCol + 1); 480 m_naiveU.col(lastCol + 1).segment(firstCol, k + 1) = (q1 * ( - s0)); 482 …m_naiveU.col(firstCol).segment(firstCol + k + 1, n - k) = m_naiveU.col(lastCol + 1).segment(firstC… 484 m_naiveU.col(lastCol + 1).segment(firstCol + k + 1, n - k) *= c0; [all …]
|
/external/dng_sdk/source/ |
D | dng_gain_map.cpp | 211 uint32 lastCol = static_cast<uint32> (fMap.Points ().h - 1); in ResetColumn() local 213 if (colIndexF >= static_cast<real64> (lastCol)) in ResetColumn() 216 fValueBase = InterpolateEntry (lastCol); in ResetColumn()
|