HomeSort by relevance Sort by last modified time
    Searched refs:readUInt32 (Results 1 - 19 of 19) sorted by null

  /external/icu4c/common/
rbbidata.cpp 324 if (ds->readUInt32(rbbiDH->fMagic) != 0xb1a0 ||
326 ds->readUInt32(rbbiDH->fLength) < sizeof(RBBIDataHeader))
336 int32_t breakDataLength = ds->readUInt32(rbbiDH->fLength);
380 tableStartOffset = ds->readUInt32(rbbiDH->fFTable);
381 tableLength = ds->readUInt32(rbbiDH->fFTableLen);
391 tableStartOffset = ds->readUInt32(rbbiDH->fRTable);
392 tableLength = ds->readUInt32(rbbiDH->fRTableLen);
402 tableStartOffset = ds->readUInt32(rbbiDH->fSFTable);
403 tableLength = ds->readUInt32(rbbiDH->fSFTableLen);
413 tableStartOffset = ds->readUInt32(rbbiDH->fSRTable)
    [all...]
ucol_swp.cpp 56 trie.signature=ds->readUInt32(inTrie->signature);
57 trie.options=ds->readUInt32(inTrie->options);
133 header.magic=ds->readUInt32(inHeader->magic);
194 header.magic=ds->readUInt32(inHeader->magic);
223 header.options= ds->readUInt32(inHeader->options);
224 header.UCAConsts= ds->readUInt32(inHeader->UCAConsts);
225 header.contractionUCACombos= ds->readUInt32(inHeader->contractionUCACombos);
226 header.mappingPosition= ds->readUInt32(inHeader->mappingPosition);
227 header.expansion= ds->readUInt32(inHeader->expansion);
228 header.contractionIndex= ds->readUInt32(inHeader->contractionIndex)
    [all...]
ucnv_bld.c     [all...]
udataswp.h 164 UDataReadUInt32 *readUInt32;
udataswp.c 173 return (int32_t)ds->readUInt32((uint32_t)x);
340 swapper->readUInt32= inIsBigEndian==U_IS_BIG_ENDIAN ? uprv_readDirectUInt32 : uprv_readSwapUInt32;
unames.c     [all...]
triedict.cpp     [all...]
uresdata.c 802 item=ds->readUInt32(p[i]);
922 item=ds->readUInt32(p[i]);
1006 rootRes=ds->readUInt32(*inBundle);
    [all...]
ucnv_io.c     [all...]
utrie2.cpp 422 trie.signature=ds->readUInt32(inTrie->signature);
  /external/webkit/Source/WebCore/platform/graphics/
WOFFFileFormat.cpp 68 static bool readUInt32(SharedBuffer* buffer, size_t& offset, uint32_t& value)
111 return readUInt32(buffer, offset, signature) && signature == woffSignature;
122 if (!readUInt32(woff, offset, signature) || signature != woffSignature) {
128 if (!readUInt32(woff, offset, flavor))
132 if (!readUInt32(woff, offset, length) || length != woff->size())
147 if (!readUInt32(woff, offset, totalSfntSize))
195 if (!readUInt32(woff, offset, tableTag))
199 if (!readUInt32(woff, offset, tableOffset))
203 if (!readUInt32(woff, offset, tableCompLength))
210 if (!readUInt32(woff, offset, tableOrigLength) || tableCompLength > tableOrigLength
    [all...]
  /external/icu4c/i18n/
uspoof_impl.cpp 874 if (ds->readUInt32(spoofDH->fMagic) != USPOOF_MAGIC ||
875 ds->readUInt32(spoofDH->fLength) < sizeof(SpoofDataHeader))
885 int32_t spoofDataLength = ds->readUInt32(spoofDH->fLength);
923 sectionStart = ds->readUInt32(spoofDH->fCFUKeys);
924 sectionLength = ds->readUInt32(spoofDH->fCFUKeysSize) * 4;
928 sectionStart = ds->readUInt32(spoofDH->fCFUStringIndex);
929 sectionLength = ds->readUInt32(spoofDH->fCFUStringIndexSize) * 2;
933 sectionStart = ds->readUInt32(spoofDH->fCFUStringTable);
934 sectionLength = ds->readUInt32(spoofDH->fCFUStringTableLen) * 2;
938 sectionStart = ds->readUInt32(spoofDH->fCFUStringLengths)
    [all...]
  /external/icu4c/tools/icuswap/
icuswap.cpp 413 itemCount=ds->readUInt32(*(const uint32_t *)inBytes);
420 offset=ds->readUInt32(inEntries[itemCount-1].dataOffset);
436 itemCount=ds->readUInt32(*(const uint32_t *)inBytes);
444 offset=20+ds->readUInt32(inEntries[itemCount-1].dataOffset);
466 itemLength=(int32_t)(ds->readUInt32(inEntries[0].dataOffset)-offset);
491 entryName=(char *)inBytes+ds->readUInt32(inEntries[i].nameOffset);
546 table[i].nameOffset=ds->readUInt32(inEntries[i].nameOffset);
547 table[i].inOffset=ds->readUInt32(inEntries[i].dataOffset);
  /external/icu4c/tools/toolutil/
pkgitems.cpp 469 (uint32_t)length<(staticDataSize=ds->readUInt32(inStaticData->structSize))
497 ((mbcsHeaderOptions=ds->readUInt32(inMBCSHeader->options))&
508 mbcsHeaderFlags=ds->readUInt32(inMBCSHeader->flags);
package.cpp 516 offset=20+(int32_t)ds->readUInt32(inEntries[itemCount-1].dataOffset);
538 itemLength=(int32_t)(ds->readUInt32(inEntries[0].dataOffset))-stringsOffset;
572 offset=(int32_t)ds->readUInt32(inEntries[0].nameOffset)-stringsOffset;
592 offset=(int32_t)ds->readUInt32(inEntries[i].nameOffset)-stringsOffset;
602 items[i].data=(uint8_t *)inBytes+ds->readUInt32(inEntries[i].dataOffset);
617 items[itemCount-1].length=length-ds->readUInt32(inEntries[itemCount-1].dataOffset);
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 279 public int readUInt32() throws IOException {
AbstractMessage.java 463 typeId = input.readUInt32();
FieldSet.java 445 case UINT32 : return input.readUInt32 ();
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 253 public int readUInt32() throws IOException {

Completed in 480 milliseconds