Home
last modified time | relevance | path

Searched defs:RAIIInt (Results 1 – 1 of 1) sorted by relevance

/third_party/skia/third_party/externals/spirv-cross/tests-other/
Dsmall_vector.cpp32 struct RAIIInt struct
34 RAIIInt(int v_) : v(v_) { allocations++; } in RAIIInt() function
35 ~RAIIInt() { deallocations++; } in ~RAIIInt() argument
36 RAIIInt() { allocations++; } in RAIIInt() function
37 RAIIInt(const RAIIInt &other) { v = other.v; allocations++; } in RAIIInt() argument
38 RAIIInt(RAIIInt &&other) SPIRV_CROSS_NOEXCEPT { v = other.v; allocations++; } in RAIIInt() function
47 SmallVector<RAIIInt, 2> ints; in propagate_stack_to_heap() argument