Searched defs:rows (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Camera/jni/feature_stab/db_vlvm/
H A Ddb_utilities.cpp167 void db_PrintDoubleMatrix(double *a,long rows,long cols) argument
170 for(long i=0;i<rows;i++)
H A Ddb_utilities_indexing.h35 inline void db_SetupMatrixRefs(double **ar,long rows,long cols,double *a) argument
38 for(i=0;i<rows;i++) ar[i]=&a[i*cols];
41 inline void db_SymmetricExtendUpperToLower(double **A,int rows,int cols) argument
44 for(i=1;i<rows;i++) for(j=0;j<i;j++) A[i][j]=A[j][i];
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DDelaunay.cpp56 int i, rows; local
59 rows = (int)( 0.5 + sqrt( (double) size / log( (double) size )));
67 build( 0, size-1, &lefte, &righte, rows );
73 void CDelaunay::build(int lo, int hi, EdgePointer *le, EdgePointer *re, int rows) argument
86 if (rows == 1) { // time to switch axis of division
88 rows = 65536;
90 lowrows = rows/2;
92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows)));
94 build( split+1, high, &rdi, &rdo, (rows-lowrows) );
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DContactsSyncAdapter.java630 // We've been removing rows from the list as they've been found in the xml
634 // These rows need to be deleted...
743 * Changes are handled row by row, and only changed/new rows are acted upon
757 // TODO Handle deleted individual rows...
911 * SmartBuilder is a wrapper for the Builder class that is used to create/update rows for a
1042 // If we've found an existing data row, we'll delete it. Any rows left at the
1082 // If we've found an existing data row, we'll delete it. Any rows left at the
1344 * We now are dealing with up to maxRows typeless rows of mimeType data. We need to try to
1345 * match them with existing rows; if there's a match, everything's great. Otherwise, we
1349 public void addUntyped(Entity entity, ArrayList<UntypedRow> rows, Strin argument
[all...]

Completed in 79 milliseconds