HomeSort by: relevance | last modified time | path
    Searched defs:vla (Results 1 - 21 of 21) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
vla.c 23 int vla[n], i; local
26 vla[i] = i;
28 return n; /* vla-filled */
vla.f90 16 program vla program
43 end program vla
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
vla.c 23 int vla[n], i; local
26 vla[i] = i;
28 return n; /* vla-filled */
vla.f90 16 program vla program
43 end program vla
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
vla.f90 16 program vla program
72 end program vla
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
vla.f90 16 program vla program
72 end program vla
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
vla-ptr.c 35 int vla[n]; local
42 vla[i] = 2+i;
46 foo(n, vla);
47 bar(vla);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
vla-cxx.cc 38 int vla[z]; local
39 typeof (vla) &vlaref (vla);
40 typedef typeof (vla) &vlareftypedef;
41 vlareftypedef vlaref2 (vla);
43 typeof (vla) *ptr = nullptr;
46 ptr = &vla;
49 vla[i] = 5 + 2 * i;
52 vla[0] = 2 * vla[0]
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
vla-ptr.c 35 int vla[n]; local
42 vla[i] = 2+i;
46 foo(n, vla);
47 bar(vla);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
vla-cxx.cc 38 int vla[z]; local
39 typeof (vla) &vlaref (vla);
40 typedef typeof (vla) &vlareftypedef;
41 vlareftypedef vlaref2 (vla);
43 typeof (vla) *ptr = nullptr;
46 ptr = &vla;
49 vla[i] = 5 + 2 * i;
52 vla[0] = 2 * vla[0]
    [all...]
  /src/tests/usr.bin/xlint/lint1/
lang_level_c99.c 48 int vla[n]; local
51 typedef int sizeof_vla[-(int)sizeof(vla)];
52 return sizeof(vla);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
compile.c 130 int vla[bound]; local
compile-cplus.c 234 int vla[bound]; local
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
compile.c 130 int vla[bound]; local
compile-cplus.c 234 int vla[bound]; local
  /src/external/gpl3/gcc/dist/gcc/config/riscv/
riscv-protos.h 207 /* Common vector costs in any kind of vectorization (e.g VLA and VLS). */
244 /* scalable vectorization (VLA) specific cost. */
251 /* TODO: We will need more other kinds of vector cost for VLA.
288 /* Cost of an VLA modes operations. */
289 const scalable_vector_cost *vla; member in struct:cpu_vector_cost
537 VLA modes or VLS for VLS modes.
  /src/external/gpl3/gcc/dist/gcc/cp/
lambda.cc 438 /* Rebuild the VLA type from the pointer and maxindex. */
533 bool vla = false; local
554 vla = true;
559 /* For a VLA, we capture the address of the first element and the
560 maximum index, and then reconstruct the VLA for the proxy. */
663 DECL_VLA_CAPTURE_P (member) = vla;
1455 /* Look past normal, non-VLA capture proxies. */
cp-gimplify.cc 1584 /* If EXPR involves an anonymous VLA type, prepend a DECL_EXPR for that type
1585 to trigger gimplify_type_sizes; otherwise a cast to pointer-to-VLA confuses
1599 tree vla = type; local
1600 while (POINTER_TYPE_P (vla))
1602 if (TYPE_NAME (vla))
1604 vla = TREE_TYPE (vla);
1606 if (vla == type || TYPE_NAME (vla)
1607 || !variably_modified_type_p (vla, NULL_TREE)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
lambda.cc 428 /* Rebuild the VLA type from the pointer and maxindex. */
523 bool vla = false; local
544 vla = true;
549 /* For a VLA, we capture the address of the first element and the
550 maximum index, and then reconstruct the VLA for the proxy. */
636 DECL_VLA_CAPTURE_P (member) = vla;
1372 /* Look past normal, non-VLA capture proxies. */
cp-gimplify.cc 1150 /* If EXPR involves an anonymous VLA type, prepend a DECL_EXPR for that type
1151 to trigger gimplify_type_sizes; otherwise a cast to pointer-to-VLA confuses
1165 tree vla = type; local
1166 while (POINTER_TYPE_P (vla))
1168 if (TYPE_NAME (vla))
1170 vla = TREE_TYPE (vla);
1172 if (vla == type || TYPE_NAME (vla)
1173 || !variably_modified_type_p (vla, NULL_TREE)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.cpp 1830 /// \param sizeInChars - the total size of the VLA, in chars
1841 Builder.CreateElementBitCast(dest, CGF.Int8Ty, "vla.begin");
1843 begin.getElementType(), begin.getPointer(), sizeInChars, "vla.end");
1846 llvm::BasicBlock *loopBB = CGF.createBasicBlock("vla-init.loop");
1847 llvm::BasicBlock *contBB = CGF.createBasicBlock("vla-init.cont");
1849 // Make a loop over the VLA. C99 guarantees that the VLA element
1853 llvm::PHINode *cur = Builder.CreatePHI(begin.getType(), 2, "vla.cur");
1865 Builder.CreateInBoundsGEP(CGF.Int8Ty, cur, baseSizeInChars, "vla.next");
1867 // Leave if that's the end of the VLA
1893 const VariableArrayType *vla; local
2068 const VariableArrayType *vla = getContext().getAsVariableArrayType(type); local
2099 const VariableArrayType *vla = getContext().getAsVariableArrayType(type); local
    [all...]

Completed in 32 milliseconds