/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | PropsVectors.java | 183 int firstRow, lastRow; in setValue() local 193 lastRow = findRow(end); in setValue() 201 splitLastRow = (limit != v[lastRow + 1] && value != (v[lastRow + column] & mask)); in setValue() 231 int count = (rows * columns) - (lastRow + columns); in setValue() 233 System.arraycopy(v, lastRow + columns, v, lastRow in setValue() 242 count = lastRow - firstRow + columns; in setValue() 244 lastRow += columns; in setValue() 254 System.arraycopy(v, lastRow, v, lastRow + columns, columns); in setValue() 257 v[lastRow + 1] = v[lastRow + columns] = limit; in setValue() 262 prevRow = lastRow / columns; in setValue() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | PropsVectors.java | 185 int firstRow, lastRow; in setValue() local 195 lastRow = findRow(end); in setValue() 203 splitLastRow = (limit != v[lastRow + 1] && value != (v[lastRow + column] & mask)); in setValue() 233 int count = (rows * columns) - (lastRow + columns); in setValue() 235 System.arraycopy(v, lastRow + columns, v, lastRow in setValue() 244 count = lastRow - firstRow + columns; in setValue() 246 lastRow += columns; in setValue() 256 System.arraycopy(v, lastRow, v, lastRow + columns, columns); in setValue() 259 v[lastRow + 1] = v[lastRow + columns] = limit; in setValue() 264 prevRow = lastRow / columns; in setValue() [all …]
|
/external/icu/icu4c/source/common/ |
D | propsvec.c | 157 uint32_t *firstRow, *lastRow; in upvec_setValue() local 188 lastRow=_findRow(pv, end); in upvec_setValue() 196 splitLastRow= (UBool)(limit!=(UChar32)lastRow[1] && value!=(lastRow[column]&mask)); in upvec_setValue() 223 lastRow=newVectors+(lastRow-pv->v); in upvec_setValue() 230 count = (int32_t)((pv->v+rows*columns)-(lastRow+columns)); in upvec_setValue() 233 lastRow+(1+splitFirstRow+splitLastRow)*columns, in upvec_setValue() 234 lastRow+columns, in upvec_setValue() 242 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue() 244 lastRow+=columns; in upvec_setValue() 254 uprv_memcpy(lastRow+columns, lastRow, columns*4); in upvec_setValue() [all …]
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/ |
D | DynamicTableModel.java | 185 int lastRow = 0; // most recent row iterated field in DynamicTableModel.TableModelIterator 251 lastRow++; in next() 259 … if (dynamicTableModel.getNumRows() > 0 && lastRow >= (dynamicTableModel.getNumRows() - 1)) { in next() 262 lastRow = 0; in next() 267 lastRow++; in next()
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
D | BC_PDF417DetectionResultRowIndicatorColumn.cpp | 60 int32_t lastRow = imageRowToCodewordIndex((int32_t)bottom->GetY()); in adjustCompleteIndicatorColumnRowNumbers() local 62 (lastRow - firstRow) / (FX_FLOAT)barcodeMetadata.getRowCount(); in adjustCompleteIndicatorColumnRowNumbers() 66 for (int32_t codewordsRow = firstRow; codewordsRow < lastRow; in adjustCompleteIndicatorColumnRowNumbers() 136 int32_t lastRow = imageRowToCodewordIndex((int32_t)bottom->GetY()); in adjustIncompleteIndicatorColumnRowNumbers() local 138 (lastRow - firstRow) / (FX_FLOAT)barcodeMetadata.getRowCount(); in adjustIncompleteIndicatorColumnRowNumbers() 143 for (int32_t codewordsRow = firstRow; codewordsRow < lastRow; in adjustIncompleteIndicatorColumnRowNumbers()
|
/external/v8/benchmarks/ |
D | navier-stokes.js | 144 var lastRow = (j - 1) * rowSize; 150 …lastX = x[currentRow] = (x0[currentRow] + a*(lastX+x[++currentRow]+x[++lastRow]+x[++nextRow])) * i… 181 var lastRow = (j - 1) * rowSize; 188 …lastX = x[currentRow] = (x0[currentRow] + a * (lastX + x[currentRow] + x[lastRow] + x[nextRow])) *… 189 …Y = y[currentRow] = (y0[currentRow] + a * (lastY + y[++currentRow] + y[++lastRow] + y[++nextRow]))…
|
/external/mesa3d/src/mesa/program/ |
D | prog_statevars.c | 294 const GLuint lastRow = (GLuint) state[3]; in _mesa_fetch_state() local 300 ASSERT(lastRow >= 0); in _mesa_fetch_state() 301 ASSERT(lastRow < 4); in _mesa_fetch_state() 335 for (i = 0, row = firstRow; row <= lastRow; row++) { in _mesa_fetch_state() 343 for (i = 0, row = firstRow; row <= lastRow; row++) { in _mesa_fetch_state() 1004 const GLuint lastRow = (GLuint) state[3]; in _mesa_program_state_string() local 1012 if (firstRow == lastRow) in _mesa_program_state_string() 1015 sprintf(tmp, ".row[%d..%d]", firstRow, lastRow); in _mesa_program_state_string()
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
D | matrix-decomposition.js | 48 var lastRow = []; 54 lastRow.push(val); 56 lastRow.push(1); 57 Ainv.push(lastRow);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
D | AdamsBashforthIntegrator.java | 219 final int lastRow = nordsieck.getRowDimension() - 1; in integrate() local 241 final double ratio = nordsieck.getEntry(lastRow, i) / tol; in integrate()
|
/external/dng_sdk/source/ |
D | dng_gain_map.cpp | 144 uint32 lastRow = static_cast<uint32> (fMap.Points ().v - 1); in dng_gain_map_interpolator() local 146 if (rowIndexF >= static_cast<real64> (lastRow)) in dng_gain_map_interpolator() 149 fRowIndex1 = lastRow; in dng_gain_map_interpolator()
|
/external/opencv3/modules/ts/misc/ |
D | summary.py | 176 lastRow = None variable 180 lastRow = tbl.newRow() variable 187 prop = lastRow.props.get("cssclass", "") 189 lastRow.props["cssclass"] = prop + " firstingroup"
|
/external/opencv3/modules/imgproc/src/ |
D | demosaicing.cpp | 1595 T* lastRow = dst.ptr<T>() + (size.height-1) * dstep; in Bayer2RGB_EdgeAware_T() local 1602 lastRow[x] = (lastRow-dstep)[x]; in Bayer2RGB_EdgeAware_T() 1607 firstRow[x] = lastRow[x] = 0; in Bayer2RGB_EdgeAware_T()
|
/external/opencv3/modules/imgproc/test/ |
D | test_color.cpp | 2038 uchar* firstRow = dst.ptr(), *lastRow = dst.ptr(size.height); in test_Bayer2RGB_EdgeAware_8u() local 2043 lastRow[x] = lastRow[-static_cast<int>(dst.step)+x]; in test_Bayer2RGB_EdgeAware_8u()
|
/external/opencv3/modules/features2d/src/ |
D | agast.cpp | 7563 size_t lastRow = 0, next_lastRow = 0; in AGAST() local 7583 if(lastRow + 1 < currCorner->pt.y) in AGAST() 7585 lastRow = next_lastRow; in AGAST() 7593 if(lastRow + 1 == currCorner->pt.y) in AGAST() 7597 && (keypoints[lastRowCorner_ind].pt.y == lastRow) ) in AGAST()
|