Lines Matching refs:uint64_t
36 constexpr uint64_t FRONT_GUARD = 0x1;
37 constexpr uint64_t REAR_GUARD = 0x2;
38 constexpr uint64_t BACKTRACE = 0x4;
39 constexpr uint64_t FILL_ON_ALLOC = 0x8;
40 constexpr uint64_t FILL_ON_FREE = 0x10;
41 constexpr uint64_t EXPAND_ALLOC = 0x20;
42 constexpr uint64_t FREE_TRACK = 0x40;
43 constexpr uint64_t TRACK_ALLOCS = 0x80;
44 constexpr uint64_t LEAK_TRACK = 0x100;
45 constexpr uint64_t RECORD_ALLOCS = 0x200;
46 constexpr uint64_t BACKTRACE_FULL = 0x400;
47 constexpr uint64_t ABORT_ON_ERROR = 0x800;
48 constexpr uint64_t VERBOSE = 0x1000;
59 constexpr uint64_t HEADER_OPTIONS = FRONT_GUARD | REAR_GUARD;
67 uint64_t options() const { return options_; } in options()
98 uint64_t option;
158 uint64_t options_ = 0;