Home | History | Annotate | Download | only in base

Lines Matching refs:V8_INLINE

23   V8_INLINE T Increment(T increment) {
29 V8_INLINE T Decrement(T decrement) {
34 V8_INLINE T Value() const {
38 V8_INLINE void SetValue(T new_value) {
42 V8_INLINE T operator=(T value) {
47 V8_INLINE T operator+=(T value) { return Increment(value); }
48 V8_INLINE T operator-=(T value) { return Decrement(value); }
70 V8_INLINE bool TrySetValue(T old_value, T new_value) {
77 V8_INLINE T Value() const {
81 V8_INLINE void SetValue(T new_value) {
120 V8_INLINE T Value() const {
124 V8_INLINE bool TrySetValue(T old_value, T new_value) {
131 V8_INLINE void SetBits(T bits, T mask) {
141 V8_INLINE void SetBit(int bit) {
145 V8_INLINE void ClearBit(int bit) { SetBits(0, 1 << bit); }
147 V8_INLINE void SetValue(T new_value) {
242 V8_INLINE base::AtomicWord ToIntegral() const {
246 V8_INLINE base::AtomicWord Mask(E element) const {