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

12

/frameworks/compile/libbcc/tools/build/
H A Ddataconvert.py53 col = 0
60 if col == 0:
63 col += 1
64 if col == 8:
66 col = 0
67 elif col % 4 == 0:
71 if col != 0:
/frameworks/compile/slang/
H A Dslangdata.py53 col = 0
60 if col == 0:
63 col += 1
64 if col == 16:
66 col = 0
67 elif col % 4 == 0:
73 if col != 0:
/frameworks/rs/
H A DrsMatrix2x2.h28 inline float get(uint32_t row, uint32_t col) const {
29 return m[row*2 + col];
32 inline void set(uint32_t row, uint32_t col, float v) { argument
33 m[row*2 + col] = v;
H A DrsMatrix3x3.h28 inline float get(uint32_t row, uint32_t col) const {
29 return m[row*3 + col];
32 inline void set(uint32_t row, uint32_t col, float v) { argument
33 m[row*3 + col] = v;
H A DrsMatrix4x4.h28 float get(uint32_t row, uint32_t col) const {
29 return m[row*4 + col];
32 void set(uint32_t row, uint32_t col, float v) { argument
33 m[row*4 + col] = v;
H A DrsRuntime.h171 void rsrMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v);
172 float rsrMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col);
173 void rsrMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
174 float rsrMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
175 void rsrMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v);
176 float rsrMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
/frameworks/compile/libbcc/lib/ScriptCRT/
H A Drs_core.c78 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v) { argument
79 m->m[row * 4 + col] = v;
83 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col) { argument
84 return m->m[row * 4 + col];
88 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v) { argument
89 m->m[row * 3 + col] = v;
93 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col) { argument
94 return m->m[row * 3 + col];
98 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v) { argument
99 m->m[row * 2 + col]
103 rsMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t 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.c270 u32 row, col; local
276 col = mbNum % width;
281 image->luma = (u8*)(image->data + col * 16 + tmp * 256);
282 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);
H A Dh264bsd_intra_prediction.c548 u32 row, col; local
563 col = mbNum - row * width;
566 ptr = image->data + row * 16 * width + col * 16;
570 * sample above-left if col is zero. However, usage of pels in prediction
580 if (col)
588 ptr = image->data + picSize * 256 + row * 8 * width + col * 8;
600 if (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/scriptc/
H A Drs_matrix.rsh31 * @param col
37 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v);
42 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
47 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v);
54 * @param col
59 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col);
64 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
69 rsMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
/frameworks/native/opengl/tests/hwc/
H A DhwcStress.cpp590 for (unsigned int col = 0; col < cols; col++) {
594 frames[row][col] = new GraphicBuffer(w, h, format, texUsage);
595 if ((rv = frames[row][col]->initCheck()) != NO_ERROR) {
602 hwcTestFillColor(frames[row][col].get(), color, alpha);
605 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/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.cpp71 unsigned int col = getOrdinate(pOld); local
81 action = link_action[row][col];
222 col = getOrdinate(*old);
/frameworks/base/core/java/android/widget/
H A DSuggestionsAdapter.java686 int col = cursor.getColumnIndex(columnName);
687 return getStringOrNull(cursor, col);
690 private static String getStringOrNull(Cursor cursor, int col) { argument
691 if (col == INVALID_INDEX) {
695 return cursor.getString(col);
/frameworks/base/tools/aapt/
H A DImages.cpp811 uint32_t colors[256], col; local
865 col = (uint32_t) ((rr << 24) | (gg << 16) | (bb << 8) | aa);
868 if (colors[idx] == col) {
883 colors[num_colors++] = col;
942 col = colors[idx];
943 rgbPalette[idx].red = (png_byte) ((col >> 24) & 0xff);
944 rgbPalette[idx].green = (png_byte) ((col >> 16) & 0xff);
945 rgbPalette[idx].blue = (png_byte) ((col >> 8) & 0xff);
946 alphaPalette[idx] = (png_byte) (col & 0xff);
/frameworks/base/tools/preload/
H A Dsorttable.js81 if (!headrow[i].className.match(/\bsorttable_nosort\b/)) { // skip this col
145 col = this.sorttable_columnindex;
148 row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]];

Completed in 1843 milliseconds

12