Searched refs:pmatch (Results 1 – 7 of 7) sorted by relevance
/linux-6.3-rc2/tools/bpf/ |
A D | bpf_jit_disasm.c | 180 regmatch_t pmatch[1]; in get_last_jit_image() local 193 memset(pmatch, 0, sizeof(pmatch)); in get_last_jit_image() 196 ret = regexec(®ex, ptr, 1, pmatch, 0); in get_last_jit_image() 198 ptr += pmatch[0].rm_eo; in get_last_jit_image() 199 off += pmatch[0].rm_eo; in get_last_jit_image() 205 ptr = haystack + off - (pmatch[0].rm_eo - pmatch[0].rm_so); in get_last_jit_image()
|
/linux-6.3-rc2/tools/perf/arch/x86/util/ |
A D | header.c | 98 regmatch_t pmatch[1]; in strcmp_cpuid_str() local 119 match = !regexec(&re, id, 1, pmatch, 0); in strcmp_cpuid_str() 122 size_t match_len = (pmatch[0].rm_eo - pmatch[0].rm_so); in strcmp_cpuid_str()
|
/linux-6.3-rc2/tools/mm/ |
A D | page_owner_sort.c | 234 regmatch_t pmatch[2]; in search_pattern() local 236 err = regexec(pattern, buf, 2, pmatch, REG_NOTBOL); in search_pattern() 237 if (err != 0 || pmatch[1].rm_so == -1) { in search_pattern() 242 val_len = pmatch[1].rm_eo - pmatch[1].rm_so; in search_pattern() 244 memcpy(pattern_str, buf + pmatch[1].rm_so, val_len); in search_pattern()
|
/linux-6.3-rc2/drivers/net/wireless/marvell/mwifiex/ |
A D | scan.c | 2119 struct cfg80211_wowlan_nd_match *pmatch; in mwifiex_ret_802_11_scan() local 2218 kzalloc(sizeof(*pmatch) + sizeof(u32), in mwifiex_ret_802_11_scan() 2221 pmatch = adapter->nd_info->matches[idx]; in mwifiex_ret_802_11_scan() 2223 if (pmatch) { in mwifiex_ret_802_11_scan() 2224 pmatch->n_channels = 1; in mwifiex_ret_802_11_scan() 2225 pmatch->channels[0] = chan_band->chan_number; in mwifiex_ret_802_11_scan()
|
/linux-6.3-rc2/drivers/net/ethernet/natsemi/ |
A D | natsemi.c | 1390 u16 pmatch[3]; in natsemi_reset() local 1412 pmatch[i] = readw(ioaddr + RxFilterData); in natsemi_reset() 1451 writew(pmatch[i], ioaddr + RxFilterData); in natsemi_reset()
|
/linux-6.3-rc2/tools/perf/util/ |
A D | header.c | 837 regmatch_t pmatch[1]; in strcmp_cpuid_str() local 846 match = !regexec(&re, cpuid, 1, pmatch, 0); in strcmp_cpuid_str() 849 size_t match_len = (pmatch[0].rm_eo - pmatch[0].rm_so); in strcmp_cpuid_str()
|
/linux-6.3-rc2/drivers/net/ethernet/stmicro/stmmac/ |
A D | stmmac_main.c | 6316 __le16 pmatch = 0; in stmmac_vlan_update() local 6331 pmatch = cpu_to_le16(vid); in stmmac_vlan_update() 6335 return stmmac_update_vlan_hash(priv, priv->hw, hash, pmatch, is_double); in stmmac_vlan_update()
|
Completed in 34 milliseconds