MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-ValidationLayers / Sub

Method Sub

layers/sync/sync_stats.cpp:47–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45void Value32::Update(uint32_t new_value) { u32.store(new_value); }
46uint32_t Value32::Add(uint32_t n) { return u32.fetch_add(n) + 1; }
47uint32_t Value32::Sub(uint32_t n) { return u32.fetch_sub(n) - 1; }
48
49void Value64::Update(uint64_t new_value) { u64.store(new_value); }
50uint64_t Value64::Add(uint64_t n) { return u64.fetch_add(n) + 1; }

Callers 5

RemoveTimelineSignalsMethod · 0.80
RemoveUnresolvedBatchMethod · 0.80
RemoveHandleRecordMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected