| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | alsa.c | 55 int cand = -1; in select_format() local 67 cand = i; in select_format() 69 } else if (cand == -1) /* don't overwrite a candidate that in select_format() 71 cand = i; /* will work, but encoding differs */ in select_format() 74 if (cand != -1) in select_format() 84 if (cand == -1) { in select_format() 89 if (*nbits_ != formats[cand].bits || *encoding_ != formats[cand].enc) { in select_format() 92 *nbits_ = formats[cand].bits; in select_format() 93 *encoding_ = formats[cand].enc; in select_format() 95 lsx_debug("selecting format %d: %s (%s)", cand, in select_format() [all …]
|
| /OK3568_Linux_fs/kernel/net/batman-adv/ |
| H A D | routing.c | 549 struct batadv_orig_ifinfo *cand, *first_candidate = NULL; in batadv_find_router() local 581 hlist_for_each_entry_rcu(cand, &orig_node->ifinfo_list, list) { in batadv_find_router() 583 if (!kref_get_unless_zero(&cand->refcount)) in batadv_find_router() 586 cand_router = rcu_dereference(cand->router); in batadv_find_router() 599 cand->if_outgoing, router, in batadv_find_router() 610 kref_get(&cand->refcount); in batadv_find_router() 611 first_candidate = cand; in batadv_find_router() 620 next_candidate = cand; in batadv_find_router() 625 if (last_candidate == cand) in batadv_find_router() 633 batadv_orig_ifinfo_put(cand); in batadv_find_router()
|
| H A D | distributed-arp-table.c | 687 struct batadv_dat_candidate *cand; in batadv_dat_forward_data() local 689 cand = batadv_dat_select_candidates(bat_priv, ip, vid); in batadv_dat_forward_data() 690 if (!cand) in batadv_dat_forward_data() 696 if (cand[i].type == BATADV_DAT_CANDIDATE_NOT_FOUND) in batadv_dat_forward_data() 699 neigh_node = batadv_orig_router_get(cand[i].orig_node, in batadv_dat_forward_data() 706 cand[i].orig_node, in batadv_dat_forward_data() 732 batadv_orig_node_put(cand[i].orig_node); in batadv_dat_forward_data() 736 kfree(cand); in batadv_dat_forward_data()
|
| /OK3568_Linux_fs/kernel/net/ipv4/ |
| H A D | ip_tunnel.c | 88 struct ip_tunnel *t, *cand = NULL; in ip_tunnel_lookup() local 108 cand = t; in ip_tunnel_lookup() 122 else if (!cand) in ip_tunnel_lookup() 123 cand = t; in ip_tunnel_lookup() 142 else if (!cand) in ip_tunnel_lookup() 143 cand = t; in ip_tunnel_lookup() 155 else if (!cand) in ip_tunnel_lookup() 156 cand = t; in ip_tunnel_lookup() 159 if (cand) in ip_tunnel_lookup() 160 return cand; in ip_tunnel_lookup()
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | build-id.c | 526 struct str_node *nd, *cand = NULL; in build_id_cache__complement() local 541 if (cand) { /* Error: There are more than 2 candidates. */ in build_id_cache__complement() 542 cand = NULL; in build_id_cache__complement() 545 cand = nd; in build_id_cache__complement() 547 if (cand) in build_id_cache__complement() 548 sbuild_id = strdup(cand->s); in build_id_cache__complement()
|
| /OK3568_Linux_fs/kernel/mm/ |
| H A D | memblock.c | 235 phys_addr_t this_start, this_end, cand; in __memblock_find_range_bottom_up() local 242 cand = round_up(this_start, align); in __memblock_find_range_bottom_up() 243 if (cand < this_end && this_end - cand >= size) in __memblock_find_range_bottom_up() 244 return cand; in __memblock_find_range_bottom_up() 270 phys_addr_t this_start, this_end, cand; in __memblock_find_range_top_down() local 281 cand = round_down(this_end - size, align); in __memblock_find_range_top_down() 282 if (cand >= this_start) in __memblock_find_range_top_down() 283 return cand; in __memblock_find_range_top_down()
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/keyboard/pinyin/share/ |
| H A D | ngram.cpp | 299 double cand = freqs[freq_pos]; in build_unigram() local 301 if (freq_codes_df_[i] == cand) { in build_unigram()
|
| /OK3568_Linux_fs/kernel/tools/lib/bpf/ |
| H A D | btf.c | 3560 struct btf_type *cand; in btf_dedup_prim_type() local 3585 cand = btf_type_by_id(d->btf, cand_id); in btf_dedup_prim_type() 3586 if (btf_equal_int(t, cand)) { in btf_dedup_prim_type() 3597 cand = btf_type_by_id(d->btf, cand_id); in btf_dedup_prim_type() 3598 if (btf_equal_enum(t, cand)) { in btf_dedup_prim_type() 3604 if (btf_compat_enum(t, cand)) { in btf_dedup_prim_type() 3620 cand = btf_type_by_id(d->btf, cand_id); in btf_dedup_prim_type() 3621 if (btf_equal_common(t, cand)) { in btf_dedup_prim_type() 4117 struct btf_type *t, *cand; in btf_dedup_ref_type() local 4145 cand = btf_type_by_id(d->btf, cand_id); in btf_dedup_ref_type() [all …]
|
| /OK3568_Linux_fs/kernel/net/xfrm/ |
| H A D | xfrm_policy.c | 192 xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand, 1659 struct xfrm_pol_inexact_candidates cand; in xfrm_policy_bysel_ctx() local 1669 if (!xfrm_policy_find_inexact_candidates(&cand, bin, in xfrm_policy_bysel_ctx() 1677 for (i = 0; i < ARRAY_SIZE(cand.res); i++) { in xfrm_policy_bysel_ctx() 1680 tmp = __xfrm_policy_bysel_ctx(cand.res[i], mark, in xfrm_policy_bysel_ctx() 1954 xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand, in xfrm_policy_find_inexact_candidates() argument 1966 memset(cand, 0, sizeof(*cand)); in xfrm_policy_find_inexact_candidates() 1967 cand->res[XFRM_POL_CAND_ANY] = &b->hhead; in xfrm_policy_find_inexact_candidates() 1972 cand->res[XFRM_POL_CAND_DADDR] = &n->hhead; in xfrm_policy_find_inexact_candidates() 1976 cand->res[XFRM_POL_CAND_BOTH] = &n->hhead; in xfrm_policy_find_inexact_candidates() [all …]
|
| /OK3568_Linux_fs/kernel/net/ipv6/ |
| H A D | ip6_tunnel.c | 148 struct ip6_tnl *t, *cand = NULL; in ip6_tnl_lookup() local 161 cand = t; in ip6_tnl_lookup() 174 else if (!cand) in ip6_tnl_lookup() 175 cand = t; in ip6_tnl_lookup() 187 else if (!cand) in ip6_tnl_lookup() 188 cand = t; in ip6_tnl_lookup() 191 if (cand) in ip6_tnl_lookup() 192 return cand; in ip6_tnl_lookup()
|
| H A D | ip6_gre.c | 123 struct ip6_tnl *t, *cand = NULL; in ip6gre_tunnel_lookup() local 152 cand = t; in ip6gre_tunnel_lookup() 176 cand = t; in ip6gre_tunnel_lookup() 202 cand = t; in ip6gre_tunnel_lookup() 225 cand = t; in ip6gre_tunnel_lookup() 230 if (cand) in ip6gre_tunnel_lookup() 231 return cand; in ip6gre_tunnel_lookup()
|
| /OK3568_Linux_fs/external/mpp/mpp/hal/vpu/vp8e/ |
| H A D | hal_vp8e_base.c | 761 HalVp8eRefPic *cand; in set_picbuf_ref() local 765 cand = &pic_buf->ref_pic[i]; in set_picbuf_ref() 766 if (cand == cur_pic) in set_picbuf_ref() 768 if (((cur_pic->ipf | cand->ipf) == cur_pic->ipf) && in set_picbuf_ref() 769 ((cur_pic->grf | cand->grf) == cur_pic->grf) && in set_picbuf_ref() 770 ((cur_pic->arf | cand->arf) == cur_pic->arf)) in set_picbuf_ref()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/ |
| H A D | rndis_wlan.c | 2994 struct ndis_80211_pmkid_candidate *cand = in rndis_wlan_pmkid_cand_list_indication() local 2996 bool preauth = !!(cand->flags & NDIS_80211_PMKID_CAND_PREAUTH); in rndis_wlan_pmkid_cand_list_indication() 2999 i, le32_to_cpu(cand->flags), preauth, cand->bssid); in rndis_wlan_pmkid_cand_list_indication() 3001 cfg80211_pmksa_candidate_notify(usbdev->net, i, cand->bssid, in rndis_wlan_pmkid_cand_list_indication()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | tree.h | 4595 extern bool check_lang_type (const_tree cand, const_tree base); 4599 extern bool check_base_type (const_tree cand, const_tree base);
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | tree.h | 4595 extern bool check_lang_type (const_tree cand, const_tree base); 4599 extern bool check_base_type (const_tree cand, const_tree base);
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/ |
| H A D | gcc.info | 11212 'iv-always-prune-cand-set-bound' 11883 'max-slsr-cand-scan'
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/ |
| H A D | gcc.info | 11212 'iv-always-prune-cand-set-bound' 11883 'max-slsr-cand-scan'
|