Home
last modified time | relevance | path

Searched refs:firstRow (Results 1 – 17 of 17) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DPropsVectors.java185 int firstRow, lastRow; in setValue() local
194 firstRow = findRow(start); in setValue()
202 splitFirstRow = (start != v[firstRow] && value != (v[firstRow + column] & mask)); in setValue()
244 count = lastRow - firstRow + columns; in setValue()
245 System.arraycopy(v, firstRow, v, firstRow + columns, count); in setValue()
249 v[firstRow + 1] = v[firstRow + columns] = start; in setValue()
250 firstRow += columns; in setValue()
267 firstRow += column; in setValue()
271 v[firstRow] = (v[firstRow] & mask) | value; in setValue()
272 if (firstRow == lastRow) { in setValue()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DPropsVectors.java187 int firstRow, lastRow; in setValue() local
196 firstRow = findRow(start); in setValue()
204 splitFirstRow = (start != v[firstRow] && value != (v[firstRow + column] & mask)); in setValue()
246 count = lastRow - firstRow + columns; in setValue()
247 System.arraycopy(v, firstRow, v, firstRow + columns, count); in setValue()
251 v[firstRow + 1] = v[firstRow + columns] = start; in setValue()
252 firstRow += columns; in setValue()
269 firstRow += column; in setValue()
273 v[firstRow] = (v[firstRow] & mask) | value; in setValue()
274 if (firstRow == lastRow) { in setValue()
[all …]
/external/icu/icu4c/source/common/
Dpropsvec.cpp159 uint32_t *firstRow, *lastRow; in upvec_setValue() local
189 firstRow=_findRow(pv, start); in upvec_setValue()
197 splitFirstRow= (UBool)(start!=(UChar32)firstRow[0] && value!=(firstRow[column]&mask)); in upvec_setValue()
224 firstRow=newVectors+(firstRow-pv->v); in upvec_setValue()
244 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue()
245 uprv_memmove(firstRow+columns, firstRow, (size_t)count*4); in upvec_setValue()
249 firstRow[1]=firstRow[columns]=(uint32_t)start; in upvec_setValue()
250 firstRow+=columns; in upvec_setValue()
267 firstRow+=column; in upvec_setValue()
271 *firstRow=(*firstRow&mask)|value; in upvec_setValue()
[all …]
Drbbitblb.cpp1231 … UnicodeString *firstRow = static_cast<UnicodeString *>(fSafeTable->elementAt(states->first)); in findDuplicateSafeState() local
1235 int32_t numCols = firstRow->length(); in findDuplicateSafeState()
1237 int32_t firstVal = firstRow->charAt(col); in findDuplicateSafeState()
/external/skqp/src/codec/
DSkPngCodec.cpp558 void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { in setRange() argument
560 fFirstRow = firstRow; 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()
708 fFirstRow = firstRow; in setRange()
1165 int firstRow, lastRow; in onStartIncrementalDecode() local
1167 firstRow = options.fSubset->top(); in onStartIncrementalDecode()
1170 firstRow = 0; in onStartIncrementalDecode()
1173 this->setRange(firstRow, lastRow, dst, rowBytes); in onStartIncrementalDecode()
DSkPngCodec.h110 virtual void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) = 0;
/external/skia/src/codec/
DSkPngCodec.cpp557 void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { in setRange() argument
559 fFirstRow = firstRow; in setRange()
703 void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { in setRange() argument
705 this->setUpInterlaceBuffer(lastRow - firstRow + 1); in setRange()
707 fFirstRow = firstRow; in setRange()
1180 int firstRow, lastRow; in onStartIncrementalDecode() local
1182 firstRow = options.fSubset->top(); in onStartIncrementalDecode()
1185 firstRow = 0; in onStartIncrementalDecode()
1188 this->setRange(firstRow, lastRow, dst, rowBytes); in onStartIncrementalDecode()
DSkPngCodec.h110 virtual void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) = 0;
/external/mesa3d/src/mesa/program/
Dprog_statevars.c300 const GLuint firstRow = (GLuint) state[2]; in fetch_state() local
305 assert(firstRow < 4); in fetch_state()
340 for (i = 0, row = firstRow; row <= lastRow; row++) { in fetch_state()
348 for (i = 0, row = firstRow; row <= lastRow; row++) { in fetch_state()
1059 const GLuint firstRow = (GLuint) state[2]; in _mesa_program_state_string() local
1068 if (firstRow == lastRow) in _mesa_program_state_string()
1069 sprintf(tmp, ".row[%d]", firstRow); in _mesa_program_state_string()
1071 sprintf(tmp, ".row[%d..%d]", firstRow, lastRow); in _mesa_program_state_string()
/external/freetype/src/pcf/
Dpcfdrivr.c114 charcode < (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ) ) in pcf_cmap_char_index()
124 return (FT_UInt)enc->offset[( charcodeRow - enc->firstRow ) * in pcf_cmap_char_index()
146 if ( charcode < (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ) ) in pcf_cmap_char_next()
147 charcode = (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ); in pcf_cmap_char_next()
162 result = (FT_UInt)enc->offset[( charcodeRow - enc->firstRow ) * in pcf_cmap_char_next()
Dpcfread.c953 FT_FRAME_USHORT_LE( firstRow ),
969 FT_FRAME_USHORT( firstRow ),
1028 enc->firstRow, enc->lastRow, in pcf_get_encodings()
1034 enc->firstRow > enc->lastRow || in pcf_get_encodings()
1039 (FT_ULong)( enc->lastRow - enc->firstRow + 1 ); in pcf_get_encodings()
1054 if ( defaultCharRow < enc->firstRow || in pcf_get_encodings()
1059 enc->defaultChar = enc->firstRow * 256U + enc->firstCol; in pcf_get_encodings()
1064 defaultCharRow = enc->firstRow; in pcf_get_encodings()
1079 2 * ( ( defaultCharRow - enc->firstRow ) * in pcf_get_encodings()
1115 for ( i = enc->firstRow; i <= enc->lastRow; i++ ) in pcf_get_encodings()
Dpcf.h111 FT_UShort firstRow; member
/external/swiftshader/src/Pipeline/
DSpirvShaderArithmetic.cpp252 auto firstRow = Extract(src.Float(i), 1) - Extract(src.Float(i), 0); in EmitUnaryOp() local
254 SIMD::Float v = SIMD::Float(firstRow); in EmitUnaryOp()
272 auto firstRow = Extract(src.Float(i), 1) - Extract(src.Float(i), 0); in EmitUnaryOp() local
274 SIMD::Float dpdx = SIMD::Float(firstRow); in EmitUnaryOp()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBBITableBuilder.java999 short[] firstRow = fSafeTable.get(states.first);
1003 int numCols = firstRow.length;
1005 int firstVal = firstRow[col];
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRBBITableBuilder.java1000 short[] firstRow = fSafeTable.get(states.first);
1004 int numCols = firstRow.length;
1006 int firstVal = firstRow[col];
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DBlockRealMatrix.java863 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()
DBlockFieldMatrix.java837 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()