HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 151 - 175 of 2708) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libavc/encoder/
ih264e_half_pel.c 187 WORD32 row, col; local
192 for (row = 0; row < ht; row++)
207 for (row = 0; row < ht; row++)
  /external/libpng/contrib/libtests/
readpng.c 13 * reading each file by row. The test does nothing with the read result and
39 png_bytep row = NULL, display = NULL; local
47 if (row != NULL) free(row);
66 row = malloc(rowbytes);
69 if (row == NULL || display == NULL)
70 png_error(png_ptr, "OOM allocating row buffers");
93 /* NOTE: this trashes the row each time; interlace handling won't
97 png_read_row(png_ptr, row, display);
105 free(row);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
VisualStabilityManager.java 112 public boolean canReorderNotification(ExpandableNotificationRow row) {
116 if (mAddedChildren.contains(row)) {
119 if (mLowPriorityReorderingViews.contains(row)) {
122 if (mAllowedReorderViews.contains(row)
123 && !mVisibilityLocationProvider.isInVisibleLocation(row)) {
145 mAllowedReorderViews.add(entry.row);
150 mLowPriorityReorderingViews.add(entry.row);
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
TableView.java 69 KeyValueRow row = (KeyValueRow) mInflater.inflate(R.layout.table_key_value_row, null); local
70 parent.addView(row);
71 return row;
88 KeyValueRow row = createKeyValueRow(this); local
89 row.setKey(key);
90 row.setValue(value);
91 mRows.put(key, row);
  /tools/loganalysis/src/com/android/loganalysis/item/
QtaguidItem.java 39 private Map<Integer, Row> mRows = new HashMap<Integer, Row>();
41 private static class Row {
97 * Add a row from the qtaguid output to the {@link QtaguidItem}.
104 Row row = new Row(); local
105 row.rxBytes = rxBytes;
106 row.txBytes = txBytes;
107 mRows.put(uid, row);
125 Row row = mRows.get(uid); local
    [all...]
  /external/libhevc/decoder/
ihevcd_deblk.c 119 WORD32 col, row; local
184 for(row = 0; row < (ctb_size >> 3) + 1; row++)
185 au2_ctb_no_loop_filter_flag[row] = ps_deblk->au2_ctb_no_loop_filter_flag[row] >> (ctb_size >> 3);
247 /* BS for the column - Last row is excluded and the top row is included*/
258 for(row = 0; row < ctb_size / 4;
    [all...]
  /packages/apps/Launcher2/
print_db.py 46 for row in c:
47 rows.append(row)
124 data = [dict(zip(columns,row)) for row in rows]
154 for row in rows:
157 for i in range(0,len(row)):
158 cell = row[i]
159 # row[0] is always _id
161 print_functions[i](out, row[0], row, cell
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
error_concealment.c 26 int row; member in struct:ec_position
125 int row, col; local
139 for (row = 0; row < end_row; ++row) {
143 block_overlap(new_row, new_col, (((first_blk_row + row) * 4) << 3),
145 assign_overlap(b_ol_ul[row * 4 + col].overlaps, bmi, overlap);
153 int row, col, rel_row, rel_col; local
160 row = (4 * b_row) << 3; /* Q3 */
164 new_row = row - bmi->mv.as_mv.row
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
805 for(row = 0; row < nt; row++)
809 pu1_dst[row * dst_strd + col] = ((nt - 1 - col)
810 * pu1_ref[two_nt - 1 - row]
812 + (nt - 1 - row) * pu1_ref[two_nt + 1 + col]
813 + (row + 1) * pu1_ref[nt - 1] + nt) >> (log2nt + 1);
868 WORD32 row, col; local
909 for(row = 0; row < nt; row++
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/libjpeg-turbo/
tjunittest.c 94 int index, row, col, halfway=16; local
99 for(row=0; row<h; row++)
103 if(flags&TJFLAG_BOTTOMUP) index=(h-row-1)*w+col;
104 else index=row*w+col;
105 if(((row/8)+(col/8))%2==0) buf[index]=(row<halfway)? 255:0;
106 else buf[index]=(row<halfway)? 76:226;
113 for(row=0; row<h; row++
188 int index, row, col, retval=1; local
300 int row, col; local
    [all...]
  /external/mesa3d/src/mesa/main/
format_utils.c 192 int row; local
202 for (row = 0; row < height; row++) {
223 for (row = 0; row < height; row++) {
284 size_t row; local
318 for (row = 0; row < height; ++row)
    [all...]
  /external/libvpx/libvpx/vp8/common/
findnearmv.h 27 mvp->as_mv.row *= -1;
41 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN)) {
42 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN;
43 } else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN) {
44 mv->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN;
55 mv->as_mv.row =
56 (mv->as_mv.row < mb_to_top_edge) ? mb_to_top_edge : mv->as_mv.row;
57 mv->as_mv.row =
58 (mv->as_mv.row > mb_to_bottom_edge) ? mb_to_bottom_edge : mv->as_mv.row
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_bitmap.c 54 GLint row, col; local
77 for (row = 0; row < height; row++) {
79 bitmap, width, height, GL_COLOR_INDEX, GL_BITMAP, row, 0);
87 span.array->y[count] = py + row;
99 /* get ready for next row */
109 span.array->y[count] = py + row;
121 /* get ready for next row */
126 if (count + width >= SWRAST_MAX_WIDTH || row + 1 == height)
    [all...]
  /external/libvncserver/test/
tjunittest.c 79 int index, row, col, halfway=16; local
84 for(row=0; row<h; row++)
88 if(flags&TJFLAG_BOTTOMUP) index=(h-row-1)*w+col;
89 else index=row*w+col;
90 if(((row/8)+(col/8))%2==0) buf[index]=(row<halfway)? 255:0;
91 else buf[index]=(row<halfway)? 76:226;
97 for(row=0; row<h; row++
151 int index, row, col, retval=1; local
    [all...]
  /external/pdfium/xfa/fxbarcode/pdf417/
BC_PDF417Writer.cpp 53 int32_t row = m_Height / (m_ModuleWidth * 20); local
54 if (row >= 3 && row <= 90 && col >= 1 && col <= 30) {
55 encoder.setDimensions(col, col, row, row);
58 } else if (row >= 3 && row <= 90) {
59 encoder.setDimensions(30, 1, row, row);
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 37 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] +
47 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] +
61 return ((mvsadcost[0][(mv->as_mv.row - ref->as_mv.row)] +
77 x->ss[search_site_count].mv.row = 0;
84 x->ss[search_site_count].mv.row = -Len;
90 x->ss[search_site_count].mv.row = Len;
96 x->ss[search_site_count].mv.row = 0
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
MarkResetConsole.java 27 private int row; field in class:MarkResetConsole
41 row++;
57 private final int markRow = row;
74 for (int r = row; r > markRow; r--) {
84 row = markRow;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BigMatrix.java 27 * returns the element in the first row, first column of the matrix.</p>
118 * maximum absolute row sum norm</a> of the matrix.
128 * @param startRow Initial row index
129 * @param endRow Final row index
143 * @param selectedRows Array of row indices.
147 * @exception MatrixIndexException if row or column selections are not valid
153 * Returns the entries in row number <code>row</code>
154 * as a row matrix. Row indices start at 0
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_tile_common.c 24 void vp9_tile_set_row(TileInfo *tile, const VP9_COMMON *cm, int row) {
25 tile->mi_row_start = get_tile_offset(row, cm->mi_rows, cm->log2_tile_rows);
26 tile->mi_row_end = get_tile_offset(row + 1, cm->mi_rows, cm->log2_tile_rows);
34 void vp9_tile_init(TileInfo *tile, const VP9_COMMON *cm, int row, int col) {
35 vp9_tile_set_row(tile, cm, row);
  /external/skia/src/gpu/text/
GrDistanceFieldAdjustTable.cpp 70 for (int row = 0; row < height; ++row) {
71 uint8_t* rowPtr = data.get() + row*width;
86 table[row] = d;
  /external/vogar/src/vogar/util/
MarkResetConsole.java 27 private int row; field in class:MarkResetConsole
41 row++;
57 private final int markRow = row;
74 for (int r = row; r > markRow; r--) {
84 row = markRow;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
DisappearAnimationUtils.java 47 protected long calculateDelay(int row, int col) {
48 return (long) ((row * 60 + col * (Math.pow(row, 0.4) + 0.4) * 10) * mDelayScale);
54 public float getRowTranslationScale(int row, int numRows) {
55 return (float) (Math.pow((numRows - row), 2) / numRows);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
TouchPositionCorrection.java 84 public float getX(final int row) {
87 // return mXs[row];
90 public float getY(final int row) {
91 return mYs[row];
94 public float getRadius(final int row) {
95 return mRadii[row];
  /external/gemmlowp/internal/
output_sse.h 108 static void Run(const RegBlockInt32<4, 1>& src, DstType* dst, int row,
111 StoreInt32x4(dst->data(row, col), src.buf.reg[0]);
113 *dst->data(row + 0, col) = GetLane<0>(src.buf.reg[0]);
114 *dst->data(row + 1, col) = GetLane<1>(src.buf.reg[0]);
115 *dst->data(row + 2, col) = GetLane<2>(src.buf.reg[0]);
116 *dst->data(row + 3, col) = GetLane<3>(src.buf.reg[0]);
123 static void Run(const RegBlockInt32<8, 1>& src, DstType* dst, int row,
126 StoreInt32x4(dst->data(row, col), src.buf.reg[0]);
127 StoreInt32x4(dst->data(row + 4, col), src.buf.reg[1]);
129 *dst->data(row + 0, col) = GetLane<0>(src.buf.reg[0])
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineProduct.h 139 for (Index row = 0; row < lhs.rows(); row++) {
140 dst(row, col) = lhs.coeffDiag(row) * rhs(row, col);
144 for (Index row = 0; row < lhs.rows(); row++) {
145 typename _Lhs::InnerLowerIterator lIt(lhs, row);
    [all...]

Completed in 723 milliseconds

1 2 3 4 5 67 8 91011>>