Lines Matching defs:int32_t
29 explicit AtomicInteger(int32_t value) : value_(value) { }
32 void store(int32_t desired) {
36 AtomicInteger& operator=(int32_t desired) {
41 int32_t load() const {
45 operator int32_t() const {
49 int32_t fetch_add(const int32_t value) {
53 int32_t fetch_sub(const int32_t value) {
57 int32_t operator++() {
61 int32_t operator++(int32_t) {
65 int32_t operator--() {
69 int32_t operator--(int32_t) {
73 bool compare_and_swap(int32_t expected_value, int32_t desired_value) {
78 volatile int32_t value_;