Searched refs:col (Results 1 - 25 of 851) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DTutorial_AdvancedInitialization_LinSpaced.cpp2 table.col(0) = ArrayXf::LinSpaced(10, 0, 90);
3 table.col(1) = M_PI / 180 * table.col(0);
4 table.col(2) = table.col(1).sin();
5 table.col(3) = table.col(1).cos();
H A DMatrixBase_col.cpp2 m.col(1) = Vector3d(4,5,6);
H A DMatrixBase_setRandom.cpp2 m.col(1).setRandom();
H A DComplexEigenSolver_eigenvectors.cpp4 << endl << ces.eigenvectors().col(1) << endl;
H A DEigenSolver_eigenvectors.cpp4 << endl << es.eigenvectors().col(0) << endl;
H A DSelfAdjointEigenSolver_eigenvectors.cpp4 << endl << es.eigenvectors().col(1) << endl;
H A DTutorial_commainit_01b.cpp4 m.col(2).tail(2) << 6, 9;
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java28 Collection<Integer> col; // must contain the Integers 0 to 99 field in class:Support_CollectionTest
36 col = c;
41 new Support_UnmodifiableCollectionTest("", col).runTest();
50 assertTrue("CollectionTest - a) add did not work", col.add(new Integer(
52 assertTrue("CollectionTest - b) add did not work", col
56 assertTrue("CollectionTest - a) remove did not work", col
58 assertTrue("CollectionTest - b) remove did not work", !col
62 assertTrue("CollectionTest - a) addAll failed", col
64 assertTrue("CollectionTest - b) addAll failed", col
68 assertTrue("CollectionTest - a) containsAll failed", col
[all...]
H A DSupport_UnmodifiableCollectionTest.java29 Collection<Integer> col; field in class:Support_UnmodifiableCollectionTest
40 col = c;
47 assertTrue("UnmodifiableCollectionTest - should contain 0", col
49 assertTrue("UnmodifiableCollectionTest - should contain 50", col
51 assertTrue("UnmodifiableCollectionTest - should not contain 100", !col
61 col.containsAll(hs));
65 !col.containsAll(hs));
68 assertTrue("UnmodifiableCollectionTest - should not be empty", !col
72 Iterator<Integer> it = col.iterator();
89 + col
[all...]
/external/libavc/common/x86/
H A Dih264_mem_fns_ssse3.c83 int col; local
84 for(col = num_bytes; col >= 8; col -= 8)
122 int col; local
125 for(col = num_bytes; col >= 8; col -= 8)
160 int col; local
163 for(col
[all...]
H A Dih264_padding_ssse3.c165 WORD32 col; local
175 for(col = 0; col < pad_size; col += 8)
177 _mm_storel_epi64((__m128i *)(pu1_dst + col), src_temp0_16x8b);
231 WORD32 col; local
242 for(col = 0; col < pad_size; col += 8)
244 _mm_storel_epi64((__m128i *)(pu1_dst + col), src_temp0_16x8
298 WORD32 col; local
[all...]
/external/libhevc/common/x86/
H A Dihevc_mem_fns_ssse3_intr.c82 int col; local
83 for(col = num_bytes; col >= 8; col -= 8)
121 int col; local
124 for(col = num_bytes; col >= 8; col -= 8)
159 int col; local
162 for(col
[all...]
/external/libavc/encoder/
H A Dih264e_half_pel.c187 WORD32 row, col; local
194 for (col = -2; col < wd + 3; col++)
196 tmp = ih264_g_six_tap[0] * (pu1_src[col - 2 * src_strd] + pu1_src[col + 3 * src_strd]) +
197 ih264_g_six_tap[1] * (pu1_src[col - 1 * src_strd] + pu1_src[col + 2 * src_strd]) +
198 ih264_g_six_tap[2] * (pu1_src[col] + pu1_src[col
[all...]
/external/libhevc/common/
H A Dihevc_inter_pred_filters.c116 WORD32 row, col; local
120 for(col = 0; col < wd; col++)
122 pu1_dst[col] = pu1_src[col];
178 WORD32 row, col, i; local
183 for(col = 0; col < wd; col
251 WORD32 row, col, i; local
324 WORD32 row, col; local
390 WORD32 row, col, i; local
461 WORD32 row, col, i; local
531 WORD32 row, col, i; local
606 WORD32 row, col, i; local
678 WORD32 row, col; local
743 WORD32 row, col, i; local
825 WORD32 row, col, i; local
900 WORD32 row, col; local
966 WORD32 row, col, i; local
1042 WORD32 row, col, i; local
1113 WORD32 row, col, i; local
1190 WORD32 row, col, i; local
[all...]
H A Dihevc_sao.c85 WORD32 row, col; local
93 for(col = 0; col < wd; col++)
95 pu1_src_top[col] = pu1_src[(ht - 1) * src_strd + col];
110 for(col = 0; col < wd; col++)
114 band_idx = band_table[pu1_src[col] >> band_shif
140 WORD32 row, col; local
198 WORD32 row, col; local
281 WORD32 row, col; local
377 WORD32 row, col; local
471 WORD32 row, col; local
569 WORD32 row, col; local
758 WORD32 row, col; local
993 WORD32 row, col; local
1170 WORD32 row, col; local
[all...]
H A Dihevc_weighted_pred.c117 WORD32 row, col; local
122 for(col = 0; col < wd; col++)
124 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0;
128 pu1_dst[col] = CLIP_U8(i4_tmp);
202 WORD32 row, col; local
207 for(col = 0; col < 2 * wd; col
308 WORD32 row, col; local
413 WORD32 row, col; local
500 WORD32 row, col; local
583 WORD32 row, col; local
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DLUDecompositionImpl.java101 for (int col = 0; col < m; col++) {
106 for (int row = 0; row < col; row++) {
108 sum = luRow[col];
110 sum -= luRow[i] * lu[i][col];
112 luRow[col] = sum;
116 int max = col; // permutation row
118 for (int row = col; row < m; row++) {
120 sum = luRow[col];
[all...]
H A DFieldLUDecompositionImpl.java95 for (int col = 0; col < m; col++) {
100 for (int row = 0; row < col; row++) {
102 sum = luRow[col];
104 sum = sum.subtract(luRow[i].multiply(lu[i][col]));
106 luRow[col] = sum;
110 int nonZero = col; // permutation row
111 for (int row = col; row < m; row++) {
113 sum = luRow[col];
[all...]
/external/libavc/common/
H A Dih264_inter_pred_filters.c119 WORD32 row, col; local
124 for(col = 0; col < wd; col++)
126 pu1_dst[col] = pu1_src[col];
177 WORD32 row, col; local
182 for(col = 0; col < wd; col
236 WORD32 row, col; local
306 WORD32 row, col; local
375 WORD32 row, col; local
460 WORD32 row, col; local
536 WORD32 row, col; local
619 WORD32 row, col; local
720 WORD32 row, col; local
836 WORD32 row, col; local
956 WORD32 row, col; local
1024 WORD32 row, col; local
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DStmt.java173 * @param col column number, 0-based
177 public native int column_int(int col) throws SQLite.Exception; argument
181 * @param col column number, 0-based
184 public native long column_long(int col) throws SQLite.Exception; argument
188 * @param col column number, 0-based
191 public native double column_double(int col) throws SQLite.Exception; argument
195 * @param col column number, 0-based
198 public native byte[] column_bytes(int col) throws SQLite.Exception; argument
202 * @param col column number, 0-based
205 public native String column_string(int col) throw argument
212 column_type(int col) argument
227 column(int col) argument
247 column_table_name(int col) argument
255 column_database_name(int col) argument
263 column_decltype(int col) argument
271 column_origin_name(int col) argument
[all...]
/external/v8/tools/turbolizer/
H A Dconstants.js25 { perc: 0, col: { r: 255, g: 255, b: 255 } },
26 { perc: 0.5, col: { r: 255, g: 255, b: 128 } },
27 { perc: 5, col: { r: 255, g: 128, b: 0 } },
28 { perc: 15, col: { r: 255, g: 0, b: 0 } },
29 { perc: 100, col: { r: 0, g: 0, b: 0 } }
/external/libjpeg-turbo/
H A Djdcolext.c39 register JDIMENSION col; local
55 for (col = 0; col < num_cols; col++) {
56 y = GETJSAMPLE(inptr0[col]);
57 cb = GETJSAMPLE(inptr1[col]);
58 cr = GETJSAMPLE(inptr2[col]);
89 register JDIMENSION col; local
95 for (col = 0; col < num_col
121 register JDIMENSION col; local
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Ddeblock.c48 int col; local
60 for (col = 0; col < cols; col++) {
61 unsigned char p_above2 = p_src[col - 2 * src_pixels_per_line];
62 unsigned char p_above1 = p_src[col - src_pixels_per_line];
63 unsigned char p_below1 = p_src[col + src_pixels_per_line];
64 unsigned char p_below2 = p_src[col + 2 * src_pixels_per_line];
66 v = p_src[col];
68 if ((abs(v - p_above2) < f[col])
[all...]
/external/pdfium/xfa/fxbarcode/datamatrix/
H A DBC_DefaultPlacement.cpp49 bool CBC_DefaultPlacement::getBit(int32_t col, int32_t row) { argument
50 return m_bits[row * m_numcols + col] == 1;
52 void CBC_DefaultPlacement::setBit(int32_t col, int32_t row, bool bit) { argument
53 m_bits[row * m_numcols + col] = bit ? (uint8_t)1 : (uint8_t)0;
55 bool CBC_DefaultPlacement::hasBit(int32_t col, int32_t row) { argument
56 return m_bits[row * m_numcols + col] != 2;
61 int32_t col = 0; local
63 if ((row == m_numrows) && (col == 0)) {
66 if ((row == m_numrows - 2) && (col == 0) && ((m_numcols % 4) != 0)) {
69 if ((row == m_numrows - 2) && (col
99 module(int32_t row, int32_t col, int32_t pos, int32_t bit) argument
115 utah(int32_t row, int32_t col, int32_t pos) argument
[all...]
/external/libhevc/decoder/
H A Dihevcd_itrans_recon_dc.c93 WORD32 row, col; local
110 for(col = 0; col < trans_size; col++)
111 pu1_dst[row * dst_strd + col] = CLIP_U8((pu1_pred[row * pred_strd + col] + dc_value));
123 WORD32 row, col; local
141 for(col = 0; col < trans_size; col
[all...]

Completed in 432 milliseconds

1234567891011>>