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

1 23 4 5 6 7 8 910

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_gs.c 211 unsigned *indices,
226 i, indices[i], prim_idx);
229 (const char *)input_ptr + (indices[i] * input_vertex_stride));
302 unsigned indices[1]; local
304 indices[0] = idx;
306 draw_fetch_gs_input(shader, indices, 1, 0);
315 unsigned indices[2]; local
317 indices[0] = i0;
318 indices[1] = i1;
320 draw_fetch_gs_input(shader, indices, 2, 0)
329 unsigned indices[4]; local
345 unsigned indices[3]; local
361 unsigned indices[6]; local
    [all...]
draw_pipe_vbuf.c 72 /** Indices */
73 ushort *indices; member in struct:vbuf_stage
163 vbuf->indices[vbuf->nr_indices++] = emit_vertex( vbuf, prim->v[i] );
178 vbuf->indices[vbuf->nr_indices++] = emit_vertex( vbuf, prim->v[i] );
191 vbuf->indices[vbuf->nr_indices++] = emit_vertex( vbuf, prim->v[0] );
328 vbuf->indices,
409 if(vbuf->indices)
410 align_free( vbuf->indices );
444 vbuf->indices = (ushort *) align_malloc( vbuf->max_indices *
445 sizeof(vbuf->indices[0]),
    [all...]
draw_pt_so_emit.c 83 unsigned *indices,
121 /*debug_printf("%d) vertex index = %d (prim idx = %d)\n", i, indices[i], prim_idx);*/
123 (const char *)input_ptr + (indices[i] * input_vertex_stride));
145 unsigned indices[1]; local
147 indices[0] = idx;
149 so_emit_prim(so, indices, 1);
154 unsigned indices[2]; local
156 indices[0] = i0;
157 indices[1] = i1;
159 so_emit_prim(so, indices, 2)
164 unsigned indices[3]; local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-global-handles.cc 328 int indices[kArrayLength]; local
337 indices[i] = eternals->Create(isolate, *v8::Utils::OpenHandle(*object));
340 indices[i] = object.Eternalize(v8_isolate);
353 v8::Utils::ToLocal(eternals->Get(indices[i]));
357 object = v8::Local<v8::Object>::GetEternal(v8_isolate, indices[i]);
  /external/eigen/Eigen/src/Core/
Transpositions.h 24 * \f$[T_{n-1} \ldots T_{i} \ldots T_{0}]\f$. It is internally stored as a vector of integers \c indices.
26 * the rows \c i and \c indices[i] of the matrix \c M.
65 indices() = other.indices();
75 indices() = other.indices();
81 inline Index size() const { return indices().size(); }
84 inline const Index& coeff(Index i) const { return indices().coeff(i); }
86 inline Index& coeffRef(Index i) { return indices().coeffRef(i); }
88 inline const Index& operator()(Index i) const { return indices()(i);
97 const IndicesType& indices() const { return derived().indices(); } function in class:Eigen::TranspositionsBase
99 IndicesType& indices() { return derived().indices(); } function in class:Eigen::TranspositionsBase
207 const IndicesType& indices() const { return m_indices; } function in class:Eigen::Transpositions
209 IndicesType& indices() { return m_indices; } function in class:Eigen::Transpositions
264 const IndicesType& indices() const { return m_indices; } function in class:Eigen::Map
267 IndicesType& indices() { return m_indices; } function in class:Eigen::Map
317 const IndicesType& indices() const { return m_indices; } function in class:Eigen::TranspositionsWrapper
320 IndicesType& indices() { return m_indices; } function in class:Eigen::TranspositionsWrapper
    [all...]
  /external/freetype/src/cache/
ftccmap.c 37 /* codes to equivalent glyph indices. */
40 /* 128 consecutive character codes to their corresponding glyph indices. */
48 /* number of glyph indices / character code per node */
76 FT_UInt16 indices[FTC_CMAP_INDICES_MAX]; /* array of glyph indices */ member in struct:FTC_CMapNodeRec_
84 /* if (indices[n] == FTC_CMAP_UNKNOWN), we assume that the corresponding */
85 /* glyph indices haven't been queried through FT_Get_Glyph_Index() yet */
132 node->indices[nn] = FTC_CMAP_UNKNOWN;
289 gindex = FTC_CMAP_NODE( node )->indices[char_code -
327 FTC_CMAP_NODE( node )->indices[char_code
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Curve.java 99 short[] indices = new short[(spline.getControlPoints().size() - 1) * nbSubSegments * 2]; local
128 indices[i] = (short) k;
131 indices[i] = (short) k;
137 this.setBuffer(VertexBuffer.Type.Index, 2, indices);//(spline.getControlPoints().size() - 1) * nbSubSegments * 2
179 short[] indices = new short[(centerPointsAmount - 1) * nbSubSegments << 1]; local
182 indices[i++] = (short) k;
184 indices[i++] = (short) k;
189 this.setBuffer(VertexBuffer.Type.Index, 2, indices);
218 short[] indices = new short[nbSubSegments << 1]; local
220 indices[i++] = (short) j
233 short[] indices = new short[(spline.getControlPoints().size() - 1) * 2]; local
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
ModelConverter.java 73 int[] indices = new int[ib.size()]; local
74 for (int i = 0; i < indices.length; i++)
75 indices[i] = ib.get(i);
77 PrimitiveGroup[] groups = ts.generateStrips(indices);
  /external/llvm/lib/CodeGen/
Spiller.cpp 106 SmallVector<unsigned, 2> indices; local
115 indices.push_back(i);
123 for (unsigned i = 0; i < indices.size(); ++i) {
124 unsigned mopIdx = indices[i];
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_gs.c 211 unsigned *indices,
226 i, indices[i], prim_idx);
229 (const char *)input_ptr + (indices[i] * input_vertex_stride));
302 unsigned indices[1]; local
304 indices[0] = idx;
306 draw_fetch_gs_input(shader, indices, 1, 0);
315 unsigned indices[2]; local
317 indices[0] = i0;
318 indices[1] = i1;
320 draw_fetch_gs_input(shader, indices, 2, 0)
329 unsigned indices[4]; local
345 unsigned indices[3]; local
361 unsigned indices[6]; local
    [all...]
draw_pipe_vbuf.c 72 /** Indices */
73 ushort *indices; member in struct:vbuf_stage
163 vbuf->indices[vbuf->nr_indices++] = emit_vertex( vbuf, prim->v[i] );
178 vbuf->indices[vbuf->nr_indices++] = emit_vertex( vbuf, prim->v[i] );
191 vbuf->indices[vbuf->nr_indices++] = emit_vertex( vbuf, prim->v[0] );
328 vbuf->indices,
409 if(vbuf->indices)
410 align_free( vbuf->indices );
444 vbuf->indices = (ushort *) align_malloc( vbuf->max_indices *
445 sizeof(vbuf->indices[0]),
    [all...]
draw_pt_so_emit.c 83 unsigned *indices,
121 /*debug_printf("%d) vertex index = %d (prim idx = %d)\n", i, indices[i], prim_idx);*/
123 (const char *)input_ptr + (indices[i] * input_vertex_stride));
145 unsigned indices[1]; local
147 indices[0] = idx;
149 so_emit_prim(so, indices, 1);
154 unsigned indices[2]; local
156 indices[0] = i0;
157 indices[1] = i1;
159 so_emit_prim(so, indices, 2)
164 unsigned indices[3]; local
    [all...]
  /frameworks/base/tools/aapt/
StringPool.h 45 hasStyles(o.hasStyles), indices(o.indices),
51 Vector<size_t> indices; member in struct:StringPool::entry
152 // Array of indices into mEntries, in the order they were
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_StaticNonce.c 99 static int indices[] = { 0, 50, 99 }; local
128 (*env)->SetObjectArrayElement(env, result, indices[i], s);
  /external/chromium/chrome/browser/ui/gtk/
gtk_tree.cc 17 gint* indices = gtk_tree_path_get_indices(path); local
18 if (!indices) {
22 return indices[0];
  /external/chromium/chrome/browser/ui/views/tabs/
browser_tab_strip_controller.cc 419 std::vector<int> indices = local
421 for (std::vector<int>::const_iterator i = indices.begin();
422 i != indices.end(); ++i) {
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_tree.cc 19 gint* indices = gtk_tree_path_get_indices(path); local
20 if (!indices) {
24 return indices[0];
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
SelectPopupDialog.java 192 int[] indices = new int[selectedCount]; local
195 indices[j++] = sparseArray.keyAt(i);
198 return indices;
207 * @param selectedIndices Indices of selected items.
  /external/chromium_org/third_party/icu/source/test/letest/
cletest.c 43 le_int32 *indices = NULL; local
61 indices = NEW_ARRAY(le_int32, glyphCount + 10);
85 le_getCharIndices(engine, indices, &status);
88 log_err("Calling getCharIndices(indices, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
99 le_getCharIndicesWithBase(engine, indices, 1024, &status);
102 log_err("Calling getCharIndices(indices, 1024, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
120 DELETE_ARRAY(indices);
216 le_int32 biasedIndices[6], indices[6], glyph; local
237 le_getCharIndices(engine, indices, &status);
241 log_err("Could not get glyph, indices and position arrays.\n")
    [all...]
gendata.cpp 165 le_int32 *indices = NULL; local
260 indices = NEW_ARRAY(le_int32, glyphCount);
264 engine->getCharIndices(indices, leStatus);
269 dumpLongs(outputFile, "result-indices", indices, glyphCount);
276 DELETE_ARRAY(indices);
xmlreader.cpp 150 UnicodeString result_indices = UNICODE_STRING_SIMPLE("result-indices");
180 UnicodeString text, glyphs, indices, positions; local
214 indices = element->getText(TRUE);
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
242 DELETE_ARRAY(expected.indices);
  /external/chromium_org/third_party/lzma_sdk/
7zDec.c 360 UInt32 indices[] = { 3, 2, 0 }; local
362 si = indices[ci];
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_sanity.c 44 uint indices[2]; member in struct:__anon14468
69 key |= (reg->indices[0] << 4);
70 key |= (reg->indices[1] << 18);
81 reg->indices[0] = index;
82 reg->indices[1] = 0;
91 reg->indices[0] = index1;
92 reg->indices[1] = index2;
280 reg->indices[0] = 0;
281 reg->indices[1] = 0;
293 reg->indices[0], reg->indices[1], name )
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
tri-instanced.c 78 static ushort indices[3] = { 0, 2, 1 }; variable
158 sizeof(indices),
159 indices);
  /external/chromium_org/third_party/skia/src/gpu/
GrGpu.cpp 257 static inline void fill_indices(uint16_t* indices, int quadCount) {
259 indices[6 * i + 0] = 4 * i + 0;
260 indices[6 * i + 1] = 4 * i + 1;
261 indices[6 * i + 2] = 4 * i + 2;
262 indices[6 * i + 3] = 4 * i + 0;
263 indices[6 * i + 4] = 4 * i + 2;
264 indices[6 * i + 5] = 4 * i + 3;
274 uint16_t* indices = (uint16_t*)fQuadIndexBuffer->lock(); local
275 if (NULL != indices) {
276 fill_indices(indices, MAX_QUADS)
    [all...]

Completed in 798 milliseconds

1 23 4 5 6 7 8 910