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

  /external/icu/icu4c/source/common/
utrie.cpp 106 trie->indexLength=UTRIE_MAX_INDEX_LENGTH;
375 _findSameIndexBlock(const int32_t *idx, int32_t indexLength,
379 for(block=UTRIE_BMP_INDEX_LENGTH; block<indexLength; block+=UTRIE_SURROGATE_BLOCK_COUNT) {
389 return indexLength;
408 int32_t indexLength, block;
452 indexLength=UTRIE_BMP_INDEX_LENGTH;
466 block=_findSameIndexBlock(idx, indexLength, c>>UTRIE_SHIFT);
482 if(block==indexLength) {
484 uprv_memmove(idx+indexLength,
487 indexLength+=UTRIE_SURROGATE_BLOCK_COUNT
    [all...]
utrie2.cpp 91 trie->data32==NULL ? trie->indexLength : 0,
170 tempTrie.indexLength=header->indexLength;
178 tempTrie.highValueIndex+=tempTrie.indexLength;
182 actualLength=(int32_t)sizeof(UTrie2Header)+tempTrie.indexLength*2;
207 p16+=trie->indexLength;
242 int32_t indexLength, dataLength, length, i;
255 indexLength=UTRIE2_INDEX_1_OFFSET;
257 length=(int32_t)sizeof(UTrie2Header)+indexLength*2;
282 dataMove=indexLength;
    [all...]
utrie2_impl.h 62 uint16_t indexLength;
ucol_swp.cpp 59 trie.indexLength=udata_readInt32(ds, inTrie->indexLength);
65 trie.indexLength<UTRIE_BMP_INDEX_LENGTH ||
66 (trie.indexLength&(UTRIE_SURROGATE_BLOCK_COUNT-1))!=0 ||
76 size=sizeof(UTrieHeader)+trie.indexLength*2+trie.dataLength*(dataIs32?4:2);
93 ds->swapArray16(ds, inTrie+1, trie.indexLength*2, outTrie+1, pErrorCode);
94 ds->swapArray32(ds, (const uint16_t *)(inTrie+1)+trie.indexLength, trie.dataLength*4,
95 (uint16_t *)(outTrie+1)+trie.indexLength, pErrorCode);
97 ds->swapArray16(ds, inTrie+1, (trie.indexLength+trie.dataLength)*2, outTrie+1, pErrorCode);
uresdata.c 184 int32_t indexLength=indexes[URES_INDEX_LENGTH]&0xff;
185 if(indexLength<=URES_INDEX_MAX_TABLE_LENGTH) {
191 (length<((1+indexLength)<<2) ||
198 if(indexes[URES_INDEX_KEYS_TOP]>(1+indexLength)) {
201 if(indexLength>URES_INDEX_ATTRIBUTES) {
207 if((pResData->isPoolBundle || pResData->usesPoolBundle) && indexLength<=URES_INDEX_POOL_CHECKSUM) {
212 if( indexLength>URES_INDEX_16BIT_TOP &&
978 int32_t bundleLength, indexLength, keysBottom, keysTop, resBottom, top;
    [all...]
utrie.h 146 * pointer, with each index item increased by indexLength;
167 int32_t indexLength, dataLength;
272 #define UTRIE_GET16_LATIN1(trie) ((trie)->index+(trie)->indexLength+UTRIE_DATA_BLOCK_LENGTH)
561 int32_t indexLength, dataCapacity, dataLength;
748 * uint16_t index[header.indexLength];
765 /** indexLength is a multiple of UTRIE_SURROGATE_BLOCK_COUNT */
766 int32_t indexLength;
utrie2_builder.cpp 346 long indexLength=trie->indexLength;
348 long totalLength=(long)sizeof(UTrieHeader)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
350 indexLength, dataLength, totalLength);
355 long indexLength=trie->indexLength;
357 long totalLength=(long)sizeof(UTrie2Header)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
359 which, indexLength, dataLength, totalLength);
    [all...]
utrie2.h 390 #define UTRIE2_GET16(trie, c) _UTRIE2_GET((trie), index, (trie)->indexLength, (c))
678 * pointer, with each index item increased by indexLength;
689 int32_t indexLength, dataLength;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TrieBuilder.java 235 * @param indexLength size of index
239 protected static final int findSameIndexBlock(int index[], int indexLength,
242 for (int block = BMP_INDEX_LENGTH_; block < indexLength;
248 return indexLength;
Trie2.java 78 // uint16_t indexLength;
114 header.indexLength = bytes.getChar();
137 This.indexLength = header.indexLength;
144 This.highValueIndex += This.indexLength;
150 int indexArraySize = This.indexLength;
158 for (i=0; i<This.indexLength; i++) {
166 This.data16 = This.indexLength;
477 dos.writeShort(header.indexLength);
486 for (i=0; i< header.indexLength; i++)
    [all...]
IntTrieBuilder.java 239 // fold and compact if necessary, also checks that indexLength is
299 // fold and compact if necessary, also checks that indexLength is
325 // int32_t indexLength
356 /* write 16-bit index values shifted right by UTRIE_INDEX_SHIFT, after adding indexLength */
710 int indexLength = BMP_INDEX_LENGTH_;
717 block = findSameIndexBlock(index, indexLength, c >> SHIFT_);
732 if (block == indexLength) {
735 System.arraycopy(index, c >> SHIFT_, index, indexLength,
737 indexLength += SURROGATE_BLOCK_COUNT_;
755 if (indexLength >= MAX_INDEX_LENGTH_)
    [all...]
ICUResourceBundleReader.java 407 int indexLength = indexes0 & 0xff;
408 if(indexLength <= URES_INDEX_MAX_TABLE_LENGTH) {
412 if(dataLength < ((1 + indexLength) << 2) ||
418 if(indexLength > URES_INDEX_ATTRIBUTES) {
428 if(indexLength > URES_INDEX_16BIT_TOP) {
444 if(indexLength > URES_INDEX_POOL_CHECKSUM) {
451 if(getIndexesInt(URES_INDEX_KEYS_TOP) > (1 + indexLength)) {
457 bytes.position((1 + indexLength) << 2);
    [all...]
Trie2Writable.java 338 this.indexLength = tempTrie.indexLength;
    [all...]
Trie2_16.java 167 return 16+(header.indexLength+dataLength)*2;
Trie2_32.java 164 return 16+header.indexLength*2+dataLength*4;
  /external/icu/icu4c/source/tools/toolutil/
writesrc.c 168 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength+pTrie->dataLength, postfix);
171 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength, postfix);
194 (long)pTrie->indexLength);
207 " %ld,\n" /* indexLength */
216 (long)pTrie->indexLength, (long)pTrie->dataLength,
  /external/icu/icu4c/source/tools/genrb/
genrb.c 311 int32_t indexLength;
379 indexLength = poolBundle.fIndexes[URES_INDEX_LENGTH] & 0xff;
380 if (indexLength <= URES_INDEX_POOL_CHECKSUM) {
384 keysBottom = (1 + indexLength) * 4;
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/1.3/
haha-1.3.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 823 milliseconds