Searched refs:col (Results 1 - 25 of 926) 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(1) << 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/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/chromium_org/sql/
H A Dstatement.h104 bool BindNull(int col);
105 bool BindBool(int col, bool val);
106 bool BindInt(int col, int val);
107 bool BindInt64(int col, int64 val);
108 bool BindDouble(int col, double val);
109 bool BindCString(int col, const char* val);
110 bool BindString(int col, const std::string& val);
111 bool BindString16(int col, const base::string16& value);
112 bool BindBlob(int col, const void* value, int value_len);
125 ColType ColumnType(int col) cons
[all...]
H A Dstatement.cc95 bool Statement::BindNull(int col) { argument
100 return CheckOk(sqlite3_bind_null(ref_->stmt(), col + 1));
103 bool Statement::BindBool(int col, bool val) { argument
104 return BindInt(col, val ? 1 : 0);
107 bool Statement::BindInt(int col, int val) { argument
112 return CheckOk(sqlite3_bind_int(ref_->stmt(), col + 1, val));
115 bool Statement::BindInt64(int col, int64 val) { argument
120 return CheckOk(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
123 bool Statement::BindDouble(int col, double val) { argument
128 return CheckOk(sqlite3_bind_double(ref_->stmt(), col
131 BindCString(int col, const char* val) argument
140 BindString(int col, const std::string& val) argument
152 BindString16(int col, const base::string16& value) argument
156 BindBlob(int col, const void* val, int val_len) argument
260 ColumnBlobAsString(int col, std::string* blob) argument
274 ColumnBlobAsString16(int col, base::string16* val) const argument
287 ColumnBlobAsVector(int col, std::vector<char>* val) const argument
302 ColumnBlobAsVector( int col, std::vector<unsigned char>* val) const argument
[all...]
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalyze_slices.css6 .analysis-slices-table-col-1,
7 .analysis-slices-table-col-2 {
/external/qemu-pc-bios/bochs/bios/
H A Dmakesym.perl24 foreach $col (0,1) {
25 next if length $addr[$col] < 1;
26 $addr[$col] =~ tr/A-Z/a-z/;
27 $addr[$col] = "000f" . $addr[$col];
28 print "$addr[$col] $name[$col]\n";
/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/chromium_org/third_party/sqlite/src/tool/
H A Dmkopts.tcl21 set col 0
23 global col
24 if {$col==0} {puts -nonewline " "}
25 if {$col<2} {
27 incr col
30 set col 0
34 global col
35 if {$col>0} {puts {}}
36 set col 0
/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/chromium_org/third_party/libjpeg_turbo/
H A Djdcolext.c38 register JDIMENSION col; local
54 for (col = 0; col < num_cols; col++) {
55 y = GETJSAMPLE(inptr0[col]);
56 cb = GETJSAMPLE(inptr1[col]);
57 cr = GETJSAMPLE(inptr2[col]);
88 register JDIMENSION col; local
94 for (col = 0; col < num_col
120 register JDIMENSION col; local
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseColEtree.h73 Index row,col; local
78 for (col = 0; col < nc; col++)
80 Index pcol = col;
81 if(perm) pcol = perm[col];
85 firstRowElt(row) = (std::min)(firstRowElt(row), col);
93 for (col = 0; col < nc; col
[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...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebElementCollection.cpp52 WebElementCollection::WebElementCollection(const PassRefPtrWillBeRawPtr<HTMLCollection>& col) argument
53 : m_private(col)
57 WebElementCollection& WebElementCollection::operator=(const PassRefPtrWillBeRawPtr<HTMLCollection>& col) argument
59 m_private = col;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dmv.h23 short col; member in struct:__anon13058
/external/chromium_org/third_party/skia/bench/
H A DTableBench.cpp45 for (int col = 0; col < kNumCols; ++col) {
46 SkRect cell = SkRect::MakeLTRB(col * kCellWidth,
48 (col+1) * kCellWidth,
52 SkRect bottom = SkRect::MakeLTRB(col * kCellWidth,
54 (col+1) * kCellWidth,
58 SkRect right = SkRect::MakeLTRB(col * kCellWidth + (kCellWidth-SK_Scalar1),
60 (col+1) * kCellWidth,

Completed in 514 milliseconds

1234567891011>>