Searched refs:rsn (Results 1 - 5 of 5) sorted by relevance

/system/extras/libfec/include/fec/
H A Decc.h51 inline uint64_t fec_ecc_interleave(uint64_t offset, int rsn, uint64_t rounds) argument
53 return (offset / rsn) + (offset % rsn) * rounds * FEC_BLOCKSIZE;
/system/connectivity/shill/wifi/
H A Dwifi_endpoint_unittest.cc156 vector<uint8_t> rsn(IEEE_80211::kRSNIECipherCountOffset +
163 rsn[IEEE_80211::kRSNIECipherCountOffset] = pairwise_count & 0xff;
164 rsn[IEEE_80211::kRSNIECipherCountOffset + 1] = pairwise_count >> 8;
168 rsn[authkey_offset] = authkey_count & 0xff;
169 rsn[authkey_offset + 1] = authkey_count >> 8;
172 size_t capabilities_offset = rsn.size() - 2;
173 rsn[capabilities_offset] = capabilities & 0xff;
174 rsn[capabilities_offset + 1] = capabilities >> 8;
176 return rsn;
545 vector<uint8_t> rsn; local
558 vector<uint8_t> rsn = MakeRSNProperties( local
572 vector<uint8_t> rsn = MakeRSNProperties( local
585 vector<uint8_t> rsn = MakeRSNProperties( local
597 vector<uint8_t> rsn = MakeRSNProperties( local
610 vector<uint8_t> rsn = MakeRSNProperties( local
[all...]
/system/extras/libfec/
H A Dfec_open.cpp102 check(f->ecc.rsn > 0 && f->ecc.rsn < FEC_RSM);
151 f->ecc.rounds = fec_div_round_up(f->ecc.blocks, f->ecc.rsn);
537 f->ecc.rsn = FEC_RSM - roots;
H A Dfec_read.cpp116 int erasures[e->rsn];
122 for (int i = 0; i < e->rsn; ++i) {
123 uint64_t interleaved = fec_ecc_interleave(rsb * e->rsn + i, e->rsn,
161 if (!raw_pread(f, &ecc_data[i * FEC_RSM + e->rsn], e->roots,
H A Dfec_private.h70 int rsn; member in struct:ecc_info

Completed in 53 milliseconds