Home
last modified time | relevance | path

Searched refs:p_tmp (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/apr-util/strmatch/
H A Dapr_strmatch.c45 const char *p_tmp = p_end; in match_boyer_moore_horspool() local
46 while (*s_tmp == *p_tmp) { in match_boyer_moore_horspool()
47 p_tmp--; in match_boyer_moore_horspool()
48 if (p_tmp < p_start) { in match_boyer_moore_horspool()
69 const char *p_tmp = p_end; in match_boyer_moore_horspool_nocase() local
70 while (apr_tolower(*s_tmp) == apr_tolower(*p_tmp)) { in match_boyer_moore_horspool_nocase()
71 p_tmp--; in match_boyer_moore_horspool_nocase()
72 if (p_tmp < p_start) { in match_boyer_moore_horspool_nocase()
/freebsd-13.1/sys/dev/qlnx/qlnxe/
H A Decore_hw.c1099 u32 *p_tmp; in ecore_dmae_sanity() local
1110 for (p_tmp = (u32 *)p_virt; in ecore_dmae_sanity()
1111 p_tmp < (u32 *)((u8 *)p_virt + size); in ecore_dmae_sanity()
1112 p_tmp++) { in ecore_dmae_sanity()
1114 val = (u32)(osal_uintptr_t)p_tmp; in ecore_dmae_sanity()
1115 *p_tmp = val; in ecore_dmae_sanity()
1138 for (p_tmp = (u32 *)((u8 *)p_virt + size); in ecore_dmae_sanity()
1140 p_tmp++) { in ecore_dmae_sanity()
1142 val = (u32)(osal_uintptr_t)p_tmp - size; in ecore_dmae_sanity()
1144 if (*p_tmp != val) { in ecore_dmae_sanity()
[all …]
H A Decore_mcp.c191 struct ecore_mcp_cmd_elem *p_cmd_elem = OSAL_NULL, *p_tmp; in ecore_mcp_free() local
197 OSAL_LIST_FOR_EACH_ENTRY_SAFE(p_cmd_elem, p_tmp, in ecore_mcp_free()
/freebsd-13.1/sbin/rcorder/
H A Drcorder.c890 f_provnode *p, *p_tmp; in do_file() local
954 p_tmp = p; in do_file()
964 free(p_tmp); in do_file()
/freebsd-13.1/sys/net/
H A Dif_vlan.c1042 struct ifnet *p_tmp = vlan_clone_match_ethervid(name, &vid); in vlan_clone_create() local
1043 if (p_tmp != NULL) { in vlan_clone_create()
1049 if_rele(p_tmp); in vlan_clone_create()
1050 if (p != p_tmp) in vlan_clone_create()
1053 p = p_tmp; in vlan_clone_create()