HomeSort by relevance Sort by last modified time
    Searched defs:inds (Results 1 - 3 of 3) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/util/
BufferUtils.java 685 int[] inds = new int[buff.limit()]; local
686 for (int x = 0; x < inds.length; x++) {
687 inds[x] = buff.get();
689 return inds;
705 float[] inds = new float[buff.limit()]; local
706 for (int x = 0; x < inds.length; x++) {
707 inds[x] = buff.get();
709 return inds;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_llvm.c 617 LLVMValueRef inds[LP_MAX_VECTOR_WIDTH / 32]; local
625 inds[i] = lp_build_const_int32(gallivm, i);
626 io_ptrs[i] = LLVMBuildGEP(builder, io_ptr, &inds[i], 1, "");
647 val = LLVMBuildExtractElement(builder, cliptmp, inds[i], "");
651 io_ptrs[i], inds[i], val);
743 LLVMValueRef inds[LP_MAX_VECTOR_WIDTH / 32]; local
751 inds[i] = lp_build_const_int32(gallivm, i);
752 io_ptrs[i] = LLVMBuildGEP(builder, io_ptr, &inds[i], 1, "");
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.c 617 LLVMValueRef inds[LP_MAX_VECTOR_WIDTH / 32]; local
625 inds[i] = lp_build_const_int32(gallivm, i);
626 io_ptrs[i] = LLVMBuildGEP(builder, io_ptr, &inds[i], 1, "");
647 val = LLVMBuildExtractElement(builder, cliptmp, inds[i], "");
651 io_ptrs[i], inds[i], val);
743 LLVMValueRef inds[LP_MAX_VECTOR_WIDTH / 32]; local
751 inds[i] = lp_build_const_int32(gallivm, i);
752 io_ptrs[i] = LLVMBuildGEP(builder, io_ptr, &inds[i], 1, "");
    [all...]

Completed in 6403 milliseconds