Home | History | Annotate | Download | only in common

Lines Matching defs:dataLength

160     newTrie->dataLength=UNEWTRIE2_DATA_START_OFFSET;
257 uprv_memcpy(trie->data, other->data, other->dataLength*4);
259 trie->dataLength=other->dataLength;
265 uprv_memcpy(trie->map, other->map, (other->dataLength>>UTRIE2_SHIFT_2)*4);
349 long dataLength=(long)trie->dataLength;
350 long totalLength=(long)sizeof(UTrieHeader)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
352 indexLength, dataLength, totalLength);
358 long dataLength=(long)trie->dataLength;
359 long totalLength=(long)sizeof(UTrie2Header)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
361 which, indexLength, dataLength, totalLength);
522 newBlock=trie->dataLength;
545 uprv_memcpy(data, trie->data, trie->dataLength*4);
550 trie->dataLength=newTop;
880 findSameDataBlock(const uint32_t *data, int32_t dataLength, int32_t otherBlock, int32_t blockLength) {
883 /* ensure that we do not even partially get past dataLength */
884 dataLength-=blockLength;
886 for(block=0; block<=dataLength; block+=UTRIE2_DATA_GRANULARITY) {
1002 for(start=newStart; start<trie->dataLength;) {
1077 /* ensure dataLength alignment */
1085 (long)trie->dataLength, (long)newStart);
1088 trie->dataLength=newStart;
1220 * Store the highValue in the data array and round up the dataLength.
1221 * Must be done after compactData() because that assumes that dataLength
1224 newTrie->data[newTrie->dataLength++]=highValue;
1225 while((newTrie->dataLength&(UTRIE2_DATA_GRANULARITY-1))!=0) {
1226 newTrie->data[newTrie->dataLength++]=trie->initialValue;
1302 /* are indexLength and dataLength within limits? */
1310 (dataMove+newTrie->dataLength)>UTRIE2_MAX_DATA_LENGTH
1319 length+=newTrie->dataLength*2;
1321 length+=newTrie->dataLength*4;
1333 trie->dataLength=newTrie->dataLength;
1340 trie->highValueIndex=dataMove+trie->dataLength-UTRIE2_DATA_GRANULARITY;
1349 header->shiftedDataLength=(uint16_t)(trie->dataLength>>UTRIE2_INDEX_SHIFT);
1399 for(i=newTrie->dataLength; i>0; --i) {
1407 uprv_memcpy(dest16, newTrie->data, newTrie->dataLength*4);