Lines Matching refs:dataLength

74     tempTrie.dataLength =  in ucptrie_openFromBinary()
75 ((options & UCPTRIE_OPTIONS_DATA_LENGTH_MASK) << 4) | header->dataLength; in ucptrie_openFromBinary()
88 actualLength += tempTrie.dataLength * 2; in ucptrie_openFromBinary()
90 actualLength += tempTrie.dataLength * 4; in ucptrie_openFromBinary()
92 actualLength += tempTrie.dataLength; in ucptrie_openFromBinary()
117 if (nullValueOffset >= trie->dataLength) { in ucptrie_openFromBinary()
118 nullValueOffset = trie->dataLength - UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET; in ucptrie_openFromBinary()
192 return trie->dataLength - UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET; in ucptrie_internalSmallU8Index()
268 int32_t di = trie->dataLength - UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET; in getRange()
402 int32_t di = trie->dataLength - UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET; in getRange()
490 length += trie->dataLength * 2; in ucptrie_toBinary()
493 length += trie->dataLength * 4; in ucptrie_toBinary()
496 length += trie->dataLength; in ucptrie_toBinary()
511 ((trie->dataLength & 0xf0000) >> 4) | in ucptrie_toBinary()
516 header->dataLength = (uint16_t)trie->dataLength; in ucptrie_toBinary()
527 uprv_memcpy(bytes, trie->data.ptr16, trie->dataLength * 2); in ucptrie_toBinary()
530 uprv_memcpy(bytes, trie->data.ptr32, trie->dataLength * 4); in ucptrie_toBinary()
533 uprv_memcpy(bytes, trie->data.ptr8, trie->dataLength); in ucptrie_toBinary()
547 int32_t length=trie->dataLength; in countNull()
575 long dataLength=(long)trie->dataLength; in ucptrie_printLengths() local
577 dataLength*(trie->valueWidth==UCPTRIE_VALUE_BITS_16 ? 2 : in ucptrie_printLengths()
580 which, trie->name, indexLength, dataLength, countNull(trie), totalLength); in ucptrie_printLengths()