/freebsd/contrib/less/ |
H A D | search.c | 313 POSITION epos; in clear_attn() 335 epos = position(sindex+1); 337 (epos == NULL_POSITION || epos > old_start_attnpos)) 509 static int hilited_range_attr(POSITION pos, POSITION epos) in is_filtered() 514 if (epos != NULL_POSITION && epos <= n->r.hl_startpos) 646 public int is_hilited_attr(POSITION pos, POSITION epos, int nohide, int *p_matches) 656 (epos == NULL_POSITION || epos > start_attnpo in hlist_rotate_left() 295 POSITION epos; clear_attn() local 488 hilited_range_attr(POSITION pos,POSITION epos) hilited_range_attr() argument 560 is_hilited_attr(POSITION pos,POSITION epos,int nohide,int * p_matches) is_hilited_attr() argument 1642 prep_hilite(POSITION spos,POSITION epos,int maxlines) prep_hilite() argument [all...] |
H A D | lsystem.c | 279 * Feed it the file contents between the positions spos and epos. 281 public int pipe_data(constant char *cmd, POSITION spos, POSITION epos) 320 while (epos == NULL_POSITION || spos++ <= epos) in pipe_data() 282 pipe_data(char * cmd,POSITION spos,POSITION epos) pipe_data() argument
|
H A D | funcs.h | 262 public int pipe_data(constant char *cmd, POSITION spos, POSITION epos); 389 public int is_hilited_attr(POSITION pos, POSITION epos, int nohide, int *p_matches); 397 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
|