Home
last modified time | relevance | path

Searched refs:initArray (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/clang/test/Analysis/diagnostics/
H A Dundef-value-param.c30 void initArray(int x, double XYZ[3]) { in initArray() function
40 initArray(x, XYZ); //expected-note {{Calling 'initArray'}} in testPassingParentRegionArray()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dregion-store.c50 int initArray(int *values);
53 initArray(values); in testConstraintOnRegionOffsetStack()
/llvm-project-15.0.7/lld/ELF/
H A DOutputSections.h150 static OutputSection *initArray; member
H A DOutputSections.cpp40 OutputSection *Out::initArray; member in Out
H A DWriter.cpp286 Out::initArray = nullptr; in createSyntheticSections()
1852 Out::initArray = findSection(".init_array"); in finalizeSections()
2234 define("__init_array_start", "__init_array_end", Out::initArray); in addStartEndSymbols()
H A DSyntheticSections.cpp1486 if (Out::initArray) { in computeContents()
1487 addInt(DT_INIT_ARRAY, Out::initArray->addr); in computeContents()
1488 addInt(DT_INIT_ARRAYSZ, Out::initArray->size); in computeContents()
/llvm-project-15.0.7/compiler-rt/lib/xray/
H A Dxray_buffer_queue.cpp105 Buffers = initArray<BufferRep>(BufferCount); in init()
H A Dxray_allocator.h139 T *initArray(size_t N, U &&... Us) XRAY_NEVER_INSTRUMENT { in initArray() function