/external/libhevc/common/ |
ihevc_sao.c | 85 WORD32 row, col; local 88 for(row = 0; row < ht; row++) 90 pu1_src_left[row] = pu1_src[row * src_strd + (wd - 1)]; 108 for(row = 0; row < ht; row++) 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...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
LUDecompositionImpl.java | 75 * @param singularityThreshold threshold (based on partial row norm) 94 for (int row = 0; row < m; row++) { 95 pivot[row] = row; 106 for (int row = 0; row < col; row++) { 107 final double[] luRow = lu[row]; [all...] |
Array2DRowRealMatrix.java | 49 * returns the element in the first row, first column of the matrix.</li></ul> 69 * Create a new RealMatrix with the supplied row and column dimensions. 73 * @throws IllegalArgumentException if row or column dimension is not 154 for (int row = 0; row < nRows; row++) { 155 data[row][0] = v[row]; 199 for (int row = 0; row < rowCount; row++) [all...] |
RealMatrixImpl.java | 49 * returns the element in the first row, first column of the matrix.</li></ul> 71 * Create a new RealMatrix with the supplied row and column dimensions. 75 * @throws IllegalArgumentException if row or column dimension is not 155 for (int row = 0; row < nRows; row++) { 156 data[row][0] = v[row]; 200 for (int row = 0; row < rowCount; row++) [all...] |
/external/libpng/contrib/intel/ |
filter_sse2_intrinsics.c | 27 * row: a d 65 void png_read_filter_row_sub3_sse2(png_row_infop row_info, png_bytep row, 77 a = d; d = load4(row); 79 store3(row, d); 81 row += 3; 85 a = d; d = load3(row); 87 store3(row, d); 89 row += 3; 94 void png_read_filter_row_sub4_sse2(png_row_infop row_info, png_bytep row, 106 a = d; d = load4(row); [all...] |
/external/pdfium/third_party/libpng16/contrib/intel/ |
filter_sse2_intrinsics.c | 27 * row: a d 65 void png_read_filter_row_sub3_sse2(png_row_infop row_info, png_bytep row, 77 a = d; d = load4(row); 79 store3(row, d); 81 row += 3; 85 a = d; d = load3(row); 87 store3(row, d); 89 row += 3; 94 void png_read_filter_row_sub4_sse2(png_row_infop row_info, png_bytep row, 106 a = d; d = load4(row); [all...] |
/external/skia/third_party/libpng/contrib/intel/ |
filter_sse2_intrinsics.c | 27 * row: a d 65 void png_read_filter_row_sub3_sse2(png_row_infop row_info, png_bytep row, 77 a = d; d = load4(row); 79 store3(row, d); 81 row += 3; 85 a = d; d = load3(row); 87 store3(row, d); 89 row += 3; 94 void png_read_filter_row_sub4_sse2(png_row_infop row_info, png_bytep row, 106 a = d; d = load4(row); [all...] |
/external/eigen/failtest/ |
ref_2.cpp | 11 call_ref(A.row(3));
|
sparse_ref_2.cpp | 11 call_ref(A.row(3));
|
/external/guava/guava-gwt/src/com/google/common/collect/ |
Table_CustomFieldSerializerBase.java | 36 for (Entry<?, ?> row : hashMap.entrySet()) { 37 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue()); 46 * the backing map is serializable (assuming that the row, column and values, along with any
|
/external/libjpeg-turbo/ |
jutils.c | 105 register int row; local 110 for (row = num_rows; row > 0; row--) { 121 /* Copy a row of coefficient blocks from one place to another. */
|
/external/libvpx/libvpx/vp9/common/ |
vp9_mv.h | 23 int16_t row; member in struct:mv 33 int32_t row; member in struct:mv32 48 mv->row = clamp(mv->row, min_row, max_row);
|
vp9_tile_common.h | 25 // initializes 'tile->mi_(row|col)_(start|end)' for (row, col) based on 27 void vp9_tile_init(TileInfo *tile, const struct VP9Common *cm, int row, 30 void vp9_tile_set_row(TileInfo *tile, const struct VP9Common *cm, int row);
|
/external/python/cpython2/Demo/tkinter/ttk/ |
listbox_scrollcmd.py | 4 grid [tk::listbox .l -yscrollcommand ".s set" -height 5] -column 0 -row 0 -sticky nwes 5 grid [ttk::scrollbar .s -command ".l yview" -orient vertical] -column 1 -row 0 -sticky ns 6 grid [ttk::label .stat -text "Status message here" -anchor w] -column 0 -row 1 -sticky we 7 grid [ttk::sizegrip .sz] -column 1 -row 1 -sticky se 19 l.grid(column=0, row=0, sticky='nwes') 23 s.grid(column=1, row=0, sticky="ns") 26 stat.grid(column=0, row=1, sticky='we') 29 sz.grid(column=1, row=1, sticky='se')
|
/external/webrtc/tools/python_charts/webrtc/ |
data_helper_test.py | 59 row = data_table[0] 60 self.assertEquals(0, row['frame_number']) 61 self.assertEquals(0.5, row['ssim_0']) 62 self.assertEquals(0.6, row['ssim_1']) 63 row = data_table[1] 64 self.assertEquals(1, row['frame_number']) 65 self.assertEquals(0.55, row['ssim_0']) 66 self.assertEquals(0.66, row['ssim_1']) 76 row = data_table[0] 77 self.assertEquals(0, row['frame_number'] [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
LinearLayoutGrid.java | 39 public Button getButtonAt(int column, int row) { 40 if (row < 0 || row > 2) { 41 throw new IllegalArgumentException("row out of range"); 46 return (Button) getColumn(column).getChildAt(row);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
NotificationMediaTemplateViewWrapper.java | 31 ExpandableNotificationRow row) { 32 super(ctx, view, row); 42 public void onContentUpdated(ExpandableNotificationRow row) { 46 super.onContentUpdated(row);
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
BaseOnItemViewClickedListener.java | 22 * Called when an item inside a row gets clicked. 25 * @param rowViewHolder The view holder of the row which the clicked item belongs to. 26 * @param row The row which the clicked item belongs to. 29 RowPresenter.ViewHolder rowViewHolder, T row);
|
BaseOnItemViewSelectedListener.java | 17 * Interface for receiving notification when a row or item becomes selected. The concept of 18 * current selection is different than focus. A row or item can be selected without having focus; 19 * for example, when a row header view gains focus then the corresponding row view becomes selected. 24 * Called when a row or a new item becomes selected. 27 * selection changes between rows, regardless if row view has focus or not. 29 * For a {@link ListRow} case, parameter item is null if the list row is empty. 32 * In the case of a grid, the row parameter is always null. 35 * Row has focus: event is fired when focus changes between children of the row [all...] |
/packages/apps/Settings/src/com/android/settings/notification/ |
NotificationBackend.java | 43 final AppRow row = new AppRow(); local 44 row.pkg = app.packageName; 45 row.uid = app.uid; 47 row.label = app.loadLabel(pm); 49 Log.e(TAG, "Error loading application label for " + row.pkg, t); 50 row.label = row.pkg; 52 row.icon = IconDrawableFactory.newInstance(context).getBadgedIcon(app); 53 row.banned = getNotificationsBanned(row.pkg, row.uid) 60 final AppRow row = loadAppRow(context, pm, app.applicationInfo); local [all...] |
/external/libavc/common/ |
ih264_inter_pred_filters.c | 119 WORD32 row, col; local 122 for(row = 0; row < ht; row++) 177 WORD32 row, col; local 180 for(row = 0; row < ht; row++) 236 WORD32 row, col; local 241 for(row = 0; row < ht; row++ 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/autotest/frontend/client/src/autotest/afe/ |
JobTable.java | 48 protected void preprocessRow(JSONObject row) { 49 JSONObject status_counts = row.get("status_counts").isObject(); 51 row.put(HOSTS_SUMMARY, new JSONString(statusCountString)); 53 JSONArray result_counts = row.get("result_counts").isObject().get("groups").isArray(); 60 row.put(RESULTS_SUMMARY, new JSONString(resultCountString)); 63 Double priorityValue = row.get("priority").isNumber().getValue(); 65 row.put("priority", new JSONString(priorityName)); 68 AfeUtils.removeSecondsFromDateField(row, "created_on", CREATED_TEXT);
|
/external/eigen/Eigen/src/Core/ |
NestByValue.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<LoadMode>(row, col); 76 inline void writePacket(Index row, Index col, const PacketScalar& x) 78 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
|
/external/eigen/doc/snippets/ |
MatrixBase_eval.cpp | 5 cout << "Now we want to copy a column into a row." << endl; 6 cout << "If we do m.col(1) = m.row(0), then m becomes:" << endl; 7 m.col(1) = m.row(0); 9 cout << "Now let us instead do m.col(1) = m.row(0).eval(). Then m becomes" << endl; 11 m.col(1) = m.row(0).eval();
|
/external/python/cpython2/Doc/includes/sqlite3/ |
simple_tableprinter.py | 18 # For each row, print the value of each field left-justified within 21 for row in cur: 23 fieldValue = str(row[fieldIndex]) 26 print # Finish the row with a newline.
|