HomeSort by relevance Sort by last modified time
    Searched defs:indices (Results 1 - 25 of 228) sorted by null

1 2 3 4 5 6 7 8 910

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.iter/re.tokiter/re.tokiter.cnstr/
array.pass.cpp 29 const int indices[] = {-1, 0, 1}; local
31 phone_numbers, indices);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDrawElementsInstanced.cpp 1 /* void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount ) */
8 GLvoid *indices = (GLvoid *) 0; local
10 indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset);
11 if (indices == NULL) {
13 indices = (GLvoid *) (_indicesBase + _bufferOffset);
19 (GLvoid *)indices,
23 releasePointer(_env, _array, indices, JNI_FALSE);
27 /* void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount ) */
  /cts/suite/audio_quality/test/
TaskSequentialTest.cpp 53 std::list<TaskCase::IndexPair>* indices = mTestCase->findAllIndices(RE); local
54 ASSERT_TRUE(indices != NULL);
55 ASSERT_TRUE(indices->size() == 1);
60 delete indices;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.cpp 40 short indices[2]; member in struct:WebCore::SameSizeAsElementRareData
  /external/chromium_org/v8/test/mjsunit/
string-indexof-1.js 117 var indices = [0x5, 0x65, 0x85, 0x105, 0x205, 0x285, 0x2005, 0x2085, 0xfff0]; variable
120 for (var i = 0; i < indices.length; i++) {
121 var index = indices[i];
  /external/v8/test/mjsunit/
string-indexof-1.js 117 var indices = [0x5, 0x65, 0x85, 0x105, 0x205, 0x285, 0x2005, 0x2085, 0xfff0]; variable
120 for (var i = 0; i < indices.length; i++) {
121 var index = indices[i];
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
NativeMeshUtil.java 55 IndexBuffer indices = mesh.getIndicesAsList(); local
67 triangleIndexBase.putInt(indices.get(i));
  /cts/tests/tests/graphics/src/android/graphics/cts/
Canvas_VertexModeTest.java 43 short[] indices = { 0, 1, 2, 3, 4, 1 }; local
57 indices,
70 indices,
  /external/chromium_org/third_party/icu/source/test/letest/
letest.h 39 le_int32 *indices; member in struct:TestResult
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_struct.c 51 LLVMValueRef indices[2]; local
55 indices[0] = lp_build_const_int32(gallivm, 0);
56 indices[1] = lp_build_const_int32(gallivm, member);
57 member_ptr = LLVMBuildGEP(gallivm->builder, ptr, indices, Elements(indices), "");
85 LLVMValueRef indices[2]; local
89 indices[0] = lp_build_const_int32(gallivm, 0);
90 indices[1] = index;
91 element_ptr = LLVMBuildGEP(gallivm->builder, ptr, indices, Elements(indices), "");
    [all...]
  /external/chromium_org/third_party/skia/include/utils/
SkMeshUtils.h 27 bool init(SkPoint tex[], uint16_t indices[],
31 const uint16_t* indices() const { return fIndices; } function in class:SkMeshIndices
  /external/harfbuzz_ng/src/hb-icu-le/
letest.h 51 le_int32 *indices; member in struct:TestResult
  /external/icu4c/layout/
CanonShaping.cpp 15 void CanonShaping::sortMarks(le_int32 *indices, const le_int32 *combiningClasses, le_int32 index, le_int32 limit)
19 le_int32 v = indices[j];
23 if (c >= combiningClasses[indices[i]]) {
27 indices[i + 1] = indices[i];
30 indices[i + 1] = v;
40 le_int32 *indices = LE_NEW_ARRAY(le_int32, charCount); local
46 indices[i] = i;
59 sortMarks(indices, combiningClasses, i, mark);
71 le_int32 index = indices[i]
    [all...]
  /external/icu4c/test/letest/
letest.h 39 le_int32 *indices; member in struct:TestResult
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_struct.c 51 LLVMValueRef indices[2]; local
55 indices[0] = lp_build_const_int32(gallivm, 0);
56 indices[1] = lp_build_const_int32(gallivm, member);
57 member_ptr = LLVMBuildGEP(gallivm->builder, ptr, indices, Elements(indices), "");
85 LLVMValueRef indices[2]; local
89 indices[0] = lp_build_const_int32(gallivm, 0);
90 indices[1] = index;
91 element_ptr = LLVMBuildGEP(gallivm->builder, ptr, indices, Elements(indices), "");
    [all...]
  /external/skia/include/utils/
SkMeshUtils.h 27 bool init(SkPoint tex[], uint16_t indices[],
31 const uint16_t* indices() const { return fIndices; } function in class:SkMeshIndices
  /frameworks/base/core/java/com/android/internal/widget/
PasswordEntryKeyboardView.java 43 int[] indices = getKeyboard().getShiftKeyIndices(); local
44 for (int index : indices) {
  /frameworks/ml/bordeaux/learning/multiclass_pa/jni/
jni_multiclass_pa.cpp 26 void CreateIndexValuePairs(const int* indices, const float* values,
31 pair<int, float> new_pair(indices[i], values[i]);
67 jint* indices = env->GetIntArrayElements(index_array, NULL); local
71 if (values && indices && value_len == index_len) {
74 CreateIndexValuePairs(indices, values, value_len, &inputs);
76 env->ReleaseIntArrayElements(index_array, indices, JNI_ABORT);
81 env->ReleaseIntArrayElements(index_array, indices, JNI_ABORT);
100 jint* indices = env->GetIntArrayElements(index_array, NULL); local
104 if (values && indices && value_len == index_len) {
106 CreateIndexValuePairs(indices, values, value_len, &inputs)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
hash.cpp 76 // potential primes = 210*k + indices[i], k >= 1
79 const unsigned indices[] = member in namespace:__anon34925
189 // Start searching list of potential primes: L * k0 + indices[in]
190 const size_t M = sizeof(indices) / sizeof(indices[0]);
194 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L)
195 - indices);
196 n = L * k0 + indices[in];
566 n = L * k0 + indices[in]
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
GImpactCollisionShape.java 82 IndexBuffer indices = mesh.getIndexBuffer(); local
94 triangleIndexBase.putInt(indices.get(i));
MeshCollisionShape.java 79 IndexBuffer indices = mesh.getIndexBuffer(); local
91 triangleIndexBase.putInt(indices.get(i));
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Simple_Texture2D/
Simple_Texture2D.c 132 GLushort indices[] = { 0, 1, 2, 0, 2, 3 }; local
160 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Simple_TextureCubemap/
Simple_TextureCubemap.c 37 GLushort *indices; member in struct:__anon12945
143 NULL, &userData->indices );
188 GL_UNSIGNED_SHORT, userData->indices );
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Stencil_Test/
Stencil_Test.c 111 GLubyte indices[][6] = { local
167 glDrawElements( GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, indices[0] );
183 glDrawElements( GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, indices[1] );
199 glDrawElements( GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, indices[2] );
216 glDrawElements( GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, indices[3] );
236 glDrawElements( GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, indices[4] );
  /external/chromium_org/third_party/freetype/src/psaux/
t1cmap.h 75 FT_UShort* indices; member in struct:T1_CMapCustomRec_

Completed in 850 milliseconds

1 2 3 4 5 6 7 8 910