Searched refs:col (Results 1 - 25 of 37) sorted by relevance

12

/frameworks/rs/
H A DrsMatrix2x2.h28 inline float get(uint32_t col, uint32_t row) const { argument
29 return m[col*2 + row];
32 inline void set(uint32_t col, uint32_t row, float v) { argument
33 m[col*2 + row] = v;
H A DrsMatrix3x3.h28 inline float get(uint32_t col, uint32_t row) const { argument
29 return m[col*3 + row];
32 inline void set(uint32_t col, uint32_t row, float v) { argument
33 m[col*3 + row] = v;
H A DrsMatrix4x4.h28 float get(uint32_t col, uint32_t row) const { argument
29 return m[col*4 + row];
32 void set(uint32_t col, uint32_t row, float v) { argument
33 m[col*4 + row] = v;
H A DrsRuntime.h170 void rsrMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v);
171 float rsrMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col);
172 void rsrMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
173 float rsrMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
174 void rsrMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v);
175 float rsrMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DAppearAnimationUtils.java98 for (int col = 0; col < columns.length; col++) {
99 long delay = columns[col];
101 if (properties.maxDelayRowIndex == row && properties.maxDelayColIndex == col) {
104 creator.createAnimation(objects[row][col], delay, mDuration,
136 for (int col = 0; col < columns.length; col++) {
137 long delay = calculateDelay(row, col);
149 calculateDelay(int row, int col) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_neighbour.c133 u32 i, row, col; local
142 row = col = 0;
147 if (col)
157 if (row && (col < picWidth - 1))
162 if (row && col)
167 col++;
168 if (col == picWidth)
170 col = 0;
H A Dh264bsd_util.c268 u32 row, col; local
274 col = mbNum % width;
279 image->luma = (u8*)(image->data + col * 16 + tmp * 256);
280 image->cb = (u8*)(image->data + picSize * 256 + tmp * 64 + col * 8);
H A Dh264bsd_conceal.c55 static u32 ConcealMb(mbStorage_t *pMb, image_t *currImage, u32 row, u32 col,
129 u32 row, col; local
158 i = row = col = 0;
163 col++;
164 if (col == width)
167 col = 0;
192 for (j = col; j--;)
198 for (j = col + 1; j < width; j++)
249 macroblock in the picture indicated by row and col
253 u32 ConcealMb(mbStorage_t *pMb, image_t *currImage, u32 row, u32 col, argument
590 u32 col; local
[all...]
H A Dh264bsd_transform.c101 u32 row,col; local
170 for (col = 4; col--; data++)
258 u32 row,col; local
306 for (col = 4; col--; data++)
322 for (col = 4; col--; data++)
H A Dh264bsd_inter_prediction.c222 /*set col to bits 31:16 */
368 u32 row, col; local
379 col = mbNum - row * currImage->width;
381 col *= 16;
393 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
401 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
404 h264bsdPredictSamples(data, pMb->mv+8, &refImage, col, row, 0, 8,
412 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
415 h264bsdPredictSamples(data, pMb->mv+4, &refImage, col, row, 8, 0,
433 col, ro
[all...]
H A Dh264bsd_image.c182 u32 row, col; local
200 col = mbNum % picWidth;
203 lum = (image->data + row * picWidth * 256 + col * 16);
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintOptionsLayout.java71 for (int col = 0; col < mColumnCount; col++) {
72 final int childIndex = row * mColumnCount + col;
136 for (int col = 0; col < mColumnCount; col++) {
137 final int childIndex = row * mColumnCount + col;
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DCSVFormatter.java30 for (String col : TrackerEntry.ATTRIBUTES) {
32 if (!TrackerEntry.ENTRY_TYPE.equals(col) &&
33 !TrackerEntry.ID_COL.equals(col)) {
34 csvBuilder.append(col);
/frameworks/av/cmds/stagefright/
H A Djpeg.cpp76 for (int col = 0; col < width; col++) {
/frameworks/base/core/java/android/util/
H A DDayOfMonthCursor.java63 public void setSelectedRowColumn(int row, int col) { argument
65 mColumn = col;
/frameworks/rs/driver/runtime/
H A Drs_matrix.c173 rsMatrixSet(rs_matrix4x4 *m, uint32_t col, uint32_t row, float v) { argument
174 m->m[col * 4 + row] = v;
178 rsMatrixGet(const rs_matrix4x4 *m, uint32_t col, uint32_t row) { argument
179 return m->m[col * 4 + row];
183 rsMatrixSet(rs_matrix3x3 *m, uint32_t col, uint32_t row, float v) { argument
184 m->m[col * 3 + row] = v;
188 rsMatrixGet(const rs_matrix3x3 *m, uint32_t col, uint32_t row) { argument
189 return m->m[col * 3 + row];
193 rsMatrixSet(rs_matrix2x2 *m, uint32_t col, uint32_t row, float v) { argument
194 m->m[col *
198 rsMatrixGet(const rs_matrix2x2 *m, uint32_t col, uint32_t row) argument
[all...]
/frameworks/rs/scriptc/
H A Drs_matrix.rsh57 * @param col The zero-based column of the element to be set.
67 rsMatrixSet(rs_matrix4x4 *m, uint32_t col, uint32_t row, float v);
72 rsMatrixSet(rs_matrix3x3 *m, uint32_t col, uint32_t row, float v);
77 rsMatrixSet(rs_matrix2x2 *m, uint32_t col, uint32_t row, float v);
83 * @param col The zero-based column of the element to be extracted.
92 rsMatrixGet(const rs_matrix4x4 *m, uint32_t col, uint32_t row);
97 rsMatrixGet(const rs_matrix3x3 *m, uint32_t col, uint32_t row);
102 rsMatrixGet(const rs_matrix2x2 *m, uint32_t col, uint32_t row);
/frameworks/base/core/java/android/hardware/camera2/params/
H A DColorSpaceTransform.java279 for (int col = 0; col < COLUMNS; col++, i += RATIONAL_SIZE) {
285 if (col < COLUMNS - 1) {
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java150 public final int getMarginAbove(int col) { argument
154 return mMargins[col * 2];
157 public final int getMarginBelow(int col) { argument
161 return mMargins[col * 2 + 1];
164 public final void setMarginAbove(int col, int margin) { argument
169 mMargins[col * 2] = margin;
172 public final void setMarginBelow(int col, int margin) { argument
177 mMargins[col * 2 + 1] = margin;
520 for (int col = lp.column; col < colEn
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcStress.cpp591 for (unsigned int col = 0; col < cols; col++) {
595 frames[row][col] = new GraphicBuffer(w, h, format, texUsage);
596 if ((rv = frames[row][col]->initCheck()) != NO_ERROR) {
603 hwcTestFillColor(frames[row][col].get(), color, alpha);
606 frames[row][col].get(), frames[row][col]->handle,
/frameworks/base/core/tests/coretests/src/android/widget/
H A DSimpleCursorAdapterTest.java73 ArrayList<Integer> col = Lists.newArrayList();
74 list.add(col);
78 col.add(r);
80 col.add(i);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCallbackProcessor.cpp499 for (size_t col = 0; col < chromaWidth; col++) {
532 for (size_t col = 0; col < chromaWidth; col++) {
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_comp.cpp1719 Int row, col, i; local
1732 col = B_SIZE;
1733 while (col)
1741 col -= 4;
1743 col = B_SIZE;
1744 while (col)
1752 col -= 4;
1767 Int row, col; local
1774 col = B_SIZE;
1775 while (col)
1797 Int row, col, i; local
1865 Int row, col; local
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DStaticResolver.cpp63 unsigned int col = getOrdinate(pOld); local
71 action = link_action[row][col];
200 col = getOrdinate(*old);
/frameworks/base/core/java/android/widget/
H A DSuggestionsAdapter.java693 int col = cursor.getColumnIndex(columnName);
694 return getStringOrNull(cursor, col);
697 private static String getStringOrNull(Cursor cursor, int col) { argument
698 if (col == INVALID_INDEX) {
702 return cursor.getString(col);

Completed in 644 milliseconds

12