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

1 2 3 4 5 6 7 8 91011>>

  /test/vti/test_serving/gae/script/
create-datastore.sh 17 gcloud datastore create-indexes index.yaml
  /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 109 // formatVersion 2 initially has indexes[8], 32 bytes.
132 // Swap the indexes[] and the valueMaps[].
196 /* the properties file must contain at least the indexes array */
204 /* read the indexes */
212 * indexes[] constants are in uprops.h
239 /* swap the indexes[16] */
319 int32_t indexes[16]; local
364 /* read the first 16 indexes (ICU 3.2/format version 1: UCASE_IX_TOP==16, might grow) */
366 indexes[i]=udata_readInt32(ds, inIndexes[i]);
370 size=indexes[UCASE_IX_LENGTH]
421 int32_t indexes[16]; local
531 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.cpp 34 const int32_t *indexes; member in struct:UBiDiProps
82 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH];
89 start=bdp->indexes[UBIDI_IX_JG_START];
90 limit=bdp->indexes[UBIDI_IX_JG_LIMIT];
106 if(limit==bdp->indexes[UBIDI_IX_JG_LIMIT]) {
108 start=bdp->indexes[UBIDI_IX_JG_START2];
109 limit=bdp->indexes[UBIDI_IX_JG_LIMIT2];
131 max=bdp->indexes[UBIDI_MAX_VALUES_INDEX];
171 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH];
218 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/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 99 memset(indexes, 0, sizeof(indexes));
438 norm16=indexes[Normalizer2Impl::IX_MIN_YES_NO]+norm.offset*2;
441 norm16=indexes[Normalizer2Impl::IX_MIN_YES_NO_MAPPINGS_ONLY]+norm.offset*2;
444 norm16=indexes[Normalizer2Impl::IX_MIN_NO_NO]+norm.offset*2;
447 norm16=indexes[Normalizer2Impl::IX_MIN_NO_NO_COMP_BOUNDARY_BEFORE]+norm.offset*2;
450 norm16=indexes[Normalizer2Impl::IX_MIN_NO_NO_COMP_NO_MAYBE_CC]+norm.offset*2;
453 norm16=indexes[Normalizer2Impl::IX_MIN_NO_NO_EMPTY]+norm.offset*2;
470 norm16=indexes[Normalizer2Impl::IX_MIN_MAYBE_YES]+norm.offset*2;
493 if(isDecompNo && start<indexes[Normalizer2Impl::IX_MIN_DECOMP_NO_CP])
    [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/deqp/modules/gles3/scripts/
gen-large-constant-arrays.py 102 indexes = random.sample(range(arraySize-1), 10) variable
104 outputs = [array[index] for index in indexes]
110 [("int in0", indexes)],
  /external/mesa3d/src/mesa/main/
pixeltransfer.c 106 * Map color indexes to float rgba values.
198 GLuint n, GLuint indexes[])
205 indexes[i] = (indexes[i] << shift) + offset;
211 indexes[i] = (indexes[i] >> shift) + offset;
216 indexes[i] = indexes[i] + offset;
225 * of color indexes;
230 GLuint n, GLuint indexes[])
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/
ctx.c 96 // Array of indexes into the bignum stack
97 unsigned int *indexes; member in struct:bignum_ctx_stack
202 st->indexes = NULL;
207 OPENSSL_free(st->indexes);
220 OPENSSL_memcpy(newitems, st->indexes, st->depth * sizeof(unsigned int));
222 OPENSSL_free(st->indexes);
223 st->indexes = newitems;
227 st->indexes[(st->depth)++] = idx;
232 return st->indexes[--(st->depth)];

Completed in 487 milliseconds

1 2 3 4 5 6 7 8 91011>>