Searched defs:rem (Results 1 - 6 of 6) sorted by relevance
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
H A D | gscan_event_handler.cpp | 146 int rem = 0; local 152 rem = nla_len(tb_vendor[ 155 nla_ok(scanResultsInfo, rem); 156 scanResultsInfo = nla_next(scanResultsInfo, &(rem))) 284 int rem = 0; local 292 rem = nla_len(tb_vendor[ 294 nla_ok(scanResultsInfo, rem); 295 scanResultsInfo = nla_next(scanResultsInfo, &(rem))) 804 int rem = 0; local 874 rem [all...] |
H A D | llstats.cpp | 258 int rem; local 277 for (rateInfo = (struct nlattr *) nla_data(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_RATE_INFO]), rem = nla_len(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_RATE_INFO]); 278 nla_ok(rateInfo, rem); 279 rateInfo = nla_next(rateInfo, &(rem))) 293 int i=0, rem; local 310 for (wmmInfo = (struct nlattr *) nla_data(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_INFO]), rem = nla_len(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_INFO]); 311 nla_ok(wmmInfo, rem); 312 wmmInfo = nla_next(wmmInfo, &(rem))) 326 int rem; local 346 for (chInfo = (struct nlattr *) nla_data(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CH_INFO]), rem 380 int rem; local 446 int rem; local [all...] |
H A D | cpp_bindings.h | 110 int rem; member in class:nl_iterator 114 rem = nla_len(attr); 117 return nla_ok(pos, rem); 120 pos = (struct nlattr *)nla_next(pos, &(rem)); 404 #define for_each_attr(pos, nla, rem) \ 405 for (pos = (nlattr *)nla_data(nla), rem = nla_len(nla); \ 406 nla_ok(pos, rem); \ 407 pos = (nlattr *)nla_next(pos, &(rem)))
|
H A D | gscan.cpp | 1440 int rem = 0; local 1446 rem = nla_len(tb_vendor[ 1449 nla_ok(scanResultsInfo, rem); 1450 scanResultsInfo = nla_next(scanResultsInfo, &(rem)))
|
/hardware/broadcom/wlan/bcmdhd/wifi_hal/ |
H A D | cpp_bindings.h | 93 int rem; member in class:nl_iterator 97 rem = nla_len(attr); 100 return nla_ok(pos, rem); 103 pos = (struct nlattr *)nla_next(pos, &(rem)); 342 #define for_each_attr(pos, nla, rem) \ 343 for (pos = (nlattr *)nla_data(nla), rem = nla_len(nla); \ 344 nla_ok(pos, rem); \ 345 pos = (nlattr *)nla_next(pos, &(rem)))
|
/hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/ |
H A D | OMX_VideoDec_Utils.c | 6107 OMX_U32 rem = 0; /* modulus */ local 6137 rem = (off + fl) % 4; 6138 if (rem > 0) { 6139 pad = 4 - rem; 6144 OMX_PRINT1(pComponentPrivate->dbg,"off=%d,fl=%d,rem=%d,pad=%d,len=%d\n", off, fl, rem, pad, len);
|
Completed in 1144 milliseconds