HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 26 - 50 of 2622) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DefaultPlacement.cpp 49 FX_BOOL CBC_DefaultPlacement::getBit(int32_t col, int32_t row) {
50 return m_bits[row * m_numcols + col] == 1;
52 void CBC_DefaultPlacement::setBit(int32_t col, int32_t row, FX_BOOL bit) {
53 m_bits[row * m_numcols + col] = bit ? (uint8_t)1 : (uint8_t)0;
55 FX_BOOL CBC_DefaultPlacement::hasBit(int32_t col, int32_t row) {
56 return m_bits[row * m_numcols + col] != 2;
60 int32_t row = 4; 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 == 0) && (m_numcols % 8 == 4)) {
    [all...]
  /frameworks/base/core/java/android/database/
CursorWindow.java 71 private static native int nativeGetType(long windowPtr, int row, int column);
72 private static native byte[] nativeGetBlob(long windowPtr, int row, int column);
73 private static native String nativeGetString(long windowPtr, int row, int column);
74 private static native long nativeGetLong(long windowPtr, int row, int column);
75 private static native double nativeGetDouble(long windowPtr, int row, int column);
76 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column,
79 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column);
80 private static native boolean nativePutString(long windowPtr, String value, int row, int column);
81 private static native boolean nativePutLong(long windowPtr, long value, int row, int column);
82 private static native boolean nativePutDouble(long windowPtr, double value, int row, int column)
    [all...]
  /cts/tools/dasm/src/java_cup/
parse_reduce_table.java 6 * It has one row for each state in the parse machines, and a column for
63 for (int row = 0; row < num_states(); row++)
65 result += "From state #" + row + "\n";
67 for (int col = 0; col < under_state[row].size(); col++)
70 goto_st = under_state[row].under_non_term[col];
  /external/autotest/frontend/client/src/autotest/afe/
RecurringTable.java 31 protected void preprocessRow(JSONObject row) {
32 JSONObject job = row.get("job").isObject();
34 JSONObject owner = row.get("owner").isObject();
35 row.put("job_id", new JSONString(Integer.toString(jobId)));
36 row.put("owner", owner.get("login"));
38 AfeUtils.removeSecondsFromDateField(row, "start_date", START_DATE_TEXT);
  /external/autotest/frontend/migrations/
022_implement_sync_count.py 22 job_hqe_count = dict((row[0], row[2]) for row in rows)
23 synch_jobs = set(row[0] for row in rows if row[1] == 2)
  /external/wpa_supplicant_8/hs20/server/www/
signup.php 18 $row = $db->query("SELECT realm FROM sessions WHERE id='$id'")->fetch(); variable
19 if ($row == false) {
22 $realm = $row['realm'];
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch(); variable
27 if ($row && strlen($row['value']) > 0) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MatrixUtils.java 44 * Find a pivot and swap the row of squareMatrix0 and squareMatrix1
46 private static void findPivotAndSwapRow(final int row, final float[][] squareMatrix0,
48 int ip = row;
49 float pivot = Math.abs(squareMatrix0[row][row]);
50 for (int i = row + 1; i < size; ++i) {
51 if (pivot < Math.abs(squareMatrix0[i][row])) {
53 pivot = Math.abs(squareMatrix0[i][row]);
56 if (ip != row) {
59 squareMatrix0[ip][j] = squareMatrix0[row][j]
153 final int row = a.length; local
    [all...]
  /external/libhevc/common/arm/
ihevc_intra_pred_chroma_mode_3_to_9.s 170 sub r1, r1, #26 @ref_main_idx + 2nt - (8 + 1)(two_nt - idx - row ) for 8 & 8 - 1row
191 vmov.i8 d9, #22 @row 0 to 7
193 vsub.s8 d8, d8, d27 @ref_main_idx (sub row)
194 vsub.s8 d8, d26, d8 @ref_main_idx (row 0)
196 vsub.s8 d9, d8, d29 @ref_main_idx + 1 (row 0)
197 vtbl.8 d12, {d0,d1,d2,d3}, d8 @load from ref_main_idx (row 0)
200 vtbl.8 d13, {d0,d1,d2,d3}, d9 @load from ref_main_idx + 1 (row 0)
201 vsub.s8 d4, d8, d29 @ref_main_idx (row 1)
202 vsub.s8 d5, d9, d29 @ref_main_idx + 1 (row 1
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
DataTable.java 24 * A table to display data from JSONObjects. Each row displays data from one
25 * JSONObject. A header row with column titles is automatically generated, and
31 * <li>.data-row-header - the column title row
32 * <li>.data-row-one/.data-row-two - data row styles. These two are alternated.
36 public static final String HEADER_STYLE = "data-row-header";
37 public static final String CLICKABLE_STYLE = "data-row-clickable";
38 public static final String HIGHLIGHTED_STYLE = "data-row-highlighted"
165 int row = table.getRowCount(); local
269 int row = tableCell.getRowIndex(); local
294 JSONObject row = getRow(rowIndex); local
    [all...]
  /external/libhevc/decoder/
ihevcd_itrans_recon_dc.c 93 WORD32 row, col; local
109 for(row = 0; row < trans_size; row++)
111 pu1_dst[row * dst_strd + col] = CLIP_U8((pu1_pred[row * pred_strd + col] + dc_value));
123 WORD32 row, col; local
140 for(row = 0; row < trans_size; row++
    [all...]
  /external/ceres-solver/internal/ceres/
visibility_test.cc 63 // Row 1
66 CompressedRow& row = bs.rows.back(); local
67 row.block.size = 2;
68 row.block.position = 0;
69 row.cells.push_back(Cell(0, 0));
70 row.cells.push_back(Cell(5, 0));
73 // Row 2
76 CompressedRow& row = bs.rows.back(); local
77 row.block.size = 2;
78 row.block.position = 2
86 CompressedRow& row = bs.rows.back(); local
96 CompressedRow& row = bs.rows.back(); local
146 CompressedRow& row = bs.rows.back(); local
155 CompressedRow& row = bs.rows.back(); local
164 CompressedRow& row = bs.rows.back(); local
173 CompressedRow& row = bs.rows.back(); local
    [all...]
detect_structure.cc 48 // Iterate over row blocks of the matrix, checking if row_block,
51 const CompressedRow& row = bs.rows[r]; local
54 if (row.cells.front().block_id >= num_eliminate_blocks) {
57 const int e_block_id = row.cells.front().block_id;
60 *row_block_size = row.block.size;
62 *row_block_size != row.block.size) {
63 VLOG(2) << "Dynamic row block size because the block size changed from "
65 << row.block.size;
81 if (row.cells.size() > 1) {
82 const int f_block_id = row.cells[1].block_id
    [all...]
  /external/eigen/doc/snippets/
Tutorial_commainit_01b.cpp 2 m.row(0) << 1, 2, 3;
  /external/libhevc/common/
ihevc_inter_pred_filters.c 116 WORD32 row, col; local
118 for(row = 0; row < ht; row++)
178 WORD32 row, col, i; local
181 for(row = 0; row < ht; row++)
251 WORD32 row, col, i; local
254 for(row = 0; row < ht; row++
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...]
  /external/libhevc/common/x86/
ihevc_padding_ssse3_intr.c 96 WORD32 row; local
105 for(row = 0; row < ht; row++)
167 WORD32 row; local
176 for(row = 0; row < ht; row++)
239 WORD32 row; local
246 for(row = 0; row < ht; row++
309 WORD32 row; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
mv.h 22 short row; member in struct:__anon16512
  /external/skia/bench/
TableBench.cpp 44 for (int row = 0; row < kNumRows; ++row) {
47 row * kCellHeight,
49 (row+1) * kCellHeight);
53 row * kCellHeight + (kCellHeight-SK_Scalar1),
55 (row+1) * kCellHeight);
59 row * kCellHeight,
61 (row+1) * kCellHeight);
  /hardware/intel/common/libva/test/
loadsurface.h 29 int row=0, col=0; local
31 for (row=0; row<dst_imgh; row++) {
33 *(dst_img + row * dst_imgw + col) = *(src_img + (row * src_imgh/dst_imgh) * src_imgw + col * src_imgw/dst_imgw);
59 int row, col; local
95 for (row=0; row<height; row++)
153 int row, alpha; local
301 int Y_pitch=0, U_pitch=0, V_pitch=0, row; local
399 int Y_pitch=0, U_pitch=0, V_pitch=0, row; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
mv.h 22 short row; member in struct:__anon30148
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_mv.h 23 int16_t row; member in struct:mv
33 int32_t row; member in struct:mv32
40 mv->row = clamp(mv->row, min_row, max_row);
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 127 for (Index row = 0; row < rows; row++) {
128 const double pivot = m_lu.coeffDiag(row);
131 const Index& col = row;
138 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++) {
139 typename MatrixType::InnerUpperIterator uItPivot(m_lu, row);
143 uItPivot += (rrow - row - 1);
157 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++) {
158 typename MatrixType::InnerUpperIterator uItPivot(m_lu, row);
    [all...]
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 102 // We already have the data in a row, so we can just return that row
103 AtlasRow* row = fKeyTable[index]; local
104 if (0 == row->fLocks) {
105 this->removeFromLRU(row);
107 ++row->fLocks;
111 // required for storing row numbers and just compute it with some pointer arithmetic
112 rowNumber = static_cast<int>(row - fRows);
117 // We don't have this data cached, so pick the least recently used row to copy into
118 AtlasRow* row = this->getLRU() local
188 AtlasRow* row = fLRUFront; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BigMatrixImpl.java 49 * returns the element in the first row, first column of the matrix.</li></ul></p>
97 * Create a new BigMatrix with the supplied row and column dimensions.
101 * @throws IllegalArgumentException if row or column dimension is not
198 for (int row = 1; row < nRows; row++) {
199 if (d[row].length != nCols) {
202 nCols, d[row].length);
228 for (int row = 1; row < nRows; row++)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]

Completed in 4271 milliseconds

12 3 4 5 6 7 8 91011>>