Lines Matching defs:common

4955  * ieee80211_mle_common_size - check multi-link element common size
4963 u8 common = 0;
4977 common += ETH_ALEN;
4978 return common;
4984 return sizeof(*mle) + common + mle->variable[0];
5000 const u8 *common = mle->variable;
5002 /* common points now at the beginning of ieee80211_mle_basic_common_info */
5003 common += sizeof(struct ieee80211_mle_basic_common_info);
5008 return *common;
5026 const u8 *common = mle->variable;
5028 /* common points now at the beginning of ieee80211_mle_basic_common_info */
5029 common += sizeof(struct ieee80211_mle_basic_common_info);
5035 common += 1;
5037 return *common;
5054 const u8 *common = mle->variable;
5056 /* common points now at the beginning of ieee80211_mle_basic_common_info */
5057 common += sizeof(struct ieee80211_mle_basic_common_info);
5063 common += 1;
5065 common += 1;
5067 return get_unaligned_le16(common);
5083 const u8 *common = mle->variable;
5085 /* common points now at the beginning of ieee80211_mle_basic_common_info */
5086 common += sizeof(struct ieee80211_mle_basic_common_info);
5092 common += 1;
5094 common += 1;
5096 common += 2;
5098 return get_unaligned_le16(common);
5115 const u8 *common = mle->variable;
5118 * common points now at the beginning of
5121 common += sizeof(struct ieee80211_mle_basic_common_info);
5127 common += 1;
5129 common += 1;
5131 common += 2;
5133 common += 2;
5135 return get_unaligned_le16(common);
5151 const u8 *common = mle->variable;
5154 * common points now at the beginning of
5157 common += sizeof(struct ieee80211_mle_basic_common_info);
5163 common += 1;
5165 common += 1;
5167 common += 2;
5169 common += 2;
5171 common += 2;
5173 return *common;
5185 u8 common = 0;
5196 common += sizeof(struct ieee80211_mle_basic_common_info);
5199 common += 1;
5201 common += 1;
5203 common += 2;
5205 common += 2;
5207 common += 2;
5209 common += 1;
5212 common += sizeof(struct ieee80211_mle_preq_common_info);
5214 common += 1;
5219 common += ETH_ALEN;
5222 common += sizeof(struct ieee80211_mle_tdls_common_info);
5227 common += ETH_ALEN;
5234 if (len < fixed + common)
5240 /* if present, common length is the first octet there */
5241 return mle->variable[0] >= common;