Searched refs:_size_ (Results 1 – 5 of 5) sorted by relevance
| /xnu-11215.1.10/EXTERNAL_HEADERS/corecrypto/ |
| H A D | ccmode.h | 27 #define ccecb_ctx_decl(_size_, _name_) cc_ctx_decl_vla(ccecb_ctx, _size_, _name_) argument 28 #define ccecb_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument 58 #define cccbc_ctx_decl(_size_, _name_) cc_ctx_decl_vla(cccbc_ctx, _size_, _name_) argument 59 #define cccbc_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument 63 #define cccbc_iv_decl(_size_, _name_) cc_ctx_decl_vla(cccbc_iv, _size_, _name_) argument 64 #define cccbc_iv_clear(_size_, _name_) cc_clear(_size_, _name_) argument 111 #define cccfb_ctx_decl(_size_, _name_) cc_ctx_decl_vla(cccfb_ctx, _size_, _name_) argument 112 #define cccfb_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument 134 #define cccfb8_ctx_decl(_size_, _name_) cc_ctx_decl_vla(cccfb8_ctx, _size_, _name_) argument 135 #define cccfb8_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument [all …]
|
| H A D | cc.h | 111 #define cc_pad_align(_size_) ((_size_ + CC_MAX_ALIGNMENT - 1) & (~(CC_MAX_ALIGNMENT - 1))) argument 114 #define cc_ctx_n(_type_, _size_) ((_size_ + sizeof(_type_) - 1) / sizeof(_type_)) argument 134 #define cc_ctx_sizeof(_type_, _size_) \ argument 136 sizeof(_type_[cc_ctx_n(_type_, _size_)]) \ 148 #define cc_ctx_decl(_type_, _size_, _name_) _type_ * _name_ = (_type_ *) _alloca(sizeof(_type_) * … argument 155 #define cc_ctx_decl(_type_, _size_, _name_) \ 156 _type_ _name_ [cc_ctx_n(_type_, _size_)]; 160 #define cc_ctx_decl(_type_, _size_, _name_) \ 162 _type_ _name_ [cc_ctx_n(_type_, _size_)]; \ 169 #define cc_ctx_decl_field(_type_, _size_, _name_) \ argument [all …]
|
| H A D | ccmode_siv_hmac.h | 22 #define ccsiv_hmac_ctx_decl(_size_, _name_) cc_ctx_decl_vla(ccsiv_hmac_ctx, _size_, _name_) argument 23 #define ccsiv_hmac_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument
|
| H A D | ccmode_siv.h | 21 #define ccsiv_ctx_decl(_size_, _name_) cc_ctx_decl_vla(ccsiv_ctx, _size_, _name_) argument 22 #define ccsiv_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument
|
| H A D | ccn.h | 54 #define ccn_nof_size(_size_) (((_size_) + sizeof(cc_unit) - 1) / sizeof(cc_unit)) argument 62 #define ccn_bitsof_size(_size_) ((_size_) * 8) argument 65 #define ccn_sizeof_size(_size_) ccn_sizeof_n(ccn_nof_size(_size_)) argument
|