Home
last modified time | relevance | path

Searched refs:headerLength (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/ssv6xxx/smac/
H A Dwapi_sms4.c208 void WapiCryptoSms4Mic(u8 *iv, u8 *key, u8 *header, u32 headerLength, in WapiCryptoSms4Mic() argument
221 totalLength = headerLength + dataLength; in WapiCryptoSms4Mic()
222 …tmp_headerLength = ((headerLength & (TEXT_BYTES-1)) == 0) ? 0 : (TEXT_BYTES - (headerLength & (TEX… in WapiCryptoSms4Mic()
233 if ((dataLength == 0) && (headerLength == 0)) in WapiCryptoSms4Mic()
238 else if ( (headerLength == 0) && (tmp_headerLength == 0) ) in WapiCryptoSms4Mic()
245 else if( headerLength == 0 ) in WapiCryptoSms4Mic()
254 headerLength--; in WapiCryptoSms4Mic()
H A Dwapi_sms4.h20 void WapiCryptoSms4Mic(u8 *iv, u8 *Key, u8 *header, u16 headerLength,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Dhttp_file_source.cpp377 const size_t headerLength = strlen(header); in headerMatches() local
378 if (length < headerLength) { in headerMatches()
382 while (i < length && i < headerLength && std::tolower(buffer[i]) == std::tolower(header[i])) { in headerMatches()
385 return i == headerLength ? i : std::string::npos; in headerMatches()