/freebsd/contrib/less/ |
H A D | search.c | 295 POSITION epos; in clear_attn() local 317 epos = position(sindex+1); in clear_attn() 319 (epos == NULL_POSITION || epos > old_start_attnpos)) in clear_attn() 488 static int hilited_range_attr(POSITION pos, POSITION epos) in hilited_range_attr() argument 493 if (epos != NULL_POSITION && epos <= n->r.hl_startpos) in hilited_range_attr() 560 public int is_hilited_attr(POSITION pos, POSITION epos, int nohide, int *p_matches) in is_hilited_attr() argument 570 (epos == NULL_POSITION || epos >= start_attnpos)) in is_hilited_attr() 576 attr = hilited_range_attr(pos, epos); in is_hilited_attr() 1642 public void prep_hilite(POSITION spos, POSITION epos, int maxlines) in prep_hilite() argument 1686 (epos != NULL_POSITION && epos < prep_startpos) || in prep_hilite() [all …]
|
H A D | lsystem.c | 282 public int pipe_data(char *cmd, POSITION spos, POSITION epos) in pipe_data() argument 321 while (epos == NULL_POSITION || spos++ <= epos) in pipe_data()
|
H A D | funcs.h | 237 public int pipe_data(char *cmd, POSITION spos, POSITION epos); 351 public int is_hilited_attr(POSITION pos, POSITION epos, int nohide, int *p_matches); 355 public void prep_hilite(POSITION spos, POSITION epos, int maxlines);
|
/freebsd/libexec/revnetgroup/ |
H A D | parse_netgroup.c | 172 char *spos, *epos; in parse_netgrp() local 225 if ((epos = strpbrk(spos, " \t"))) { in parse_netgrp() 226 *epos = '\0'; in parse_netgrp() 227 len = epos - spos; in parse_netgrp()
|
/freebsd/contrib/wpa/src/common/ |
H A D | sae.c | 2051 const u8 *epos; in sae_parse_password_identifier() local 2068 epos = *pos; in sae_parse_password_identifier() 2069 epos++; /* skip IE type */ in sae_parse_password_identifier() 2070 len = *epos++; /* IE length */ in sae_parse_password_identifier() 2071 if (len > end - epos || len < 1) in sae_parse_password_identifier() 2073 epos++; /* skip ext ID */ in sae_parse_password_identifier() 2078 os_memcmp(sae->tmp->pw_id, epos, len) != 0)) { in sae_parse_password_identifier() 2089 os_memcpy(sae->tmp->pw_id, epos, len); in sae_parse_password_identifier() 2093 *pos = epos + len; in sae_parse_password_identifier() 2101 const u8 *epos; in sae_parse_rejected_groups() local [all …]
|
/freebsd/contrib/ntp/libntp/ |
H A D | snprintf.c | 1111 int epos = 0; in fmtflt() local 1276 epos = convert(exponent, econvert, 2, 10, 0); in fmtflt() 1282 if (epos == 1) in fmtflt() 1283 econvert[epos++] = '0'; in fmtflt() 1284 econvert[epos++] = esign; in fmtflt() 1285 econvert[epos++] = (flags & PRINT_F_UP) ? 'E' : 'e'; in fmtflt() 1317 - epos /* Number of exponent characters. */ in fmtflt() 1370 while (epos > 0) { /* Exponent. */ in fmtflt() 1371 epos--; in fmtflt() 1372 OUTCHAR(str, *len, size, econvert[epos]); in fmtflt() [all...] |
/freebsd/contrib/wpa/src/ap/ |
H A D | beacon.c | 699 u8 *epos; in hostapd_probe_resp_fill_elems() local 701 epos = pos + len; in hostapd_probe_resp_fill_elems() 717 pos = hostapd_eid_country(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems() 741 pos = hostapd_get_rsne(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems() 742 pos = hostapd_eid_bss_load(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems() 743 pos = hostapd_eid_mbssid(hapd, pos, epos, WLAN_FC_STYPE_PROBE_RESP, 0, in hostapd_probe_resp_fill_elems() 746 pos = hostapd_eid_rm_enabled_capab(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems() 747 pos = hostapd_get_mde(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems() 808 pos = hostapd_get_rsnxe(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems() 852 pos = hostapd_get_wpa_ie(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems() [all …]
|
/freebsd/lib/libc/gen/ |
H A D | getnetgrent.c | 675 char *epos, *gpos, *pos, *spos; local 734 if ((epos = strpbrk(spos, " \t"))) { 735 *epos = '\0'; 736 len = epos - spos;
|
/freebsd/contrib/wpa/src/eap_peer/ |
H A D | eap_peap.c | 673 const u8 *epos; in eap_peap_phase2_request() local 676 epos = eap_hdr_validate(EAP_VENDOR_MICROSOFT, 0x21, in eap_peap_phase2_request() 678 if (epos) { in eap_peap_phase2_request() 683 epos, eleft); in eap_peap_phase2_request()
|
/freebsd/sys/contrib/device-tree/Bindings/arm/omap/ |
H A D | omap.txt | 93 compatible = "ti,am43x-epos-evm", "ti,am43", "ti,am438x"
|
/freebsd/contrib/wpa/hostapd/ |
H A D | config_file.c | 2265 const char *epos; in parse_sae_password() local 2271 epos = os_strchr(pos2, '|'); in parse_sae_password() 2272 if (epos) { in parse_sae_password() 2273 tmp = os_malloc(epos - pos2 + 1); in parse_sae_password() 2276 os_memcpy(tmp, pos2, epos - pos2); in parse_sae_password() 2277 tmp[epos - pos2] = '\0'; in parse_sae_password()
|
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/ |
H A D | am43x-epos-evm.dts | 18 compatible = "ti,am43x-epos-evm","ti,am438x","ti,am43";
|
/freebsd/share/dict/ |
H A D | web2 | 63991 epos
|