Home
last modified time | relevance | path

Searched refs:allocaPtr (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/clang/test/Analysis/
Dcxx-uninitialized-object-ptr-ref.cpp71 void *allocaPtr; member
74 UntypedAllocaTest() : allocaPtr(__builtin_alloca(sizeof(int))) { in UntypedAllocaTest()
84 int *allocaPtr; // expected-note{{uninitialized pointee 'this->allocaPtr'}} member
88 : allocaPtr(static_cast<int *>(__builtin_alloca(sizeof(int)))) {} in TypedAllocaTest1()
96 int *allocaPtr; member
100 : allocaPtr(static_cast<int *>(__builtin_alloca(sizeof(int)))) { in TypedAllocaTest2()
101 *allocaPtr = 55555; in TypedAllocaTest2()
/external/lzma/C/
DMtDec.h53 void *allocaPtr; member
DMtDec.c869 t->allocaPtr = alloca(t->index * 128); in ThreadFunc()