/external/quake/quake/src/QW/client/ |
gl_model.c | 117 int row; local 119 row = (model->numleafs+7)>>3; 123 memcpy (out, in, row); 127 while (row) 130 row--; 150 } while (out - decompressed < row); [all...] |
model.c | 115 int row; local 117 row = (model->numleafs+7)>>3; 121 memcpy (out, in, row); 125 while (row) 128 row--; 148 } while (out - decompressed < row); [all...] |
gl_screen.c | 787 int row, col; local 792 row = num>>4; 794 source = draw_chars + (row<<10) + (col<<3);
|
/external/quake/quake/src/WinQuake/ |
gl_draw.cpp | 618 int row, col; local 623 row = num>>4; 625 source = draw_chars + (row<<10) + (col<<3); 843 int row, col; local 854 row = num>>4; 857 frow = row*0.0625; [all...] |
gl_model.cpp | 117 int row; local 119 row = (model->numleafs+7)>>3; 123 memcpy (out, in, row); 127 while (row) 130 row--; 150 } while (out - decompressed < row); [all...] |
/frameworks/base/opengl/tests/hwc/ |
hwcCommit.cpp | 638 // has limits on the number of objects it can handle on any single row. [all...] |
/external/icu4c/test/cintltst/ |
cloctst.c | 387 int row = 0; local 438 for(row=0;testData[row][0] != NULL;row++) { 439 loc = testData[row][NAME]; 440 log_verbose("Test #%d: %s\n", row, loc); 485 row, testTitles[n], loc, u_errorName(err)); 488 row, testTitles[n], loc, buf, len); 492 row, testTitles[n], loc, buf, len, strlen(buf)+1); 499 row, testTitles[n], loc, buf, buf[len+1]) [all...] |
/bootable/recovery/ |
ui.c | 182 static void draw_text_line(int row, const char* t) { 184 gr_text(0, (row+1)*CHAR_HEIGHT-1, t);
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Images_MediaTest.java | 71 for (Uri row : mRowsAdded) { 72 mContentResolver.delete(row, null, null);
|
/external/chromium/chrome/browser/resources/bookmark_manager/css/ |
bmm.css | 174 html[os=mac] .tree-row[selected] > .tree-label {
|
/external/libvpx/vp8/common/ppc/ |
recon_altivec.asm | 75 stwux r0, \Dst, \Stride ;# advance dst to next row
|
/external/skia/samplecode/ |
SampleWarp.cpp | 216 SkPoint& pt(int row, int col) { 217 return fPts[row * (fRows + 1) + col];
|
/external/skia/src/core/ |
SkMatrix.cpp | 509 static inline bool rowcol3(const float row[], const float col[], 511 *result = row[0] * col[0] + row[1] * col[3] + row[2] * col[6]; 542 static inline bool rowcol3(const SkFixed row[], const SkFixed col[], 546 tmp1.setMul(row[0], col[0]); // N * fixed 547 tmp2.setMul(row[1], col[3]); // N * fixed 550 tmp2.setMul(row[2], col[6]); // N * fract [all...] |
/external/webkit/Tools/DumpRenderTree/chromium/ |
TestShell.cpp | 88 uint32_t* row = bitmap.getAddr32(0, y); local 90 row[x] |= 0xFF000000; // Set alpha bits to 1.
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cursesf.h | 213 inline void move(int row, int col) { 214 OnError(::move_field(field,row,col));
|
/external/chromium/chrome/browser/history/ |
history_types.h | 51 // Holds all information globally associated with one URL (one row in the 135 // The row ID of this URL. Immutable except for the database which sets it 139 // The URL of this row. Immutable except for the database which sets it 197 // ID of this row (visit ID, used a a referrer for other visits). 200 // Row ID into the URL table of the URL that this page is. 671 // Return true if |row| qualifies as an autocomplete candidate. If |time_cache| 677 bool RowQualifiesAsSignificant(const URLRow& row, const base::Time& threshold);
|
/external/libpng/ |
pngwrite.c | 737 png_write_rows(png_structp png_ptr, png_bytepp row, 740 png_uint_32 i; /* row counter */ 741 png_bytepp rp; /* row pointer */ 749 for (i = 0, rp = row; i < num_rows; i++, rp++) 761 png_uint_32 i; /* row index */ 763 png_bytepp rp; /* points to current row */ 789 /* Called by user to write a row of image data */ 791 png_write_row(png_structp png_ptr, png_bytep row) 796 png_debug2(1, "in png_write_row (row %ld, pass %d)", 845 /* If interlaced and not interested in row, return * [all...] |
/external/opencv/ml/include/ |
ml.h | 392 typedef float* (CvSVMSolver::*GetRow)( int i, float* row, float* dst, bool existed ); 466 virtual float* get_row_svc( int i, float* row, float* dst, bool existed ); 467 virtual float* get_row_one_class( int i, float* row, float* dst, bool existed ); 468 virtual float* get_row_svr( int i, float* row, float* dst, bool existed ); [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
pngwrite.c | 706 png_write_rows(png_structp png_ptr, png_bytepp row, 709 png_uint_32 i; /* row counter */ 710 png_bytepp rp; /* row pointer */ 718 for (i = 0, rp = row; i < num_rows; i++, rp++) 730 png_uint_32 i; /* row index */ 732 png_bytepp rp; /* points to current row */ 756 /* called by user to write a row of image data */ 758 png_write_row(png_structp png_ptr, png_bytep row) 762 png_debug2(1, "in png_write_row (row %ld, pass %d)\n", 807 /* if interlaced and not interested in row, return * [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderTable.cpp | 826 // repair column count (addChild can grow it too much, because it always adds elements to the last row of a section) 848 // Determined by the first cell of the first row. See the CSS 2.1 spec, section 17.6.2. [all...] |
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
OldCharset_AbstractTest.java | 297 int row = 0, col = 0; field in class:OldCharset_AbstractTest.CodesGenerator
|
/external/chromium/chrome/browser/task_manager/ |
task_manager.cc | 884 int row, base::ProcessMetrics** proc_metrics) const { 885 DCHECK(row < ResourceCount()); 889 metrics_map_.find(resources_[row]->GetProcess()); [all...] |
/external/skia/src/views/ |
SkListView.cpp | 474 if (dom.findScalar(node, "row-height", &x)) 674 int row = index / fVisibleCount.fY; 679 row * (fCellSize.fY + SkIntToScalar(row > 0)));
|
/external/sonivox/jet_tools/JetCreator/ |
JetUtils.py | 123 def SetRowSelection(list, row, state):
124 """ Sets the selection status of a list row """
126 list.SetItemState(row, wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED)
128 list.SetItemState(row, ~wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED)
|
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_tiled_model.c | 43 #define IDX(col, row, rowspan) (col + (row * rowspan)) 897 t->col, t->row, t->w, t->h, t->zoom,
|