Searched refs:rows (Results 1 – 11 of 11) sorted by relevance
/development/ndk/platforms/android-21/include/linux/ |
D | virtio_console.h | 32 __u16 rows; member
|
/development/perftests/panorama/feature_mos/src/mosaic/ |
D | Delaunay.cpp | 56 int i, rows; in buildTriangulation() local 59 rows = (int)( 0.5 + sqrt( (double) size / log( (double) size ))); in buildTriangulation() 67 build( 0, size-1, &lefte, &righte, rows ); in buildTriangulation() 73 void CDelaunay::build(int lo, int hi, EdgePointer *le, EdgePointer *re, int rows) in build() argument 86 if (rows == 1) { // time to switch axis of division in build() 88 rows = 65536; in build() 90 lowrows = rows/2; in build() 92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows))); in build() 94 build( split+1, high, &rdi, &rdo, (rows-lowrows) ); in build()
|
D | Delaunay.h | 64 void build(int lo, int hi, EdgePointer *le, EdgePointer *re, int rows);
|
/development/perftests/panorama/feature_stab/db_vlvm/ |
D | db_utilities_indexing.h | 35 inline void db_SetupMatrixRefs(double **ar,long rows,long cols,double *a) in db_SetupMatrixRefs() argument 38 for(i=0;i<rows;i++) ar[i]=&a[i*cols]; in db_SetupMatrixRefs() 41 inline void db_SymmetricExtendUpperToLower(double **A,int rows,int cols) in db_SymmetricExtendUpperToLower() argument 44 for(i=1;i<rows;i++) for(j=0;j<i;j++) A[i][j]=A[j][i]; in db_SymmetricExtendUpperToLower()
|
D | db_utilities.cpp | 167 void db_PrintDoubleMatrix(double *a,long rows,long cols) in db_PrintDoubleMatrix() argument 170 for(long i=0;i<rows;i++) in db_PrintDoubleMatrix()
|
D | db_utilities.h | 556 DB_API void db_PrintDoubleMatrix(double *a,long rows,long cols);
|
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
D | DataProvider.java | 460 int rows = localSQLiteDatabase.update( in update() local 467 if (0 != rows) { in update() 469 return rows; in update()
|
/development/samples/SupportLeanbackDemos/src/com/example/android/leanback/ |
D | RowsActivity.java | 34 setContentView(R.layout.rows); in onCreate()
|
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/cards/ |
D | CardExampleFragment.java | 112 CardRow[] rows = new Gson().fromJson(json, CardRow[].class); in createRows() local 113 for (CardRow row : rows) { in createRows()
|
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/ |
D | MainFragment.java | 72 CardRow[] rows = new Gson().fromJson(json, CardRow[].class); in createRows() local 73 for (CardRow row : rows) { in createRows()
|
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/page/ |
D | PageAndListRowFragment.java | 243 CardRow[] rows = new Gson().fromJson(json, CardRow[].class); in createRows() local 244 for (CardRow row : rows) { in createRows()
|