HomeSort by relevance Sort by last modified time
    Searched refs:vla (Results 1 - 25 of 30) sorted by null

1 2

  /external/clang/test/Analysis/
vla.c 8 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has zero size}} local
13 int vla[x]; // expected-warning{{Declared variable-length array (VLA) uses a garbage value as its size}} local
18 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has negative size}} local
22 int vla[x]; // no-warning local
35 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has negative size}} local
40 int vla[x]; // no-warnin local
45 int vla[x]; \/\/ expected-warning{{Declared variable-length array (VLA) has negative size}} local
50 int vla[x]; \/\/ no-warning local
55 int vla[x + 2]; \/\/ no-warning local
60 int vla[x - 2]; \/\/ expected-warning{{Declared variable-length array (VLA) has negative size}} local
65 int vla[x]; \/\/ no-warning local
70 int vla[x]; \/\/ expected-warning{{Declared variable-length array (VLA) has negative size}} local
80 int vla[x]; \/\/ no-warning local
    [all...]
cxx-crashes.cpp 62 void vla(int n) { function
68 // This struct is POD, though, so it should be fine to put it in a VLA.
outofbound.c 58 void vla(int a) { function
padding_c.c 112 // Currently ignoring VLA padding problems. Still need to make sure we don't
118 int vla[]; member in struct:HoldsVLA
taint-generic.c 184 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has tainted size}} local
  /external/clang/test/CodeGen/
debug-info-vla.c 7 // CHECK: ![[VAR]] = !DILocalVariable(name: "vla",{{.*}} line: [[@LINE+2]]
9 int vla[s]; local
12 vla[i] = i*i;
varargs.c 18 void vla(int n, ...) function
vla.c 5 // Extremely basic VLA test
18 int vla[x]; local
19 return vla[x-1];
114 // VLA captures.
  /external/clang/test/Sema/
c11-typedef-redef.c 12 typedef int vla[N]; // expected-note{{previous definition is here}} typedef
13 typedef int vla[N]; // expected-error{{redefinition of typedef for variably-modified type 'int [N]'}} typedef
scope-check.c 13 typedef int a[x]; // expected-note {{jump bypasses initialization of VLA typedef}}
155 typedef int A[n]; // expected-note {{jump bypasses initialization of VLA typedef}}
197 int vla[n];
209 int vla[n];
211 vla[n-1] = 0;
218 // PR8473: IR gen can't deal with indirect gotos past VLA
227 char vla[n]; // expected-note {{jump bypasses initialization}}
229 vla[0] = 'a';
block-misc.c 205 int vla[n]; // expected-note {{declared here}}
207 vla[1] = 4341;
209 (void)vla[1]; // expected-error {{cannot refer to declaration with a variably modified type inside block}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p4.cpp 50 typedef int vla[N];
51 auto l2 = [] () -> vla { }; // expected-error{{function cannot return array type 'vla' (aka 'int [N]')}}
  /external/swiftshader/third_party/subzero/crosstest/
test_stacksave.c 20 /* NOTE: This has 0 stacksaves, because the vla isn't in a loop,
21 * so the vla can just be freed by the epilogue.
24 uint32_t vla[size]; local
27 vla[i] = i + inc;
29 return (vla[start] << 2) + (vla[mid] << 1) + vla[size - 1];
34 /* NOTE: This has 1 stacksave, because the vla is in a loop and should
41 uint32_t vla[size1]; local
44 vla[j] = foo(start * j + inc)
    [all...]
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
vector_laplace_diag_test.py 130 vla = ds.VectorLaplaceDiag(
134 vla.covariance().eval())
136 vla = ds.VectorLaplaceDiag(
139 self.assertAllEqual([2], vla.batch_shape)
140 self.assertAllEqual([3], vla.event_shape)
148 vla.covariance().eval())
150 vla = ds.VectorLaplaceDiag(
153 self.assertAllEqual([2], vla.batch_shape)
154 self.assertAllEqual([3], vla.event_shape)
162 vla.covariance().eval()
    [all...]
  /external/clang/test/SemaCXX/
c99-variable-length-array-cxx11.cpp 20 void vla(int N) { function
c99-variable-length-array.cpp 16 void vla(int N) { function
66 // Template argument deduction does not allow deducing a size from a VLA.
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 28 int vla[n]; local
29 f0(0, vla); // expected-error{{no matching function for call to 'f0'}}
  /build/make/core/clang/
config.mk 19 vla-bound \
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 1456 const VariableArrayType *vla; local
1635 const VariableArrayType *vla = getContext().getAsVariableArrayType(type); local
    [all...]
CGDecl.cpp 364 // We can't have a VLA here, but we can have a pointer to a VLA,
366 // Make sure to evaluate VLA bounds now so that we have them for later.
1088 llvm::AllocaInst *vla = Builder.CreateAlloca(llvmTy, elementCount, "vla"); local
    [all...]
CGExpr.cpp     [all...]
CGExprScalar.cpp     [all...]
  /external/clang/test/OpenMP/
target_map_codegen.cpp 608 double vla[2][a]; local
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_pipeline_cache.c 231 uint32_t vla[1 + DIV_ROUND_UP(key_size, sizeof(uint32_t))]; local
232 struct anv_shader_bin_key *key = (void *)vla;
  /build/soong/cc/
sanitize.go 338 "vla-bound",

Completed in 404 milliseconds

1 2