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

1 2 34 5 6 7 8 91011>>

  /external/libavc/common/arm/
ih264_default_weighted_pred_a9q.s 124 vld1.32 d0[0], [r0], r3 @load row 1 in source 1
125 vld1.32 d0[1], [r0], r3 @load row 2 in source 1
126 vld1.32 d2[0], [r1], r4 @load row 1 in source 2
127 vld1.32 d2[1], [r1], r4 @load row 2 in source 2
129 vld1.32 d1[0], [r0], r3 @load row 3 in source 1
130 vld1.32 d1[1], [r0], r3 @load row 4 in source 1
132 vld1.32 d3[0], [r1], r4 @load row 3 in source 2
133 vld1.32 d3[1], [r1], r4 @load row 4 in source 2
136 vst1.32 d0[0], [r2], r5 @load row 1 in destination
137 vst1.32 d0[1], [r2], r5 @load row 2 in destinatio
    [all...]
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OneDimReader.h 27 CBC_CommonBitArray* row,
31 CBC_CommonBitArray* row,
37 CFX_Int32Array* FindStartGuardPattern(CBC_CommonBitArray* row, int32_t& e);
39 CFX_Int32Array* FindGuardPattern(CBC_CommonBitArray* row,
44 int32_t DecodeDigit(CBC_CommonBitArray* row,
50 virtual int32_t DecodeMiddle(CBC_CommonBitArray* row,
56 virtual CFX_Int32Array* DecodeEnd(CBC_CommonBitArray* row,
  /prebuilts/misc/windows/sdl2/test/
testdrawchessboard.c 25 int row = 0,coloum = 0,x = 0; local
31 for(row; row < 8; row++)
33 coloum = row%2;
35 for(coloum; coloum < 4+(row%2); coloum++)
42 rect.y = row * rect.h;
  /external/libhevc/common/arm/
ihevc_intra_pred_filters_chroma_mode_11_to_17.s 307 vadd.s8 d8, d8, d27 @ref_main_idx (add row)
308 vsub.s8 d8, d8, d26 @ref_main_idx (row 0)
309 vadd.s8 d9, d8, d29 @ref_main_idx + 1 (row 0)
310 vtbl.8 d12, {d0,d1,d2,d3}, d8 @load from ref_main_idx (row 0)
313 vtbl.8 d13, {d0,d1,d2,d3}, d9 @load from ref_main_idx + 1 (row 0)
314 vadd.s8 d4, d8, d29 @ref_main_idx (row 1)
315 vadd.s8 d5, d9, d29 @ref_main_idx + 1 (row 1)
317 @ mov r0, #4 @ 2 *(row * 2 )
320 vtbl.8 d16, {d0,d1,d2,d3}, d4 @load from ref_main_idx (row 1)
321 vmull.u8 q12, d12, d7 @mul (row 0
    [all...]
  /external/icu/icu4c/source/common/
propsvec.c 33 int32_t prevRow; /* search optimization: remember last row seen */
44 uint32_t *v, *row; local
70 /* set the all-Unicode row and the special-value rows */
71 row=pv->v;
72 uprv_memset(row, 0, pv->rows*columns*4);
73 row[0]=0;
74 row[1]=0x110000;
75 row+=columns;
77 row[0]=cp;
78 row[1]=cp+1
94 uint32_t *row; local
279 uint32_t *row; local
293 uint32_t *row; local
335 uint32_t *row; local
    [all...]
  /external/dng_sdk/source/
dng_pixel_buffer.h 85 /// plus the steps (in bytes) between each column, row and plane.
125 void * InternalPixel (int32 row,
131 if (row < fArea.t || row >= fArea.b ||
140 static_cast<int64> (row) - static_cast<int64> (fArea.t));
168 /// computing the row, column or plane step, or if an invalid value was
212 /// \retval row step in pixels. May be negative.
228 /// \param row Start row for buffer pointer.
233 const void * ConstPixel (int32 row,
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.c 42 unsigned row; /* current source row */ local
49 for (row = 0; row < height; row += tile_height)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
73 unsigned row; /* current source row */ local
104 unsigned row; \/* current source row *\/ local
135 unsigned row; \/* current source row *\/ local
166 unsigned row; \/* current source row *\/ local
256 unsigned row; \/* current destination row *\/ local
289 unsigned row; \/* current destination row *\/ local
322 unsigned row; \/* current destination row *\/ local
355 unsigned row; \/* current destination row *\/ local
388 unsigned row; \/* current destination row *\/ local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Featherstone/
btMultiBodyConstraint.h 63 // cached impulses. (one per row.)
65 // positions. (one per row.)
128 btScalar getPosition(int row) const
130 return m_data[m_posOffset + row];
133 void setPosition(int row, btScalar pos)
135 m_data[m_posOffset + row] = pos;
147 btScalar* jacobianA(int row)
149 return &m_data[m_numRows + row * m_jacSizeBoth];
151 const btScalar* jacobianA(int row) const
153 return &m_data[m_numRows + (row * m_jacSizeBoth)]
    [all...]
  /external/markdown/markdown/extensions/
tables.py 55 for row in rows:
56 self._build_row(row, tbody, align, border)
58 def _build_row(self, row, parent, align, border):
59 """ Given a row of text, build table cells. """
64 cells = self._split_row(row, border)
65 # We use align here rather than cells to ensure every row
76 def _split_row(self, row, border):
77 """ split a row of text into list of cells. """
79 if row.startswith('|'):
80 row = row[1:
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationBackend.java 41 final AppRow row = new AppRow(); local
42 row.pkg = app.packageName;
43 row.uid = app.uid;
45 row.label = app.loadLabel(pm);
47 Log.e(TAG, "Error loading application label for " + row.pkg, t);
48 row.label = row.pkg;
50 row.icon = app.loadIcon(pm);
51 row.banned = getNotificationsBanned(row.pkg, row.uid)
61 final AppRow row = loadAppRow(context, pm, app.applicationInfo); local
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
AppearAnimationUtils.java 90 for (int row = 0; row < properties.delays.length; row++) {
91 long[] columns = properties.delays[row];
94 if (properties.maxDelayRowIndex == row && properties.maxDelayColIndex == 0) {
98 ? mRowTranslationScaler.getRowTranslationScale(row, properties.delays.length)
101 creator.createAnimation(objects[row], delay, mDuration,
113 for (int row = 0; row < properties.delays.length; row++)
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
DateFormatSymbolsTest.java 89 // Kill a row.
110 for (String[] row : DateFormatSymbols.getInstance(Locale.US).getZoneStrings()) {
111 zoneStrings.put(row[0], row);
124 private static void assertUtc(String[] row) {
127 assertEquals(Arrays.toString(row), "UTC", row[2]); local
128 assertEquals(Arrays.toString(row), "UTC", row[4]); local
138 for (String[] row : array)
153 String[] row = array[i]; local
    [all...]
  /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...]
  /build/tools/
fileslist.py 33 row = (
37 output.append(row)
41 for row in output:
42 print "%12d %s" % row
  /external/eigen/failtest/
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 104 register int row; local
109 for (row = num_rows; row > 0; row--) {
120 /* 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);
  /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/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...]

Completed in 1481 milliseconds

1 2 34 5 6 7 8 91011>>