Searched defs:indexes (Results 1 - 25 of 83) sorted by relevance

1234

/external/icu/icu4c/source/common/
H A Dpropname_data.h16 const int32_t PropNameData::indexes[8]={0x20,0x135c,0x468d,0x8e95,0x8e95,0x8e95,0x2f,0}; member in class:PropNameData
H A Duchar_props_data.h3542 static const int32_t indexes[UPROPS_INDEX_COUNT]={0x28aa,0x28aa,0x28aa,0x28aa,0x606c,3,0x789f,0x7900,0x7900,0x7900,0xb11ae,0x2a75631,0,0,0,0}; variable
H A Dpropname.h115 static const int32_t indexes[]; member in class:PropNameData
134 * int32_t indexes[8];
138 * The first 6 indexes are byte offsets from the beginning of the data
139 * (beginning of indexes[]) to following structures.
144 * The last offset (indexes[PropNameData::IX_TOTAL_SIZE]) indicates the
147 * The sixth index (indexes[PropNameData::IX_MAX_NAME_LENGTH]) has the
H A Dsprpimpl.h67 /* indexes[] value names */
89 int32_t indexes[_SPREP_INDEX_TOP]; member in struct:UStringPrepProfile
H A Dbrkeng.cpp273 const int32_t *indexes = (const int32_t *)data; local
274 const int32_t offset = indexes[DictionaryData::IX_STRING_TRIE_OFFSET];
275 const int32_t trieType = indexes[DictionaryData::IX_TRIE_TYPE] & DictionaryData::TRIE_TYPE_MASK;
278 const int32_t transform = indexes[DictionaryData::IX_TRANSFORM];
H A Ddictionarydata.cpp169 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[DictionaryDat
[all...]
H A Dubidi_props.c34 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_STAR
[all...]
H A Ducol_swp.cpp388 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...]
/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/deqp/modules/gles3/scripts/
H A Dgen-large-constant-arrays.py102 indexes = random.sample(range(arraySize-1), 10) variable
104 outputs = [array[index] for index in indexes]
110 [("int in0", indexes)],
/external/icu/icu4c/source/tools/toolutil/
H A Dcollationinfo.cpp30 CollationInfo::printSizes(int32_t sizeWithHeader, const int32_t indexes[]) { argument
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, CollationDataReade
115 getDataLength(const int32_t indexes[], int32_t startIndex) argument
[all...]
H A Dswapimpl.cpp108 // 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_LENGT
420 int32_t indexes[16]; local
530 int32_t indexes[32]; local
[all...]
/external/ImageMagick/www/source/core/
H A Dsigmoidal-contrast.c17 *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/
H A Dn2builder.h100 return indexes[Normalizer2Impl::IX_MIN_MAYBE_YES]-Normalizer2Impl::MAX_DELTA-1;
114 int32_t indexes[Normalizer2Impl::IX_COUNT]; member in class:Normalizer2DataBuilder
/external/lzma/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp11 const UInt32 *indexes, unsigned numFiles)
14 _indexes = indexes;
10 Init(IArchiveUpdateCallback *updateCallback, const UInt32 *indexes, unsigned numFiles) argument
/external/icu/icu4c/source/i18n/
H A Dcollationdatawriter.cpp57 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
78 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
89 writeTailoring(const CollationTailoring &t, const CollationSettings &settings, int32_t indexes[], uint8_t *dest, int32_t capacity, UErrorCode &errorCode) argument
99 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
341 copyData(const int32_t indexes[], int32_t startIndex, const void *src, uint8_t *dest) argument
[all...]
H A Dcollationdatareader.cpp40 int32_t getIndex(const int32_t *indexes, int32_t length, int32_t i) { argument
41 return (i < length) ? indexes[i] : -1;
79 errorCode = U_INVALID_FORMAT_ERROR; // Not enough indexes.
89 int32_t index; // one of the indexes[] slots
98 length = 0; // only indexes, and inLength was already checked for them
/external/llvm/lib/CodeGen/
H A DInterferenceCache.cpp45 SlotIndexes *indexes,
53 Entries[i].clear(mf, indexes, lis);
43 init(MachineFunction *mf, LiveIntervalUnion *liuarray, SlotIndexes *indexes, LiveIntervals *lis, const TargetRegisterInfo *tri) argument
/external/squashfs-tools/squashfs-tools/
H A Dunsquash-2.c47 int indexes = SQUASHFS_FRAGMENT_INDEXES_2(sBlk.s.fragments); local
48 unsigned int fragment_table_index[indexes];
50 TRACE("read_fragment_table: %d fragments, reading %d fragment indexes "
51 "from 0x%llx\n", sBlk.s.fragments, indexes,
65 unsigned int sfragment_table_index[indexes];
76 sfragment_table_index, indexes);
88 for(i = 0; i < indexes; i++) {
89 int expected = (i + 1) != indexes ? SQUASHFS_METADATA_SIZE :
H A Dunsquash-3.c34 int indexes = SQUASHFS_FRAGMENT_INDEXES_3(sBlk.s.fragments); local
35 long long fragment_table_index[indexes];
37 TRACE("read_fragment_table: %d fragments, reading %d fragment indexes "
38 "from 0x%llx\n", sBlk.s.fragments, indexes,
52 long long sfragment_table_index[indexes];
63 sfragment_table_index, indexes);
75 for(i = 0; i < indexes; i++) {
76 int expected = (i + 1) != indexes ? SQUASHFS_METADATA_SIZE :
H A Dunsquash-4.c35 int indexes = SQUASHFS_FRAGMENT_INDEXES(sBlk.s.fragments); local
36 long long fragment_table_index[indexes];
38 TRACE("read_fragment_table: %d fragments, reading %d fragment indexes "
39 "from 0x%llx\n", sBlk.s.fragments, indexes,
60 SQUASHFS_INSWAP_FRAGMENT_INDEXES(fragment_table_index, indexes);
62 for(i = 0; i < indexes; i++) {
63 int expected = (i + 1) != indexes ? SQUASHFS_METADATA_SIZE :
358 int indexes = SQUASHFS_ID_BLOCKS(sBlk.s.no_ids); local
359 long long id_index_table[indexes];
375 SQUASHFS_INSWAP_ID_BLOCKS(id_index_table, indexes);
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DInterferenceCache.cpp26 SlotIndexes *indexes,
33 Entries[i].clear(mf, indexes);
24 init(MachineFunction *mf, LiveIntervalUnion *liuarray, SlotIndexes *indexes, const TargetRegisterInfo *tri) argument
/external/boringssl/src/crypto/fipsmodule/bn/
H A Dctx.c97 /* 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/android_icu4j/src/main/java/android/icu/impl/
H A DUBiDiProps.java50 // 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_LIMIT
258 private int indexes[]; field in class:UBiDiProps
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dsprpdata.c156 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 554 milliseconds

1234