Searched defs:RAIIInt (Results 1 – 1 of 1) sorted by relevance
32 struct RAIIInt struct34 RAIIInt(int v_) : v(v_) { allocations++; } in RAIIInt() function35 ~RAIIInt() { deallocations++; } in ~RAIIInt() argument36 RAIIInt() { allocations++; } in RAIIInt() function37 RAIIInt(const RAIIInt &other) { v = other.v; allocations++; } in RAIIInt() argument38 RAIIInt(RAIIInt &&other) SPIRV_CROSS_NOEXCEPT { v = other.v; allocations++; } in RAIIInt() function47 SmallVector<RAIIInt, 2> ints; in propagate_stack_to_heap() argument