Searched refs:firstRow (Results 1 – 5 of 5) sorted by relevance
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | PropsVectors.java | 183 int firstRow, lastRow; in setValue() local 192 firstRow = findRow(start); in setValue() 200 splitFirstRow = (start != v[firstRow] && value != (v[firstRow + column] & mask)); in setValue() 242 count = lastRow - firstRow + columns; in setValue() 243 System.arraycopy(v, firstRow, v, firstRow + columns, count); in setValue() 247 v[firstRow + 1] = v[firstRow + columns] = start; in setValue() 248 firstRow += columns; in setValue() 265 firstRow += column; in setValue() 269 v[firstRow] = (v[firstRow] & mask) | value; in setValue() 270 if (firstRow == lastRow) { in setValue() [all …]
|
/external/icu/icu4c/source/common/ |
D | propsvec.c | 157 uint32_t *firstRow, *lastRow; in upvec_setValue() local 187 firstRow=_findRow(pv, start); in upvec_setValue() 195 splitFirstRow= (UBool)(start!=(UChar32)firstRow[0] && value!=(firstRow[column]&mask)); in upvec_setValue() 222 firstRow=newVectors+(firstRow-pv->v); in upvec_setValue() 242 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue() 243 uprv_memmove(firstRow+columns, firstRow, count*4); in upvec_setValue() 247 firstRow[1]=firstRow[columns]=(uint32_t)start; in upvec_setValue() 248 firstRow+=columns; in upvec_setValue() 265 firstRow+=column; in upvec_setValue() 269 *firstRow=(*firstRow&mask)|value; in upvec_setValue() [all …]
|
/external/mesa3d/src/mesa/program/ |
D | prog_statevars.c | 293 const GLuint firstRow = (GLuint) state[2]; in _mesa_fetch_state() local 298 ASSERT(firstRow >= 0); in _mesa_fetch_state() 299 ASSERT(firstRow < 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() 1003 const GLuint firstRow = (GLuint) state[2]; in _mesa_program_state_string() local 1012 if (firstRow == lastRow) in _mesa_program_state_string() 1013 sprintf(tmp, ".row[%d]", firstRow); in _mesa_program_state_string() 1015 sprintf(tmp, ".row[%d..%d]", firstRow, lastRow); in _mesa_program_state_string()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | BlockRealMatrix.java | 863 final int firstRow = iBlock * BLOCK_SIZE; in setSubMatrix() local 864 final int iStart = FastMath.max(row, firstRow); in setSubMatrix() 865 final int iEnd = FastMath.min(endRow + 1, firstRow + iHeight); in setSubMatrix() 878 block, (i - firstRow) * jWidth + (jStart - firstColumn), in setSubMatrix()
|
D | BlockFieldMatrix.java | 837 final int firstRow = iBlock * BLOCK_SIZE; in setSubMatrix() local 838 final int iStart = FastMath.max(row, firstRow); in setSubMatrix() 839 final int iEnd = FastMath.min(endRow + 1, firstRow + iHeight); in setSubMatrix() 852 block, (i - firstRow) * jWidth + (jStart - firstColumn), in setSubMatrix()
|