HomeSort by relevance Sort by last modified time
    Searched refs:indexes (Results 1 - 25 of 321) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smali/util/src/main/java/org/jf/util/
BitSetUtils.java 37 public static BitSet bitSetOfIndexes(int... indexes) {
39 for (int index: indexes) {
  /external/icu/icu4c/source/tools/toolutil/
collationinfo.h 30 static void printSizes(int32_t sizeWithHeader, const int32_t indexes[]);
36 static int32_t getDataLength(const int32_t indexes[], int32_t startIndex);
collationinfo.cpp 30 CollationInfo::printSizes(int32_t sizeWithHeader, const int32_t indexes[]) {
31 int32_t totalSize = indexes[CollationDataReader::IX_TOTAL_SIZE];
36 int32_t length = indexes[CollationDataReader::IX_INDEXES_LENGTH];
37 printf(" indexes: %6ld *4 = %6ld\n", (long)length, (long)length * 4);
39 length = getDataLength(indexes, CollationDataReader::IX_REORDER_CODES_OFFSET);
44 length = getDataLength(indexes, CollationDataReader::IX_REORDER_TABLE_OFFSET);
50 length = getDataLength(indexes, CollationDataReader::IX_TRIE_OFFSET);
55 length = getDataLength(indexes, CollationDataReader::IX_RESERVED8_OFFSET);
60 length = getDataLength(indexes, CollationDataReader::IX_CES_OFFSET);
65 length = getDataLength(indexes, CollationDataReader::IX_RESERVED10_OFFSET)
    [all...]
swapimpl.cpp 108 // formatVersion 2 initially has indexes[8], 32 bytes.
131 // Swap the indexes[] and the valueMaps[].
195 /* the properties file must contain at least the indexes array */
203 /* read the indexes */
211 * indexes[] constants are in uprops.h
238 /* swap the indexes[16] */
318 int32_t indexes[16]; local
363 /* read the first 16 indexes (ICU 3.2/format version 1: UCASE_IX_TOP==16, might grow) */
365 indexes[i]=udata_readInt32(ds, inIndexes[i]);
369 size=indexes[UCASE_IX_LENGTH]
420 int32_t indexes[16]; local
530 int32_t indexes[32]; local
    [all...]
  /external/icu/icu4c/source/i18n/
collationdatawriter.h 34 int32_t indexes[], uint8_t *dest, int32_t capacity,
38 int32_t indexes[], uint8_t *dest, int32_t capacity,
47 int32_t indexes[], uint8_t *dest, int32_t capacity,
50 static void copyData(const int32_t indexes[], int32_t startIndex,
collationdatawriter.cpp 57 int32_t indexes[CollationDataReader::IX_TOTAL_SIZE + 1]; local
59 *tailoring, *settings, indexes, dest, capacity,
80 int32_t indexes[], uint8_t *dest, int32_t capacity,
85 indexes, dest, capacity, errorCode);
90 int32_t indexes[], uint8_t *dest, int32_t capacity,
95 indexes, dest, capacity, errorCode);
102 int32_t indexes[], uint8_t *dest, int32_t capacity,
111 // the indexes length and writing offsets.
113 // so the indexes length must be at least index-of-start-offset + 2.
128 // For the root collator, we write an even number of indexes
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UBiDiProps.java 50 // read indexes[]
54 throw new IOException("indexes[0] too small in "+DATA_FILE_NAME);
56 indexes=new int[count];
58 indexes[0]=count;
60 indexes[i]=bytes.getInt();
65 int expectedTrieLength=indexes[IX_TRIE_SIZE];
74 count=indexes[IX_MIRROR_LENGTH];
80 count=indexes[IX_JG_LIMIT]-indexes[IX_JG_START];
85 count=indexes[IX_JG_LIMIT2]-indexes[IX_JG_START2]
258 private int indexes[]; field in class:UBiDiProps
    [all...]
StringPrepDataReader.java 59 int[] indexes = new int[length]; local
60 //Read the indexes
62 indexes[i] = byteBuffer.getInt();
64 return indexes;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UBiDiProps.java 46 // read indexes[]
50 throw new IOException("indexes[0] too small in "+DATA_FILE_NAME);
52 indexes=new int[count];
54 indexes[0]=count;
56 indexes[i]=bytes.getInt();
61 int expectedTrieLength=indexes[IX_TRIE_SIZE];
70 count=indexes[IX_MIRROR_LENGTH];
76 count=indexes[IX_JG_LIMIT]-indexes[IX_JG_START];
81 count=indexes[IX_JG_LIMIT2]-indexes[IX_JG_START2]
254 private int indexes[]; field in class:UBiDiProps
    [all...]
StringPrepDataReader.java 57 int[] indexes = new int[length]; local
58 //Read the indexes
60 indexes[i] = byteBuffer.getInt();
62 return indexes;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DictionaryData.java 53 int[] indexes = new int[IX_COUNT]; local
54 // TODO: read indexes[IX_STRING_TRIE_OFFSET] first, then read a variable-length indexes[]
56 indexes[i] = bytes.getInt();
58 int offset = indexes[IX_STRING_TRIE_OFFSET];
64 int trieType = indexes[IX_TRIE_TYPE] & TRIE_TYPE_MASK;
65 int totalSize = indexes[IX_TOTAL_SIZE] - offset;
68 int transform = indexes[IX_TRANSFORM];
StringPrep.java 197 /* indexes[] value names */
211 // Indexes read from the data file
212 private int[] indexes; field in class:StringPrep
263 // read the indexes
264 indexes = reader.readIndexes(INDEX_TOP);
268 //indexes[INDEX_MAPPING_DATA_SIZE] store the size of mappingData in bytes
270 mappingData = reader.read(indexes[INDEX_MAPPING_DATA_SIZE]/2);
273 doNFKC = ((indexes[OPTIONS] & NORMALIZATION_ON) > 0);
274 checkBiDi = ((indexes[OPTIONS] & CHECK_BIDI_ON) > 0);
276 normCorrVer = getVersionInfo(indexes[NORM_CORRECTNS_LAST_UNI_VERSION])
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DictionaryData.java 52 int[] indexes = new int[IX_COUNT]; local
53 // TODO: read indexes[IX_STRING_TRIE_OFFSET] first, then read a variable-length indexes[]
55 indexes[i] = bytes.getInt();
57 int offset = indexes[IX_STRING_TRIE_OFFSET];
63 int trieType = indexes[IX_TRIE_TYPE] & TRIE_TYPE_MASK;
64 int totalSize = indexes[IX_TOTAL_SIZE] - offset;
67 int transform = indexes[IX_TRANSFORM];
StringPrep.java 212 /* indexes[] value names */
226 // Indexes read from the data file
227 private int[] indexes; field in class:StringPrep
279 // read the indexes
280 indexes = reader.readIndexes(INDEX_TOP);
284 //indexes[INDEX_MAPPING_DATA_SIZE] store the size of mappingData in bytes
286 mappingData = reader.read(indexes[INDEX_MAPPING_DATA_SIZE]/2);
289 doNFKC = ((indexes[OPTIONS] & NORMALIZATION_ON) > 0);
290 checkBiDi = ((indexes[OPTIONS] & CHECK_BIDI_ON) > 0);
292 normCorrVer = getVersionInfo(indexes[NORM_CORRECTNS_LAST_UNI_VERSION])
    [all...]
  /development/tools/idegen/src/com/android/idegen/
ModuleCache.java 36 ModuleIndexes indexes; field in class:ModuleCache
50 indexes = new ModuleIndexes(indexFile);
51 indexes.build();
71 Preconditions.checkState(indexes != null, "You must call init() first.");
74 String makeFile = indexes.getMakeFile(moduleName);
  /external/icu/icu4c/source/common/
ubidi_props.c 34 const int32_t *indexes; member in struct:UBiDiProps
80 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH];
87 start=bdp->indexes[UBIDI_IX_JG_START];
88 limit=bdp->indexes[UBIDI_IX_JG_LIMIT];
104 if(limit==bdp->indexes[UBIDI_IX_JG_LIMIT]) {
106 start=bdp->indexes[UBIDI_IX_JG_START2];
107 limit=bdp->indexes[UBIDI_IX_JG_LIMIT2];
129 max=bdp->indexes[UBIDI_MAX_VALUES_INDEX];
169 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH];
216 start=bdp->indexes[UBIDI_IX_JG_START]
    [all...]
ucol_swp.cpp 388 int32_t indexes[IX_TOTAL_SIZE+1]; local
399 int32_t indexesLength=indexes[0]=udata_readInt32(ds, inIndexes[0]);
409 indexes[i]=udata_readInt32(ds, inIndexes[i]);
412 indexes[i]=-1;
414 inIndexes=NULL; // Make sure we do not accidentally use these instead of indexes[].
419 size=indexes[IX_TOTAL_SIZE];
421 size=indexes[indexesLength-1];
440 // Swap the int32_t indexes[].
444 // Here we use indexes[] not inIndexes[] because
446 int32_t index; // one of the indexes[] slot
    [all...]
dictionarydata.cpp 169 int32_t indexes[DictionaryData::IX_COUNT]; local
192 if (length < (int32_t)(sizeof(indexes))) {
200 indexes[i] = udata_readInt32(ds, inIndexes[i]);
203 size = indexes[DictionaryData::IX_TOTAL_SIZE];
217 ds->swapArray32(ds, inBytes, sizeof(indexes), outBytes, pErrorCode);
218 offset = (int32_t)sizeof(indexes);
219 int32_t trieType = indexes[DictionaryData::IX_TRIE_TYPE] & DictionaryData::TRIE_TYPE_MASK;
220 int32_t nextOffset = indexes[DictionaryData::IX_RESERVED1_OFFSET];
235 nextOffset = indexes[DictionaryData::IX_RESERVED2_OFFSET];
237 nextOffset = indexes[DictionaryData::IX_TOTAL_SIZE]
    [all...]
usprep.cpp 264 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes));
271 profile->mappingData=(uint16_t *)((uint8_t *)(p+_SPREP_INDEX_TOP)+profile->indexes[_SPREP_INDEX_TRIE_SIZE]);
278 normCorrVer = profile->indexes[_SPREP_NORM_CORRECTNS_LAST_UNI_VERSION];
286 ((profile->indexes[_SPREP_OPTIONS] & _SPREP_NORMALIZATION_ON) > 0) /* normalization turned on*/
347 newProfile->doNFKC = (UBool)((newProfile->indexes[_SPREP_OPTIONS] & _SPREP_NORMALIZATION_ON) > 0);
348 newProfile->checkBiDi = (UBool)((newProfile->indexes[_SPREP_OPTIONS] & _SPREP_CHECK_BIDI_ON) > 0);
524 const int32_t* indexes = profile->indexes; local
553 if(index >= indexes[_SPREP_ONE_UCHAR_MAPPING_INDEX_START] &
787 int32_t indexes[16]; local
    [all...]
  /external/ImageMagick/www/source/core/
sigmoidal-contrast.c 17 *indexes; local
34 indexes=GetImageViewAuthenticIndexes(contrast_view);
35 if (indexes != (IndexPacket *) NULL)
37 indexes[x]=(IndexPacket) RoundToQuantum(SigmoidalContrast(indexes[x]));
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 181 memset(indexes, 0, sizeof(indexes));
    [all...]
  /external/mesa3d/src/mesa/main/
pixeltransfer.c 104 * Map color indexes to float rgba values.
196 GLuint n, GLuint indexes[])
203 indexes[i] = (indexes[i] << shift) + offset;
209 indexes[i] = (indexes[i] >> shift) + offset;
214 indexes[i] = indexes[i] + offset;
223 * of color indexes;
228 GLuint n, GLuint indexes[])
    [all...]
pixeltransfer.h 62 GLuint n, GLuint indexes[]);
67 GLuint n, GLuint indexes[]);
  /external/boringssl/src/crypto/bn/
ctx.c 97 /* Array of indexes into the bignum stack */
98 unsigned int *indexes; member in struct:bignum_ctx_stack
205 st->indexes = NULL;
210 OPENSSL_free(st->indexes);
223 OPENSSL_memcpy(newitems, st->indexes, st->depth * sizeof(unsigned int));
225 OPENSSL_free(st->indexes);
226 st->indexes = newitems;
230 st->indexes[(st->depth)++] = idx;
235 return st->indexes[--(st->depth)];
  /external/icu/icu4c/source/test/cintltst/
sprpdata.c 156 int32_t* indexes = data->indexes; local
175 if(idx >= indexes[_SPREP_ONE_UCHAR_MAPPING_INDEX_START] &&
176 idx < indexes[_SPREP_TWO_UCHARS_MAPPING_INDEX_START]){
178 }else if(idx >= indexes[_SPREP_TWO_UCHARS_MAPPING_INDEX_START] &&
179 idx < indexes[_SPREP_THREE_UCHARS_MAPPING_INDEX_START]){
181 }else if(idx >= indexes[_SPREP_THREE_UCHARS_MAPPING_INDEX_START] &&
182 idx < indexes[_SPREP_FOUR_UCHARS_MAPPING_INDEX_START]){

Completed in 829 milliseconds

1 2 3 4 5 6 7 8 91011>>