HomeSort by relevance Sort by last modified time
    Searched defs:infoSize (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/icu/source/common/
udataswp.c 239 uint16_t headerSize, infoSize;
263 infoSize=ds->readUInt16(pHeader->info.size);
266 infoSize<sizeof(UDataInfo) ||
267 headerSize<(sizeof(pHeader->dataHeader)+infoSize) ||
270 udata_printError(ds, "udata_swapDataHeader(): header size mismatch - headerSize %d infoSize %d length %d\n",
271 headerSize, infoSize, length);
297 infoSize+=sizeof(pHeader->dataHeader);
298 s=(const char *)inData+infoSize;
299 maxLength=headerSize-infoSize;
303 ds->swapInvChars(ds, s, length, (char *)outData+infoSize, pErrorCode)
    [all...]
  /external/icu/icu4c/source/common/
udataswp.c 288 uint16_t headerSize, infoSize;
312 infoSize=ds->readUInt16(pHeader->info.size);
315 infoSize<sizeof(UDataInfo) ||
316 headerSize<(sizeof(pHeader->dataHeader)+infoSize) ||
319 udata_printError(ds, "udata_swapDataHeader(): header size mismatch - headerSize %d infoSize %d length %d\n",
320 headerSize, infoSize, length);
346 infoSize+=sizeof(pHeader->dataHeader);
347 s=(const char *)inData+infoSize;
348 maxLength=headerSize-infoSize;
352 ds->swapInvChars(ds, s, length, (char *)outData+infoSize, pErrorCode)
    [all...]
  /external/chromium_org/third_party/skia/src/images/
bmpdecoderhelper.cpp 37 int infoSize = GetInt();
38 if (infoSize != kBmpOS2InfoSize && infoSize < kBmpInfoSize) {
44 if (infoSize >= kBmpInfoSize) {

Completed in 260 milliseconds