Searched refs:indexes (Results 1 - 25 of 126) sorted by relevance

123456

/external/smali/util/src/main/java/org/jf/util/
H A DBitSetUtils.java37 public static BitSet bitSetOfIndexes(int... indexes) { argument
39 for (int index: indexes) {
/external/icu/icu4c/source/tools/toolutil/
H A Dcollationinfo.h28 static void printSizes(int32_t sizeWithHeader, const int32_t indexes[]);
34 static int32_t getDataLength(const int32_t indexes[], int32_t startIndex);
H A Dcollationinfo.cpp28 CollationInfo::printSizes(int32_t sizeWithHeader, const int32_t indexes[]) { argument
29 int32_t totalSize = indexes[CollationDataReader::IX_TOTAL_SIZE];
34 int32_t length = indexes[CollationDataReader::IX_INDEXES_LENGTH];
35 printf(" indexes: %6ld *4 = %6ld\n", (long)length, (long)length * 4);
37 length = getDataLength(indexes, CollationDataReader::IX_REORDER_CODES_OFFSET);
42 length = getDataLength(indexes, CollationDataReader::IX_REORDER_TABLE_OFFSET);
48 length = getDataLength(indexes, CollationDataReader::IX_TRIE_OFFSET);
53 length = getDataLength(indexes, CollationDataReader::IX_RESERVED8_OFFSET);
58 length = getDataLength(indexes, CollationDataReader::IX_CES_OFFSET);
63 length = getDataLength(indexes, CollationDataReade
113 getDataLength(const int32_t indexes[], int32_t startIndex) argument
[all...]
H A Dswapimpl.cpp106 // formatVersion 2 initially has indexes[8], 32 bytes.
129 // Swap the indexes[] and the valueMaps[].
193 /* the properties file must contain at least the indexes array */
201 /* read the indexes */
209 * indexes[] constants are in uprops.h
236 /* swap the indexes[16] */
316 int32_t indexes[16]; local
361 /* read the first 16 indexes (ICU 3.2/format version 1: UCASE_IX_TOP==16, might grow) */
363 indexes[i]=udata_readInt32(ds, inIndexes[i]);
367 size=indexes[UCASE_IX_LENGT
418 int32_t indexes[16]; local
528 int32_t indexes[32]; local
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationdatawriter.h32 int32_t indexes[], uint8_t *dest, int32_t capacity,
36 int32_t indexes[], uint8_t *dest, int32_t capacity,
45 int32_t indexes[], uint8_t *dest, int32_t capacity,
48 static void copyData(const int32_t indexes[], int32_t startIndex,
H A Dcollationdatawriter.cpp55 int32_t indexes[CollationDataReader::IX_TOTAL_SIZE + 1]; local
57 *tailoring, *settings, indexes, dest, capacity,
78 int32_t indexes[], uint8_t *dest, int32_t capacity,
83 indexes, dest, capacity, errorCode);
88 int32_t indexes[], uint8_t *dest, int32_t capacity,
93 indexes, dest, capacity, errorCode);
100 int32_t indexes[], uint8_t *dest, int32_t capacity,
109 // the indexes length and writing offsets.
111 // so the indexes length must be at least index-of-start-offset + 2.
126 // For the root collator, we write an even number of indexes
76 writeBase(const CollationData &data, const CollationSettings &settings, const void *rootElements, int32_t rootElementsLength, int32_t indexes[], uint8_t *dest, int32_t capacity, UErrorCode &errorCode) argument
87 writeTailoring(const CollationTailoring &t, const CollationSettings &settings, int32_t indexes[], uint8_t *dest, int32_t capacity, UErrorCode &errorCode) argument
97 write(UBool isBase, const UVersionInfo dataVersion, const CollationData &data, const CollationSettings &settings, const void *rootElements, int32_t rootElementsLength, int32_t indexes[], uint8_t *dest, int32_t capacity, UErrorCode &errorCode) argument
339 copyData(const int32_t indexes[], int32_t startIndex, const void *src, uint8_t *dest) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUBiDiProps.java48 // read indexes[]
52 throw new IOException("indexes[0] too small in "+DATA_FILE_NAME);
54 indexes=new int[count];
56 indexes[0]=count;
58 indexes[i]=bytes.getInt();
63 int expectedTrieLength=indexes[IX_TRIE_SIZE];
72 count=indexes[IX_MIRROR_LENGTH];
78 count=indexes[IX_JG_LIMIT]-indexes[IX_JG_START];
83 count=indexes[IX_JG_LIMIT
255 private int indexes[]; field in class:UBiDiProps
[all...]
H A DStringPrepDataReader.java60 int[] indexes = new int[length];
61 //Read the indexes
63 indexes[i] = byteBuffer.getInt();
65 return indexes;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUBiDiProps.java44 // read indexes[]
48 throw new IOException("indexes[0] too small in "+DATA_FILE_NAME);
50 indexes=new int[count];
52 indexes[0]=count;
54 indexes[i]=bytes.getInt();
59 int expectedTrieLength=indexes[IX_TRIE_SIZE];
68 count=indexes[IX_MIRROR_LENGTH];
74 count=indexes[IX_JG_LIMIT]-indexes[IX_JG_START];
79 count=indexes[IX_JG_LIMIT
251 private int indexes[]; field in class:UBiDiProps
[all...]
H A DStringPrepDataReader.java58 int[] indexes = new int[length];
59 //Read the indexes
61 indexes[i] = byteBuffer.getInt();
63 return indexes;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DDictionaryData.java51 int[] indexes = new int[IX_COUNT];
52 // TODO: read indexes[IX_STRING_TRIE_OFFSET] first, then read a variable-length indexes[]
54 indexes[i] = bytes.getInt();
56 int offset = indexes[IX_STRING_TRIE_OFFSET];
62 int trieType = indexes[IX_TRIE_TYPE] & TRIE_TYPE_MASK;
63 int totalSize = indexes[IX_TOTAL_SIZE] - offset;
66 int transform = indexes[IX_TRANSFORM];
H A DStringPrep.java195 /* indexes[] value names */
210 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);
276 doNFKC = ((indexes[OPTIONS] & NORMALIZATION_ON) > 0);
277 checkBiDi = ((indexes[OPTIONS] & CHECK_BIDI_ON) > 0);
279 normCorrVer = getVersionInfo(indexes[NORM_CORRECTNS_LAST_UNI_VERSION]);
283 ((indexes[OPTION
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDictionaryData.java50 int[] indexes = new int[IX_COUNT];
51 // TODO: read indexes[IX_STRING_TRIE_OFFSET] first, then read a variable-length indexes[]
53 indexes[i] = bytes.getInt();
55 int offset = indexes[IX_STRING_TRIE_OFFSET];
61 int trieType = indexes[IX_TRIE_TYPE] & TRIE_TYPE_MASK;
62 int totalSize = indexes[IX_TOTAL_SIZE] - offset;
65 int transform = indexes[IX_TRANSFORM];
H A DStringPrep.java210 /* indexes[] value names */
225 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);
292 doNFKC = ((indexes[OPTIONS] & NORMALIZATION_ON) > 0);
293 checkBiDi = ((indexes[OPTIONS] & CHECK_BIDI_ON) > 0);
295 normCorrVer = getVersionInfo(indexes[NORM_CORRECTNS_LAST_UNI_VERSION]);
299 ((indexes[OPTION
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
H A Dindex.yaml18 indexes:
43 # saying "# AUTOGENERATED"). If you want to manage some indexes
/external/icu/icu4c/source/common/
H A Dubidi_props.c32 const int32_t *indexes; member in struct:UBiDiProps
78 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH];
85 start=bdp->indexes[UBIDI_IX_JG_START];
86 limit=bdp->indexes[UBIDI_IX_JG_LIMIT];
102 if(limit==bdp->indexes[UBIDI_IX_JG_LIMIT]) {
104 start=bdp->indexes[UBIDI_IX_JG_START2];
105 limit=bdp->indexes[UBIDI_IX_JG_LIMIT2];
127 max=bdp->indexes[UBIDI_MAX_VALUES_INDEX];
167 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH];
214 start=bdp->indexes[UBIDI_IX_JG_STAR
[all...]
H A Ducol_swp.cpp386 int32_t indexes[IX_TOTAL_SIZE+1]; local
397 int32_t indexesLength=indexes[0]=udata_readInt32(ds, inIndexes[0]);
407 indexes[i]=udata_readInt32(ds, inIndexes[i]);
410 indexes[i]=-1;
412 inIndexes=NULL; // Make sure we do not accidentally use these instead of indexes[].
417 size=indexes[IX_TOTAL_SIZE];
419 size=indexes[indexesLength-1];
438 // Swap the int32_t indexes[].
442 // Here we use indexes[] not inIndexes[] because
444 int32_t index; // one of the indexes[] slot
[all...]
H A Ddictionarydata.cpp167 int32_t indexes[DictionaryData::IX_COUNT]; local
190 if (length < (int32_t)(sizeof(indexes))) {
198 indexes[i] = udata_readInt32(ds, inIndexes[i]);
201 size = indexes[DictionaryData::IX_TOTAL_SIZE];
215 ds->swapArray32(ds, inBytes, sizeof(indexes), outBytes, pErrorCode);
216 offset = (int32_t)sizeof(indexes);
217 int32_t trieType = indexes[DictionaryData::IX_TRIE_TYPE] & DictionaryData::TRIE_TYPE_MASK;
218 int32_t nextOffset = indexes[DictionaryData::IX_RESERVED1_OFFSET];
233 nextOffset = indexes[DictionaryData::IX_RESERVED2_OFFSET];
235 nextOffset = indexes[DictionaryDat
[all...]
H A Dusprep.cpp262 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes));
269 profile->mappingData=(uint16_t *)((uint8_t *)(p+_SPREP_INDEX_TOP)+profile->indexes[_SPREP_INDEX_TRIE_SIZE]);
276 normCorrVer = profile->indexes[_SPREP_NORM_CORRECTNS_LAST_UNI_VERSION];
284 ((profile->indexes[_SPREP_OPTIONS] & _SPREP_NORMALIZATION_ON) > 0) /* normalization turned on*/
345 newProfile->doNFKC = (UBool)((newProfile->indexes[_SPREP_OPTIONS] & _SPREP_NORMALIZATION_ON) > 0);
346 newProfile->checkBiDi = (UBool)((newProfile->indexes[_SPREP_OPTIONS] & _SPREP_CHECK_BIDI_ON) > 0);
522 const int32_t* indexes = profile->indexes; local
551 if(index >= indexes[_SPREP_ONE_UCHAR_MAPPING_INDEX_STAR
785 int32_t indexes[16]; local
[all...]
/external/icu/icu4c/source/tools/gennorm2/
H A Dn2builder.cpp179 memset(indexes, 0, sizeof(indexes));
955 norm16=indexes[Normalizer2Impl::IX_MIN_MAYBE_YES]+offset;
962 norm16=indexes[Normalizer2Impl::IX_MIN_YES_NO]+offset;
966 norm16=indexes[Normalizer2Impl::IX_MIN_YES_NO_MAPPINGS_ONLY]+offset;
970 norm16=indexes[Normalizer2Impl::IX_MIN_NO_NO]+offset;
982 if(isDecompNo && start<indexes[Normalizer2Impl::IX_MIN_DECOMP_NO_CP]) {
983 indexes[Normalizer2Impl::IX_MIN_DECOMP_NO_CP]=start;
985 if(isCompNoMaybe && start<indexes[Normalizer2Impl::IX_MIN_COMP_NO_MAYBE_CP]) {
986 indexes[Normalizer2Imp
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DCollectionUtils.java68 Map indexes = new HashMap();
71 indexes.put(it.next(), new Integer(index++));
73 return indexes;
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DCallbackHelper.java36 Map indexes = new HashMap();
47 Integer index = (Integer)indexes.get(callback);
50 indexes.put(callback, index);
/external/opencv3/modules/ts/misc/
H A Dchart.py73 def nextPermutation(indexes, lists, x, y):
74 idx = len(indexes)-1
80 v = indexes[idx] + 1
82 indexes[idx] = v;
85 indexes[idx] = 0;
89 def getTestWideName(sname, indexes, lists, x, y):
91 for i in range(len(indexes)):
99 name += lists[i][indexes[i]]
187 indexes = [0] * argsnum
201 if v[i] != arglists[i][indexes[
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DFieldProviderTransformer.java84 int indexes[] = new int[names.length];
85 for (int i = 0; i < indexes.length; i++) {
86 indexes[i] = i;
98 setByIndex(names, indexes);
99 getByIndex(names, indexes);
134 private void setByIndex(final String[] names, final int[] indexes) throws Exception { argument
139 e.process_switch(indexes, new ProcessSwitchCallback() {
153 private void getByIndex(final String[] names, final int[] indexes) throws Exception { argument
157 e.process_switch(indexes, new ProcessSwitchCallback() {
/external/mesa3d/src/mesa/main/
H A Dpixeltransfer.c104 * 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[])
195 _mesa_shift_and_offset_ci(const struct gl_context *ctx, GLuint n, GLuint indexes[]) argument
226 _mesa_apply_ci_transfer_ops(const struct gl_context *ctx, GLbitfield transferOps, GLuint n, GLuint indexes[]) argument
[all...]

Completed in 1541 milliseconds

123456