/cts/tests/tests/graphics/src/android/graphics/cts/ |
YuvImageTest.java | 347 for (int row = 0; row < height; ++row) { 349 int idx = row * width + col; 352 if ((row & 1) == 0 && (col & 1) == 0) { 353 int offset = row / 2 * width + col / 2 * 2; 362 for (int row = 0; row < height; ++row) { 364 int idx = row * width + col [all...] |
/external/skia/src/core/ |
SkRegion_rects.cpp | 63 struct Row { 69 SkTDArray<Row> fRows; 88 SkRegion::RunType* row = (SkRegion::RunType*)fAlloc.allocThrow(size); 89 SkRegion::RunType* rowHead = row; 94 // record the L R values for this row 101 *row++ = edge->fX; 115 *row++ = currR; 116 *row++ = edge->fX; 124 *row++ = currR; 127 int rowCount = row - rowHead [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLTableElement.cpp | 189 HTMLTableRowElement* row = 0; local 194 row = HTMLTableRowsCollection::rowAfter(this, lastRow); 195 if (!row) { 202 lastRow = row; 208 parent = row ? row->parentNode() : lastRow->parentNode(); 221 parent->insertBefore(newRow, row, ec); 227 HTMLTableRowElement* row = 0; local 229 row = HTMLTableRowsCollection::lastRow(this); 232 row = HTMLTableRowsCollection::rowAfter(this, row) [all...] |
/external/chromium/chrome/browser/history/ |
in_memory_url_index.cc | 163 bool InMemoryURLIndex::IndexRow(const URLRow& row) { 164 const GURL& gurl(row.url()); 170 HistoryID history_id = static_cast<HistoryID>(row.id()); 171 DCHECK_LT(row.id(), std::numeric_limits<HistoryID>::max()); 173 // Add the row for quick lookup in the history info store. 174 URLRow new_row(GURL(url), row.id()); 175 new_row.set_visit_count(row.visit_count()); 176 new_row.set_typed_count(row.typed_count()); 177 new_row.set_last_visit(row.last_visit()); 178 new_row.set_title(row.title()) [all...] |
in_memory_history_backend.cc | 88 if (visited_details->row.typed_count() > 0 || 90 HasKeyword(visited_details->row.url())) { 92 modified_details.changed_urls.push_back(visited_details->row); 177 // Because this row won't have a typed count the title and other stuff
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
TransparencyWin.cpp | 472 uint32_t* row = bitmap.getAddr32(0, y); local 475 int alpha = (SkGetPackedR32(row[x]) + SkGetPackedG32(row[x]) + SkGetPackedB32(row[x])) / 3; 478 row[x] = SkAlphaMulQ(textColor, SkAlpha255To256(255 - alpha)); 507 uint32_t* row = bitmap.getAddr32(0, y); local 509 row[x] |= 0xFF000000;
|
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_tiled_backing_store.c | 34 #define IDX(col, row, rowspan) (col + (row * rowspan)) 62 unsigned long row, col; member in struct:_Ewk_Tiled_Backing_Store_Item::__anon13330 70 unsigned long col, row; member in struct:_Ewk_Tiled_Backing_Store_Pre_Render_Request 97 unsigned long col, row; member in struct:_Ewk_Tiled_Backing_Store_Data::__anon13335::__anon13336 182 static Ewk_Tile *_ewk_tiled_backing_store_tile_new(Ewk_Tiled_Backing_Store_Data *priv, unsigned long col, unsigned long row, float zoom) 192 (priv->model.matrix, evas, col, row, zoom); 267 static inline Eina_Bool _ewk_tiled_backing_store_pre_render_request_add(Ewk_Tiled_Backing_Store_Data *priv, unsigned long col, unsigned long row, float zoom, Ewk_Tiled_Backing_Store_Pre_Render_Priority priority) 281 r->row = row; 335 unsigned long col, row; local 386 unsigned long row, col; local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_surface.c | 285 int row, col; local 315 row = surface->h; 316 while (row--) { 318 buf = (Uint8 *)surface->pixels + row * surface->pitch + offset; 558 Uint8 *row; local 603 row = (Uint8 *)dst->pixels+dstrect->y*dst->pitch+ 607 if ( !color && !((uintptr_t)row&3) && !(x&3) && !(dst->pitch&3) ) { 610 SDL_memset4(row, 0, n); 611 row += dst->pitch; 630 Uint8 *d = row; [all...] |
/cts/tools/dasm/src/java_cup/ |
emit.java | 486 parse_action_row row; local 496 /* do each state (row) of the action table */ 499 /* get the row */ 500 row = act_tab.under_state[i]; 502 /* determine the default for the row */ 504 row.compute_default(); 506 row.default_reduce = -1; 511 for (int j = 0; j < row.size(); j++) 514 act = row.under_term[j]; 533 if (red != row.default_reduce [all...] |
/external/icu4c/common/ |
rbbi.cpp | 933 RBBIStateTableRow *row; local 964 row = (RBBIStateTableRow *) 1144 RBBIStateTableRow *row; local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
ProximityInfo.java | 143 final int row = hitBox.top / mKeyHeight; local 144 if (row < radii.length) { 149 final float x = xs[row]; 150 final float y = ys[row]; 151 final float radius = radii[row];
|
/external/opencv/cvaux/src/ |
cvlmeds.cpp | 647 { /* row */ 758 { /* row */ 767 { /* row */ 783 { /* row */ 809 { /* row */ 1421 int row, swapi, i, i_best = 0, j, j_best = 0, t; local [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
AlphabetIndexerTest.java | 158 ArrayList<String> row = new ArrayList<String>(); 159 row.add(cell); 160 list.add(row);
|
/external/llvm/utils/lit/lit/ |
Util.py | 133 for i,row in enumerate(histo): 134 pct = float(len(row)) / len(items) 139 cDigits, len(row),
|
/external/webkit/Source/WebCore/rendering/ |
RenderTableCell.h | 48 int row() const { return m_row; } function in class:WebCore::RenderTableCell 49 void setRow(int row) { m_row = row; }
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
conceal.cpp | 141 int row = MB_SIZE; local 160 while (row) 189 row -= 4;
|
/frameworks/compile/libbcc/lib/ScriptCRT/ |
rs_core.c | 110 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v) { 111 m->m[row * 4 + col] = v; 115 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col) { 116 return m->m[row * 4 + col]; 120 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v) { 121 m->m[row * 3 + col] = v; 125 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col) { 126 return m->m[row * 3 + col]; 130 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v) { 131 m->m[row * 2 + col] = v [all...] |
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
MockSuggestionProviderCursor.java | 28 private final ArrayList<Row> mRows; 32 mRows = new ArrayList<Row>(); 35 public Row addRow(Object... values) { 36 Row row = new Row(values); local 37 mRows.add(row); 38 return row; 90 private class Row { 92 public Row(Object... values) [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
content_setting_bubble_gtk.cc | 132 int row = 0; local 134 i(popup_items.begin()); i != popup_items.end(); ++i, ++row) { 149 gtk_table_attach(GTK_TABLE(table), event_box, 0, 1, row, row + 1, local 159 gtk_table_attach(GTK_TABLE(table), button, 1, 2, row, row + 1, local
|
/external/libvpx/vp8/encoder/ |
encodemv.c | 73 if (abs(mv->row >> 1) > max_mv_r) 76 max_mv_r = abs(mv->row >> 1); 77 fprintf(f, "New Mv Row Max %6d\n", (mv->row >> 1)); 79 if ((abs(mv->row) / 2) != max_mv_r) 80 fprintf(f, "MV Row conversion error %6d\n", abs(mv->row) / 2); 95 encode_mvcomponent(w, mv->row >> 1, &mvc[0]);
|
/external/openssl/crypto/txt_db/ |
txt_db.c | 303 int TXT_DB_insert(TXT_DB *db, OPENSSL_STRING *row) 313 (db->qual[i](row) == 0)) continue; 314 r=lh_OPENSSL_STRING_retrieve(db->index[i],row); 325 if (!sk_OPENSSL_PSTRING_push(db->data,row)) 336 (db->qual[i](row) == 0)) continue; 337 (void)lh_OPENSSL_STRING_insert(db->index[i],row); 369 if (max == NULL) /* new row */
|
/external/quake/quake/src/QW/client/ |
console.c | 545 int row; local 573 row = con->display; 574 for (i=0 ; i<rows ; i++, y-=8, row--) 576 if (row < 0) 578 if (con->current - row >= con_totallines) 581 text = con->text + (row % con_totallines)*con_linewidth;
|
d_scan.c | 51 byte **row; local 80 row = &rowptr[v]; 83 dest[u+0] = row[turb[u+0]][col[u+0]]; 84 dest[u+1] = row[turb[u+1]][col[u+1]]; 85 dest[u+2] = row[turb[u+2]][col[u+2]]; 86 dest[u+3] = row[turb[u+3]][col[u+3]];
|
/external/quake/quake/src/WinQuake/ |
d_scan.cpp | 51 byte **row;
local 80 row = &rowptr[v];
84 dest[u+0] = row[turb[u+0]][col[u+0]];
85 dest[u+1] = row[turb[u+1]][col[u+1]];
86 dest[u+2] = row[turb[u+2]][col[u+2]];
87 dest[u+3] = row[turb[u+3]][col[u+3]];
|
/frameworks/base/libs/rs/ |
rsRuntime.h | 170 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);
|