/external/ltp/testcases/kernel/numa/ |
numa01.sh | 237 col=0 245 col=$[$COUNTER+1] #Node number in numastat o/p 247 extract_numastat local_node $local_node $col || return 1 251 extract_numastat local_node $local_node $col || return 1 283 col=0 301 col=2 #column represents node0 in numastat o/p 305 col=$[$COUNTER+2] #Preferred Node number in numastat o/p 309 extract_numastat other_node $other_node $col || return 1 314 extract_numastat other_node $other_node $col || return 1 346 col= [all...] |
/external/libavc/common/ |
ih264_chroma_intra_pred_filters.c | 128 WORD32 col, row; /*loop variables*/ local 214 for(col = 0; col < 8; col += 2) 216 *(pu1_dst + row * dst_strd + col) = val_u1; 217 *(pu1_dst + row * dst_strd + col + 1) = val_v1; 220 for(col = 8; col < 16; col += 2) 222 *(pu1_dst + row * dst_strd + col) = val_u2 [all...] |
/external/eigen/Eigen/src/OrderingMethods/ |
Eigen_Colamd.h | 119 #define COL_IS_DEAD(c) (Col [c].start < ALIVE) 120 #define COL_IS_ALIVE(c) (Col [c].start >= ALIVE) 121 #define COL_IS_DEAD_PRINCIPAL(c) (Col [c].start == DEAD_PRINCIPAL) 123 #define KILL_PRINCIPAL_COL(c) { Col [c].start = DEAD_PRINCIPAL ; } 124 #define KILL_NON_PRINCIPAL_COL(c) { Col [c].start = DEAD_NON_PRINCIPAL ; } 140 /* col, if the column is alive */ 146 IndexType score ; /* the score used to maintain heap, if col is alive */ 147 IndexType order ; /* pivot ordering of this column, if col is dead */ 151 IndexType headhash ; /* head of a hash bucket, if col is at the head of */ 153 IndexType hash ; /* hash value, if col is not in a degree list * 497 IndexType col ; \/* a column index *\/ local 968 IndexType col ; \/* a column index *\/ local 1570 IndexType col ; \/* a column index in the row to check *\/ local [all...] |
/external/libvpx/libvpx/vp8/decoder/ |
error_concealment.c | 27 int col; member in struct:ec_position 125 int row, col; local 140 for (col = 0; col < end_col; ++col) { 144 (((first_blk_col + col) * 4) << 3)); 145 assign_overlap(b_ol_ul[row * 4 + col].overlaps, bmi, overlap); 153 int row, col, rel_row, rel_col; local 161 col = (4 * b_col) << 3; /* Q3 */ 165 new_col = col - bmi->mv.as_mv.col 243 int row, col; local 411 int row, col, i; local [all...] |
/external/libhevc/common/ |
ihevc_intra_pred_filters.c | 780 WORD32 row, col; local 807 for(col = 0; col < nt; col++) 809 pu1_dst[row * dst_strd + col] = ((nt - 1 - col) 811 + (col + 1) * pu1_ref[three_nt + 1] 812 + (nt - 1 - row) * pu1_ref[two_nt + 1 + col] 868 WORD32 row, col; local 910 for(col = 0; col < nt; col++ 981 WORD32 row, col; local 1060 WORD32 row, col; local 1138 WORD32 row, col; local 1202 WORD32 row, col; local 1279 WORD32 row, col; local 1360 WORD32 row, col, k; local 1465 WORD32 row, col, k; local 1562 WORD32 row, col; local [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
mcomp.c | 38 mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * 48 mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * 62 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) * 76 x->ss[search_site_count].mv.col = 0; 83 x->ss[search_site_count].mv.col = 0; 89 x->ss[search_site_count].mv.col = 0; 95 x->ss[search_site_count].mv.col = -Len [all...] |
/external/dng_sdk/source/ |
dng_reference.cpp | 99 for (uint32 col = 0; col < cols; col++) 140 for (uint32 col = 0; col < cols; col++) 181 for (uint32 col = 0; col < cols; col++) 226 for (uint32 col = 0; col < cols; col++ 1894 uint32 col; local [all...] |
/external/eigen/bench/ |
eig33.cpp | 116 // evecs.col(k) = (base + Vector(-beta*scaledMat(2,0), -alpha*scaledMat(2,1), alpha*beta)).normalized(); 118 // evecs.col(2) = evecs.col(0).cross(evecs.col(1)).normalized(); 124 // evecs.col(0) = tmp.row(0).cross(tmp.row(1)).normalized(); 128 // evecs.col(1) = tmp.row(0).cross(tmp.row(1)).normalized(); 132 // evecs.col(2) = tmp.row(0).cross(tmp.row(1)).normalized(); 144 evecs.col (2) = tmp.row (0).cross (tmp.row (1)).normalized (); 148 evecs.col(1) = tmp.row (0).cross(tmp.row (1)); 149 Scalar n1 = evecs.col(1).norm() [all...] |
/external/libvpx/libvpx/vp8/common/ |
findnearmv.h | 28 mvp->as_mv.col *= -1; 35 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN)) { 36 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN; 37 } else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) { 38 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; 51 mv->as_mv.col = 52 (mv->as_mv.col < mb_to_left_edge) ? mb_to_left_edge : mv->as_mv.col; 53 mv->as_mv.col = 54 (mv->as_mv.col > mb_to_right_edge) ? mb_to_right_edge : mv->as_mv.col [all...] |
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCResultSet.java | 229 int col = findColumn(columnName); 230 return getString(col); 256 int col = findColumn(columnName); 257 return getInt(col); 266 int col = findColumn(columnName); 267 return getBoolean(col); 300 int col = findColumn(columnName); 301 return getShort(col); 337 int col = findColumn(columnName); 338 return getTime(col); [all...] |
/external/libjpeg-turbo/simd/ |
jsimd_altivec.h | 40 #define TRANSPOSE(row, col) \ 68 col##0 = vec_mergeh(col01e, col01o); /* col0=(00 10 20 30 40 50 60 70) */ \ 69 col##1 = vec_mergel(col01e, col01o); /* col1=(01 11 21 31 41 51 61 71) */ \ 70 col##2 = vec_mergeh(col23e, col23o); /* col2=(02 12 22 32 42 52 62 72) */ \ 71 col##3 = vec_mergel(col23e, col23o); /* col3=(03 13 23 33 43 53 63 73) */ \ 72 col##4 = vec_mergeh(col45e, col45o); /* col4=(04 14 24 34 44 54 64 74) */ \ 73 col##5 = vec_mergel(col45e, col45o); /* col5=(05 15 25 35 45 55 65 75) */ \ 74 col##6 = vec_mergeh(col67e, col67o); /* col6=(06 16 26 36 46 56 66 76) */ \ 75 col##7 = vec_mergel(col67e, col67o); /* col7=(07 17 27 37 47 57 67 77) */ \
|
/external/pdfium/xfa/fxbarcode/pdf417/ |
BC_PDF417Writer.cpp | 52 int32_t col = (m_Width / m_ModuleWidth - 69) / 17; local 54 if (row >= 3 && row <= 90 && col >= 1 && col <= 30) { 55 encoder.setDimensions(col, col, row, row); 56 } else if (col >= 1 && col <= 30) { 57 encoder.setDimensions(col, col, 90, 3);
|
/external/deqp/framework/common/ |
tcuPixelFormat.hpp | 91 inline RGBA convertColor (const RGBA& col) const 93 return RGBA(convertChannel(col.getRed(), redBits), 94 convertChannel(col.getGreen(), greenBits), 95 convertChannel(col.getBlue(), blueBits), 96 alphaBits ? convertChannel(col.getAlpha(), alphaBits) : 0xff);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_tile_common.c | 29 void vp9_tile_set_col(TileInfo *tile, const VP9_COMMON *cm, int col) { 30 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols); 31 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols); 34 void vp9_tile_init(TileInfo *tile, const VP9_COMMON *cm, int row, int col) { 36 vp9_tile_set_col(tile, cm, col);
|
/external/pdfium/core/fxge/agg/ |
fx_agg_driver.cpp | 83 for (int col = 0; col < width; col++) 86 for (int col = 0; col < width; col++) { 98 for (int col = 0; col < width; col++) { 118 for (int col = 0; col < width; col++) [all...] |
/external/libhevc/decoder/ |
ihevcd_deblk.c | 119 WORD32 col, row; local 235 for(col = 0; col < ctb_size / 8; col++) 240 * shift = (col & ((MAX_CTB_SIZE >> log2_ctb_size) - 1)) << (log2_ctb_size - 1); 245 shift = (col & 1) << (log2_ctb_size - 1); 282 if(0 == col) 292 pu1_qp[col - 1 - qp_strd]; 297 pu1_qp[col - qp_strd]; 301 if(0 == col) [all...] |
/frameworks/native/libs/math/include/math/ |
mat2.h | 284 for (size_t col = 0; col < NUM_COLS; ++col) { 285 m_value[col] = col_type(rhs[col]); 301 for (size_t col = 0; col < NUM_COLS; ++col) { 303 m_value[col][row] = *rawArray++; 325 for (size_t col = 0; col < TMat22<T>::NUM_COLS; ++col) [all...] |
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/ |
PaginatedCursor.java | 131 for (int col = 0; col < mColumnCount; col++) { 132 switch (mCursor.getType(col)) { 134 mByteArrayDataCache[row][mByteArrayCacheIndexMap[col]] = 135 mCursor.getBlob(col); 138 mFloatDataCache[row][mFloatCacheIndexMap[col]] = mCursor.getFloat(col); 141 mIntDataCache[row][mIntCacheIndexMap[col]] = mCursor.getInt(col); [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
CollectionStore.java | 41 List<T> col = new ArrayList<T>(); local 50 col.add(obj); 54 return col;
|
/external/compiler-rt/lib/sanitizer_common/scripts/ |
litlint.py | 50 msg, col = LintLine(s) 54 arrow = (col-1) * ' ' + '^' 55 sys.stderr.write(errorMsg.format(p, i, col, msg, s, arrow))
|
/external/eigen/test/ |
is_same_dense.cpp | 26 VERIFY(!is_same_dense(m1.row(0),m1.col(0))); 31 Ref<const ColMatrixXd> const_ref_m1_col(m1.col(1)); 32 VERIFY(is_same_dense(m1.col(1),const_ref_m1_col));
|
eigen2support.cpp | 41 VERIFY_IS_EQUAL((m1.col(0).start(1)), (m1.col(0).segment(0,1))); 42 VERIFY_IS_EQUAL((m1.col(0).template start<1>()), (m1.col(0).segment(0,1))); 43 VERIFY_IS_EQUAL((m1.col(0).end(1)), (m1.col(0).segment(rows-1,1))); 44 VERIFY_IS_EQUAL((m1.col(0).template end<1>()), (m1.col(0).segment(rows-1,1)));
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
SkylineProduct.h | 138 for (Index col = 0; col < rhs.cols(); col++) { 140 dst(row, col) = lhs.coeffDiag(row) * rhs(row, col); 146 const Index stop = lIt.col() + lIt.size(); 147 for (Index col = 0; col < rhs.cols(); col++) { 149 Index k = lIt.col(); [all...] |
/external/autotest/frontend/client/src/autotest/afe/ |
CheckBoxPanelDisplay.java | 21 int col = index % numColumns; local 22 table.setWidget(row, col, checkbox);
|
/external/eigen/Eigen/src/Core/ |
ForceAlignedAccess.h | 49 EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index row, Index col) const 51 return m_expression.coeff(row, col); 54 EIGEN_DEVICE_FUNC inline Scalar& coeffRef(Index row, Index col) 56 return m_expression.const_cast_derived().coeffRef(row, col); 70 inline const PacketScalar packet(Index row, Index col) const 72 return m_expression.template packet<Aligned>(row, col); 76 inline void writePacket(Index row, Index col, const PacketScalar& x) 78 m_expression.const_cast_derived().template writePacket<Aligned>(row, col, x);
|