/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | PropsVectors.java | 185 int firstRow, lastRow; in setValue() 194 firstRow = findRow(start); in setValue() 202 splitFirstRow = (start != v[firstRow] && value != (v[firstRow + column] & mask)); in setValue() 240 // split the first row, and move the firstRow pointer in setValue() 244 count = lastRow - firstRow + columns; in setValue() 245 System.arraycopy(v, firstRow, v, firstRow + columns, count); in setValue() 248 // split the range and move the firstRow pointer in setValue() 249 v[firstRow in setValue() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | PropsVectors.java | 187 int firstRow, lastRow; in setValue() 196 firstRow = findRow(start); in setValue() 204 splitFirstRow = (start != v[firstRow] && value != (v[firstRow + column] & mask)); in setValue() 242 // split the first row, and move the firstRow pointer in setValue() 246 count = lastRow - firstRow + columns; in setValue() 247 System.arraycopy(v, firstRow, v, firstRow + columns, count); in setValue() 250 // split the range and move the firstRow pointer in setValue() 251 v[firstRow in setValue() [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | propsvec.cpp | 159 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() 241 /* split the first row, and move the firstRow pointer to the second part */ in upvec_setValue() 244 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue() 245 uprv_memmove(firstRow+columns, firstRow, (size_ in upvec_setValue() [all...] |
H A D | rbbitblb.cpp | 1237 UnicodeString *firstRow = static_cast<UnicodeString *>(fSafeTable->elementAt(states->first)); in findDuplicateSafeState() local 1241 int32_t numCols = firstRow->length(); in findDuplicateSafeState() 1243 int32_t firstVal = firstRow->charAt(col); in findDuplicateSafeState()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | propsvec.cpp | 159 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() 241 /* split the first row, and move the firstRow pointer to the second part */ in upvec_setValue() 244 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue() 245 uprv_memmove(firstRow+columns, firstRow, (size_ in upvec_setValue() [all...] |
H A D | rbbitblb.cpp | 1222 UnicodeString *firstRow = static_cast<UnicodeString *>(fSafeTable->elementAt(states->first)); in findDuplicateSafeState() local 1226 int32_t numCols = firstRow->length(); in findDuplicateSafeState() 1228 int32_t firstVal = firstRow->charAt(col); in findDuplicateSafeState()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | propsvec.cpp | 159 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() 241 /* split the first row, and move the firstRow pointer to the second part */ in upvec_setValue() 244 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue() 245 uprv_memmove(firstRow+columns, firstRow, (size_ in upvec_setValue() [all...] |
H A D | rbbitblb.cpp | 1231 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()
|
/third_party/skia/src/codec/ |
H A D | SkPngCodec.cpp | 561 void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { 563 fFirstRow = firstRow; 707 void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { 709 this->setUpInterlaceBuffer(lastRow - firstRow + 1); 711 fFirstRow = firstRow; 1184 int firstRow, lastRow; in onStartIncrementalDecode() local 1186 firstRow = options.fSubset->top(); in onStartIncrementalDecode() 1189 firstRow = 0; in onStartIncrementalDecode() 1192 this->setRange(firstRow, lastRow, dst, rowBytes); in onStartIncrementalDecode()
|
H A D | SkPngCodec.h | 110 virtual void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) = 0;
|
/third_party/skia/third_party/externals/freetype/src/pcf/ |
H A D | pcfread.c | 952 FT_FRAME_USHORT_LE( firstRow ), 968 FT_FRAME_USHORT( firstRow ), 1025 FT_TRACE4(( " firstRow 0x%X, lastRow 0x%X\n", in pcf_get_encodings() 1026 enc->firstRow, enc->lastRow )); in pcf_get_encodings() 1033 enc->firstRow > enc->lastRow || in pcf_get_encodings() 1038 (FT_ULong)( enc->lastRow - enc->firstRow + 1 ); in pcf_get_encodings() 1053 if ( defaultCharRow < enc->firstRow || in pcf_get_encodings() 1058 enc->defaultChar = enc->firstRow * 256U + enc->firstCol; in pcf_get_encodings() 1063 defaultCharRow = enc->firstRow; in pcf_get_encodings() 1078 2 * ( ( defaultCharRow - enc->firstRow ) * in pcf_get_encodings() [all...] |
H A D | pcfdrivr.c | 114 charcode < (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ) ) in FT_CALLBACK_DEF() 124 return (FT_UInt)enc->offset[( charcodeRow - enc->firstRow ) * in FT_CALLBACK_DEF() 146 if ( charcode < (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ) ) in FT_CALLBACK_DEF() 147 charcode = (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ); in FT_CALLBACK_DEF() 162 result = (FT_UInt)enc->offset[( charcodeRow - enc->firstRow ) * in FT_CALLBACK_DEF()
|
H A D | pcf.h | 111 FT_UShort firstRow; member
|
/third_party/mesa3d/src/mesa/program/ |
H A D | prog_statevars.c | 49 copy_matrix(float *value, const float *m, unsigned firstRow, unsigned lastRow) in copy_matrix() argument 53 assert(firstRow < 4); in copy_matrix() 56 for (i = 0, row = firstRow; row <= lastRow; row++) { in copy_matrix() 65 copy_matrix_transposed(float *value, const float *m, unsigned firstRow, unsigned lastRow) in copy_matrix_transposed() argument 67 assert(firstRow < 4); in copy_matrix_transposed() 70 memcpy(value, &m[firstRow * 4], in copy_matrix_transposed() 71 (lastRow - firstRow + 1) * 4 * sizeof(GLfloat)); in copy_matrix_transposed() 1296 const GLuint firstRow = (GLuint) state[2]; in _mesa_program_state_string() local 1302 if (firstRow == lastRow) in _mesa_program_state_string() 1303 sprintf(tmp, "row[%d]", firstRow); in _mesa_program_state_string() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | SpirvShaderArithmetic.cpp | 252 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()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | RBBITableBuilder.java | 999 short[] firstRow = fSafeTable.get(states.first); in findDuplicateSafeState() 1003 int numCols = firstRow.length; in findDuplicateSafeState() 1005 int firstVal = firstRow[col]; in findDuplicateSafeState()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | RBBITableBuilder.java | 988 short[] firstRow = fSafeTable.get(states.first); in findDuplicateSafeState() 992 int numCols = firstRow.length; in findDuplicateSafeState() 994 int firstVal = firstRow[col]; in findDuplicateSafeState()
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |