Searched refs:indexArray (Results 1 - 19 of 19) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DPropsVectors.java381 Integer[] indexArray = new Integer[rows];
383 indexArray[i] = Integer.valueOf(columns * i);
386 Arrays.sort(indexArray, new Comparator<Integer>() {
417 int start = v[indexArray[i].intValue()];
421 if (count < 0 || !areElementsSame(indexArray[i].intValue() + 2, v,
422 indexArray[i-1].intValue() + 2, valueColumns)) {
451 int start = v[indexArray[i].intValue()];
452 int limit = v[indexArray[i].intValue() + 1];
456 if (count < 0 || !areElementsSame(indexArray[i].intValue() + 2,
459 System.arraycopy(v, indexArray[
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DPropsVectors.java379 Integer[] indexArray = new Integer[rows];
381 indexArray[i] = Integer.valueOf(columns * i);
384 Arrays.sort(indexArray, new Comparator<Integer>() {
415 int start = v[indexArray[i].intValue()];
419 if (count < 0 || !areElementsSame(indexArray[i].intValue() + 2, v,
420 indexArray[i-1].intValue() + 2, valueColumns)) {
449 int start = v[indexArray[i].intValue()];
450 int limit = v[indexArray[i].intValue() + 1];
454 if (count < 0 || !areElementsSame(indexArray[i].intValue() + 2,
457 System.arraycopy(v, indexArray[
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DCompactByteArray.java86 * @param indexArray the indicies of the compact array.
93 public CompactByteArray(char indexArray[], argument
97 if (indexArray.length != INDEXCOUNT)
100 char index = indexArray[i];
104 indices = indexArray;
112 * @param indexArray the RLE-encoded indicies of the compact array.
121 public CompactByteArray(String indexArray, argument
124 this( Utility.RLEStringToCharArray(indexArray),
H A DCompactCharArray.java87 * @param indexArray the indicies of the compact array.
94 public CompactCharArray(char indexArray[], argument
98 if (indexArray.length != INDEXCOUNT)
101 char index = indexArray[i];
105 indices = indexArray;
113 * @param indexArray the RLE-encoded indicies of the compact array.
122 public CompactCharArray(String indexArray, argument
125 this( Utility.RLEStringToCharArray(indexArray),
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCompactByteArray.java84 * @param indexArray the indicies of the compact array.
91 public CompactByteArray(char indexArray[], argument
95 if (indexArray.length != INDEXCOUNT)
98 char index = indexArray[i];
102 indices = indexArray;
110 * @param indexArray the RLE-encoded indicies of the compact array.
119 public CompactByteArray(String indexArray, argument
122 this( Utility.RLEStringToCharArray(indexArray),
H A DCompactCharArray.java85 * @param indexArray the indicies of the compact array.
92 public CompactCharArray(char indexArray[], argument
96 if (indexArray.length != INDEXCOUNT)
99 char index = indexArray[i];
103 indices = indexArray;
111 * @param indexArray the RLE-encoded indicies of the compact array.
120 public CompactCharArray(String indexArray, argument
123 this( Utility.RLEStringToCharArray(indexArray),
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_draw_arrays.c190 range.indexArray.surfaceId = SVGA3D_INVALID_ID;
191 range.indexArray.offset = 0;
192 range.indexArray.stride = 0;
H A Dsvga_draw_elements.c170 range.indexArray.offset = index_offset;
171 range.indexArray.stride = index_size;
H A Dsvga_draw.c282 &prim[i].indexArray.surfaceId,
638 range->indexArray.offset != svga->state.hw_draw.ib_offset) {
643 range->indexArray.offset);
649 svga->state.hw_draw.ib_offset = range->indexArray.offset;
862 assert(range->indexWidth == range->indexArray.stride);
866 MAYBE_UNUSED unsigned offset = range->indexArray.offset;
867 MAYBE_UNUSED unsigned stride = range->indexArray.stride;
/external/autotest/client/deps/webgl_mpd/src/resources/
H A DJ3DI.js372 indexArray = [ ];
401 currentGroup = [indexArray.length, 0];
488 indexArray.push(facemap[array[i]]);
507 obj.numIndices = indexArray.length;
510 obj.ctx.bufferData(obj.ctx.ELEMENT_ARRAY_BUFFER, new Uint16Array(indexArray), obj.ctx.STREAM_DRAW);
/external/deqp/modules/glshared/
H A DglsDrawTest.cpp1763 void render (DrawTestSpec::Primitive primitive, DrawTestSpec::DrawMethod drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* indexOffset, int rangeStart, int rangeEnd, int instanceCount, int indirectOffset, int baseVertex, float coordScale, float colorScale, AttributeArray* indexArray);
1842 void AttributePack::render (DrawTestSpec::Primitive primitive, DrawTestSpec::DrawMethod drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* indexOffset, int rangeStart, int rangeEnd, int instanceCount, int indirectOffset, int baseVertex, float coordScale, float colorScale, AttributeArray* indexArray) argument
1860 if (indexArray)
1861 indexArray->bindIndexArray(DrawTestSpec::TARGET_ELEMENT_ARRAY);
3270 const char* indexArray = RandomArrayGenerator::generateIndices(seed, (int)elementCount, spec.indexType, spec.indexPointerOffset, indexMin, indexMax, indexBase); local
3271 const char* indexPointerBase = (spec.indexStorage == DrawTestSpec::STORAGE_USER) ? (indexArray) : ((char*)DE_NULL);
3279 glArray->data(DrawTestSpec::TARGET_ELEMENT_ARRAY, indexArraySize, indexArray, DrawTestSpec::USAGE_STATIC_DRAW);
3280 rrArray->data(DrawTestSpec::TARGET_ELEMENT_ARRAY, indexArraySize, indexArray, DrawTestSpec::USAGE_STATIC_DRAW);
3285 delete [] indexArray;
3286 indexArray
[all...]
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga3d_cmd.h655 * Optional index buffer. If indexArray.surfaceId is
662 * indexArray.stride.
665 * packed. In other words, indexWidth == indexArray.stride)
667 SVGA3dArray indexArray; member in struct:SVGA3dPrimitiveRange
672 * indexArray before they are used as vertex array indices. This
675 * - When not using an indexArray, this bias can be used to
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.c1116 _debug_printf("\t\t.indexArray.surfaceId = %u\n", (*cmd).indexArray.surfaceId);
1117 _debug_printf("\t\t.indexArray.offset = %u\n", (*cmd).indexArray.offset);
1118 _debug_printf("\t\t.indexArray.stride = %u\n", (*cmd).indexArray.stride);
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 579 milliseconds