/external/icu/icu4j/main/classes/core/src/com/ibm/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/android_icu4j/src/main/java/android/icu/impl/ |
D | PropsVectors.java | 187 int firstRow, lastRow; in setValue() local 197 lastRow = findRow(end); in setValue() 205 splitLastRow = (limit != v[lastRow + 1] && value != (v[lastRow + column] & mask)); in setValue() 235 int count = (rows * columns) - (lastRow + columns); in setValue() 237 System.arraycopy(v, lastRow + columns, v, lastRow in setValue() 246 count = lastRow - firstRow + columns; in setValue() 248 lastRow += columns; in setValue() 258 System.arraycopy(v, lastRow, v, lastRow + columns, columns); in setValue() 261 v[lastRow + 1] = v[lastRow + columns] = limit; in setValue() 266 prevRow = lastRow / columns; in setValue() [all …]
|
/external/icu/icu4c/source/common/ |
D | propsvec.cpp | 159 uint32_t *firstRow, *lastRow; in upvec_setValue() local 190 lastRow=_findRow(pv, end); in upvec_setValue() 198 splitLastRow= (UBool)(limit!=(UChar32)lastRow[1] && value!=(lastRow[column]&mask)); in upvec_setValue() 225 lastRow=newVectors+(lastRow-pv->v); in upvec_setValue() 232 count = (int32_t)((pv->v+rows*columns)-(lastRow+columns)); in upvec_setValue() 235 lastRow+(1+splitFirstRow+splitLastRow)*columns, in upvec_setValue() 236 lastRow+columns, in upvec_setValue() 244 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue() 246 lastRow+=columns; in upvec_setValue() 256 uprv_memcpy(lastRow+columns, lastRow, (size_t)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/skia/src/codec/ |
D | SkPngCodec.cpp | 558 void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { in setRange() argument 561 fLastRow = lastRow; in setRange() 704 void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { in setRange() argument 706 this->setUpInterlaceBuffer(lastRow - firstRow + 1); in setRange() 709 fLastRow = lastRow; in setRange() 1165 int firstRow, lastRow; in onStartIncrementalDecode() local 1168 lastRow = options.fSubset->bottom() - 1; in onStartIncrementalDecode() 1171 lastRow = dstInfo.height() - 1; in onStartIncrementalDecode() 1173 this->setRange(firstRow, lastRow, dst, rowBytes); in onStartIncrementalDecode()
|
D | SkPngCodec.h | 110 virtual void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) = 0;
|
/external/skqp/src/codec/ |
D | SkPngCodec.cpp | 558 void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { in setRange() argument 561 fLastRow = lastRow; in setRange() 704 void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { in setRange() argument 706 this->setUpInterlaceBuffer(lastRow - firstRow + 1); in setRange() 709 fLastRow = lastRow; in setRange() 1165 int firstRow, lastRow; in onStartIncrementalDecode() local 1168 lastRow = options.fSubset->bottom() - 1; in onStartIncrementalDecode() 1171 lastRow = dstInfo.height() - 1; in onStartIncrementalDecode() 1173 this->setRange(firstRow, lastRow, dst, rowBytes); in onStartIncrementalDecode()
|
D | SkPngCodec.h | 110 virtual void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) = 0;
|
/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 | 301 const GLuint lastRow = (GLuint) state[3]; in _mesa_fetch_state() local 306 assert(lastRow < 4); in _mesa_fetch_state() 340 for (i = 0, row = firstRow; row <= lastRow; row++) { in _mesa_fetch_state() 348 for (i = 0, row = firstRow; row <= lastRow; row++) { in _mesa_fetch_state() 1009 const GLuint lastRow = (GLuint) state[3]; in _mesa_program_state_string() local 1017 if (firstRow == lastRow) in _mesa_program_state_string() 1020 sprintf(tmp, ".row[%d..%d]", firstRow, lastRow); in _mesa_program_state_string()
|
/external/freetype/src/pcf/ |
D | pcfread.c | 947 FT_UShort firstRow, lastRow; in pcf_get_encodings() local 980 lastRow = FT_GET_USHORT(); in pcf_get_encodings() 988 lastRow = FT_GET_USHORT_LE(); in pcf_get_encodings() 1006 firstRow, lastRow, in pcf_get_encodings() 1012 firstRow > lastRow || in pcf_get_encodings() 1013 lastRow > 0xFF ) in pcf_get_encodings() 1017 (FT_ULong)( lastRow - firstRow + 1 ); in pcf_get_encodings() 1033 defaultCharRow > lastRow || in pcf_get_encodings() 1081 for ( i = firstRow; i <= lastRow; i++ ) in pcf_get_encodings()
|
/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/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()
|