Home
last modified time | relevance | path

Searched refs:rows (Results 1 – 11 of 11) sorted by relevance

/development/ndk/platforms/android-21/include/linux/
Dvirtio_console.h32 __u16 rows; member
/development/perftests/panorama/feature_mos/src/mosaic/
DDelaunay.cpp56 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()
DDelaunay.h64 void build(int lo, int hi, EdgePointer *le, EdgePointer *re, int rows);
/development/perftests/panorama/feature_stab/db_vlvm/
Ddb_utilities_indexing.h35 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()
Ddb_utilities.cpp167 void db_PrintDoubleMatrix(double *a,long rows,long cols) in db_PrintDoubleMatrix() argument
170 for(long i=0;i<rows;i++) in db_PrintDoubleMatrix()
Ddb_utilities.h556 DB_API void db_PrintDoubleMatrix(double *a,long rows,long cols);
/development/samples/training/threadsample/src/com/example/android/threadsample/
DDataProvider.java460 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/
DRowsActivity.java34 setContentView(R.layout.rows); in onCreate()
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/cards/
DCardExampleFragment.java112 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/
DMainFragment.java72 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/
DPageAndListRowFragment.java243 CardRow[] rows = new Gson().fromJson(json, CardRow[].class); in createRows() local
244 for (CardRow row : rows) { in createRows()