/external/clang/test/SemaCXX/ |
typo-correction.cpp | 10 int _val_; member in class:error_condition 12 error_condition() : _val_(0) {} 15 : _val_(_val) {}
|
/external/llvm/include/llvm/Support/ |
system_error.h | 678 int _val_; member in class:llvm::error_condition 681 error_condition() : _val_(0), _cat_(&generic_category()) {} 684 : _val_(_val), _cat_(&_cat) {} 693 _val_ = _val; 707 _val_ = 0; 711 int value() const {return _val_;} 720 return _val_ == 0 ? 0 : unspecified_bool_true; 736 int _val_; member in class:llvm::error_code 739 error_code() : _val_(0), _cat_(&system_category()) {} 742 : _val_(_val), _cat_(&_cat) { [all...] |
/external/llvm/lib/Support/ |
system_error.cpp | 112 return _cat_->message(_val_); 119 return _cat_->message(_val_);
|
/external/wpa_supplicant_6/wpa_supplicant/src/common/ |
ieee802_11_defs.h | 391 #define SET_2BIT_U8(_ptr_, _shift_, _val_) \ 394 (((u8)(_val_) & 3) << _shift_))) 399 #define SET_2BIT_LE16(_u16ptr_, _shift_, _val_) \ 403 (((u16)(_val_) & (u16)3) << (u16)(_shift_))))) 408 #define SET_2BIT_LE32(_u32ptr_, _shift_, _val_) \ 411 (((u32)(_val_) & 3) << _shift_)))) 416 #define SET_3BIT_LE16(_u16ptr_, _shift_, _val_) \ 419 (((u16)(_val_) & 7) << _shift_)))) 424 #define SET_3BIT_LE32(_u32ptr_, _shift_, _val_) \ 427 (((u32)(_val_) & 7) << _shift_))) [all...] |