HomeSort by relevance Sort by last modified time
    Searched defs:indexLength (Results 1 - 25 of 26) sorted by null

1 2

  /external/icu/icu4c/source/common/
utrie2_impl.h 62 uint16_t indexLength;
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.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...]
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.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...]
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...]
uresdata.cpp 185 int32_t indexLength=indexes[URES_INDEX_LENGTH]&0xff;
186 if(indexLength<=URES_INDEX_MAX_TABLE_LENGTH) {
192 (length<((1+indexLength)<<2) ||
199 if(indexes[URES_INDEX_KEYS_TOP]>(1+indexLength)) {
203 // In formatVersion 1, the indexLength took up this whole int.
209 if(indexLength>URES_INDEX_ATTRIBUTES) {
217 if((pResData->isPoolBundle || pResData->usesPoolBundle) && indexLength<=URES_INDEX_POOL_CHECKSUM) {
222 if( indexLength>URES_INDEX_16BIT_TOP &&
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
IntTrieBuilder.java 241 // fold and compact if necessary, also checks that indexLength is
301 // fold and compact if necessary, also checks that indexLength is
327 // int32_t indexLength
358 /* write 16-bit index values shifted right by UTRIE_INDEX_SHIFT, after adding indexLength */
712 int indexLength = BMP_INDEX_LENGTH_;
719 block = findSameIndexBlock(index, indexLength, c >> SHIFT_);
734 if (block == indexLength) {
737 System.arraycopy(index, c >> SHIFT_, index, indexLength,
739 indexLength += SURROGATE_BLOCK_COUNT_;
757 if (indexLength >= MAX_INDEX_LENGTH_)
    [all...]
Trie2Writable.java 340 this.indexLength = tempTrie.indexLength;
    [all...]
Trie2.java 80 // uint16_t indexLength;
116 header.indexLength = bytes.getChar();
139 This.indexLength = header.indexLength;
146 This.highValueIndex += This.indexLength;
152 int indexArraySize = This.indexLength;
164 This.data16 = This.indexLength;
469 dos.writeShort(header.indexLength);
478 for (i=0; i< header.indexLength; i++) {
481 bytesWritten += header.indexLength;
    [all...]
ICUResourceBundleReader.java 256 int indexLength = indexes0 & 0xff;
257 if(indexLength <= URES_INDEX_MAX_TABLE_LENGTH) {
261 if(dataLength < ((1 + indexLength) << 2) ||
268 // In formatVersion 1, the indexLength took up this whole int.
274 if(indexLength > URES_INDEX_ATTRIBUTES) {
285 int keysBottom = 1 + indexLength;
305 if(indexLength > URES_INDEX_16BIT_TOP) {
320 if(indexLength > URES_INDEX_POOL_CHECKSUM) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
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...]
Trie2Writable.java 338 this.indexLength = tempTrie.indexLength;
    [all...]
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;
162 This.data16 = This.indexLength;
467 dos.writeShort(header.indexLength);
476 for (i=0; i< header.indexLength; i++) {
479 bytesWritten += header.indexLength;
    [all...]
ICUResourceBundleReader.java 254 int indexLength = indexes0 & 0xff;
255 if(indexLength <= URES_INDEX_MAX_TABLE_LENGTH) {
259 if(dataLength < ((1 + indexLength) << 2) ||
266 // In formatVersion 1, the indexLength took up this whole int.
272 if(indexLength > URES_INDEX_ATTRIBUTES) {
283 int keysBottom = 1 + indexLength;
303 if(indexLength > URES_INDEX_16BIT_TOP) {
318 if(indexLength > URES_INDEX_POOL_CHECKSUM) {
    [all...]
  /external/icu/icu4c/source/tools/genrb/
genrb.cpp 315 int32_t indexLength;
384 indexLength = poolBundle.fIndexes[URES_INDEX_LENGTH] & 0xff;
385 if (indexLength <= URES_INDEX_POOL_CHECKSUM) {
389 int32_t keysBottom = 1 + indexLength;
  /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 
  /packages/apps/TV/usbtuner/libs/
exoplayer_1.5.6.jar 
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.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 321 milliseconds

1 2