Home
last modified time | relevance | path

Searched refs:rem (Results 1 – 8 of 8) sorted by relevance

/hardware/broadcom/wlan/bcmdhd/wifi_hal/
Dcpp_bindings.h93 int rem; variable
97 rem = nla_len(attr); in nl_iterator()
100 return nla_ok(pos, rem); in has_next()
103 pos = (struct nlattr *)nla_next(pos, &(rem)); in next()
348 #define for_each_attr(pos, nla, rem) \ argument
349 for (pos = (nlattr *)nla_data(nla), rem = nla_len(nla); \
350 nla_ok(pos, rem); \
351 pos = (nlattr *)nla_next(pos, &(rem)))
/hardware/qcom/wlan/qcwcn/wifi_hal/
Dgscan_event_handler.cpp228 int rem = 0; in gscan_parse_hotlist_ap_results() local
234 rem = nla_len(tb_vendor[ in gscan_parse_hotlist_ap_results()
237 nla_ok(scanResultsInfo, rem); in gscan_parse_hotlist_ap_results()
238 scanResultsInfo = nla_next(scanResultsInfo, &(rem))) in gscan_parse_hotlist_ap_results()
361 int rem = 0; in gscan_get_significant_change_results() local
369 rem = nla_len(tb_vendor[ in gscan_get_significant_change_results()
371 nla_ok(scanResultsInfo, rem); in gscan_get_significant_change_results()
372 scanResultsInfo = nla_next(scanResultsInfo, &(rem))) in gscan_get_significant_change_results()
472 int rem = 0; in gscan_parse_hotlist_ssid_results() local
477 rem = nla_len(tb_vendor[ in gscan_parse_hotlist_ssid_results()
[all …]
Dcpp_bindings.h110 int rem; variable
114 rem = nla_len(attr); in nl_iterator()
117 return nla_ok(pos, rem); in has_next()
120 pos = (struct nlattr *)nla_next(pos, &(rem)); in next()
466 #define for_each_attr(pos, nla, rem) \ argument
467 for (pos = (nlattr *)nla_data(nla), rem = nla_len(nla); \
468 nla_ok(pos, rem); \
469 pos = (nlattr *)nla_next(pos, &(rem)))
Dllstats.cpp452 int rem; in get_wifi_peer_info() local
502 …*) nla_data(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_RATE_INFO]), rem = nla_len(tb_vendor… in get_wifi_peer_info()
503 nla_ok(rateInfo, rem); in get_wifi_peer_info()
504 rateInfo = nla_next(rateInfo, &(rem))) in get_wifi_peer_info()
524 int i=0, rem; in get_wifi_iface_stats() local
661 rem = nla_len(tb_vendor[ in get_wifi_iface_stats()
663 nla_ok(wmmInfo, rem); in get_wifi_iface_stats()
664 wmmInfo = nla_next(wmmInfo, &(rem))) in get_wifi_iface_stats()
688 int rem; in get_wifi_radio_stats() local
794 …for (chInfo = (struct nlattr *) nla_data(tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CH_INFO]), rem = … in get_wifi_radio_stats()
[all …]
Dtdls.cpp110 int rem; in handleEvent() local
201 int rem; in handleResponse() local
Dgscan.cpp1817 int rem = 0, remResults = 0; in gscan_get_cached_results() local
1824 rem = nla_len(tb_vendor[ in gscan_get_cached_results()
1826 nla_ok(scanResultsInfo, rem) && i < mGetCachedResultsRspParams->max; in gscan_get_cached_results()
1827 scanResultsInfo = nla_next(scanResultsInfo, &(rem))) in gscan_get_cached_results()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/include/
Dcavl_impl.h777 L_BIT_ARR_DEFN(rem) in L_()
808 L_BIT_ARR_1(rem, depth) in L_()
810 L_BIT_ARR_0(rem, depth) in L_()
863 num_sub += L_BIT_ARR_VAL(rem, depth) ? 0 : 1; in L_()
892 num_sub += L_BIT_ARR_VAL(rem, depth) ? 1 : 0; in L_()
/hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/
DOMX_VideoDec_Utils.c6107 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);