Home
last modified time | relevance | path

Searched refs:pend (Results 1 – 25 of 27) sorted by relevance

12

/illumos-gate/usr/src/lib/libadutils/common/
H A Dldap_ping.c136 char *p, *pend; in cldap_build_request() local
142 pend = p + sizeof (filter); in cldap_build_request()
144 len = snprintf(p, pend - p, "(&(DnsDomain=%s)", dname); in cldap_build_request()
145 if (len >= (pend - p)) in cldap_build_request()
150 len = snprintf(p, (pend - p), "(Host=%s)", host); in cldap_build_request()
151 if (len >= (pend - p)) in cldap_build_request()
161 len = snprintf(p, (pend - p), "(NtVer=%s)", ntver_esc); in cldap_build_request()
162 if (len >= (pend - p)) in cldap_build_request()
167 len = snprintf(p, pend - p, ")"); in cldap_build_request()
168 if (len >= (pend - p)) in cldap_build_request()
/illumos-gate/usr/src/cmd/mandoc/
H A Dmandoc_xr.c68 const char *pend; in mandoc_xr_add() local
90 pend = xr->hashkey + tsz; in mandoc_xr_add()
91 hv = ohash_interval(xr->hashkey, &pend); in mandoc_xr_add()
H A Dhtml.c463 print_encode(struct html *h, const char *p, const char *pend, int norecurse) in print_encode() argument
473 if (pend == NULL) in print_encode()
474 pend = strchr(p, '\0'); in print_encode()
479 while (p < pend) { in print_encode()
486 for (sz = strcspn(p, rejs); sz-- && p < pend; p++) in print_encode()
490 (p >= pend || *p == ' ' || *p == ASCII_NBRSP)) { in print_encode()
493 while (p < pend && (*p == ' ' || *p == ASCII_NBRSP)) in print_encode()
498 if (p >= pend) in print_encode()
/illumos-gate/usr/src/boot/libsa/
H A Dzalloc.c288 void *pend = (char *)mp->mp_Base + mp->mp_Size; in zextendPool() local
296 if (base > pend) { in zextendPool()
297 mp->mp_Size += (char *)base - (char *)pend; in zextendPool()
298 mp->mp_Used += (char *)base - (char *)pend; in zextendPool()
/illumos-gate/usr/src/lib/libbsm/common/
H A Dgetdaent.c199 char *pend; in getdadmfield() local
208 pend = strpbrk(ptr, skip); in getdadmfield()
210 if (pend != NULL) { in getdadmfield()
211 *pend++ = '\0'; in getdadmfield()
212 tptr = pend; in getdadmfield()
/illumos-gate/usr/src/uts/sun4v/vm/
H A Dmach_kpm.c303 pfn_t pbase, pend; in hat_kpm_walk() local
310 pend = msp->pages_end; in hat_kpm_walk()
312 size = ptob(pend - pbase); in hat_kpm_walk()
/illumos-gate/usr/src/cmd/bnu/
H A Dpk1.c205 char *pp, *pend; local
209 pend = p + HDRSIZ;
210 while (pp < pend)
213 if (pkcget(ifn, p, pend - p) !=
/illumos-gate/usr/src/cmd/lp/filter/postscript/dpost/
H A Ddraw.c499 char *pend; /* end of the original string (ie. *buf) */ in parsebuf() local
542 pend = buf + strlen(buf); in parsebuf()
579 if ( (p1 = p + strlen(p)) < pend ) in parsebuf()
/illumos-gate/usr/src/cmd/lp/include/
H A Dmsgs.h279 *pend = p + SZ - TAIL_LEN; \
281 while (p < pend) \
/illumos-gate/usr/src/lib/libc/port/regex/
H A Dregcomp.c94 sopno pend[NPAREN]; /* -> ) ([0] unused) */ member
277 p->pend[i] = 0; in regcomp()
379 p->pend[subno] = HERE(); in p_ere_exp()
380 assert(p->pend[subno] != 0); in p_ere_exp()
747 p->pend[subno] = HERE(); in p_simp_re()
748 assert(p->pend[subno] != 0); in p_simp_re()
767 if (p->pend[i] != 0) { in p_simp_re()
772 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_simp_re()
773 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re()
1483 if (p->pend[i] >= pos) { in doinsert()
[all …]
/illumos-gate/usr/src/lib/libeti/form/common/
H A Dchg_data.c442 char *pend; in _del_prev() local
446 pend = _data_end(p, Xmax(f)); in _del_prev()
449 if ((vend - v) > (Xmax(f) - (pend - p))) in _del_prev()
453 _adjust_cursor(f, pend); in _del_prev()
/illumos-gate/usr/src/cmd/eeprom/i386/
H A Dbenv.c603 char *pbase, *pend; in parse_benv() local
608 pend = pbase + bd->len; in parse_benv()
610 for (tok = tnext = pbase; tnext < pend && '\0' != *tnext; tok = tnext) in parse_benv()
612 add_comm(bd, tok, pend, &tnext, &line); in parse_benv()
614 add_cmd(bd, pend, &tnext, &line); in parse_benv()
/illumos-gate/usr/src/uts/sun4/sys/
H A Dintreg.h104 uint_t pend; member
/illumos-gate/usr/src/cmd/svc/startd/
H A Dmethod.c844 char *pend; in method_run() local
851 if ((pend = strchr(method, ' ')) != NULL) in method_run()
852 *pend = '\0'; in method_run()
862 if (pend != NULL) in method_run()
863 *pend = ' '; in method_run()
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_config.c587 char *pend; in __s_get_enum_value() local
597 pend = pstart + strlen(pstart) - 1; in __s_get_enum_value()
598 for (; pend >= pstart && *pend == SPACETOK; pend--) in __s_get_enum_value()
600 len = pend - pstart + 1; in __s_get_enum_value()
1075 char *pend, *ret; in stripdup() local
1084 pend = pstart + strlen(pstart) - 1; in stripdup()
1085 for (; pend >= pstart && *pend == SPACETOK; pend--) in stripdup()
1087 len = pend - pstart + 1; in stripdup()
/illumos-gate/usr/src/cmd/sendmail/db/hash/
H A Dhash_dup.c284 u_int8_t *p, *pend; local
332 pend = p +
342 for (off = 0, i = 0; p < pend; i++) {
/illumos-gate/usr/src/uts/common/os/
H A Dcyclic.c1155 uint32_t pend, npend, opend; in cyclic_softint() local
1194 pend = cyclic->cy_pend; in cyclic_softint()
1195 npend = pend - 1; in cyclic_softint()
1197 if (pend == 0) { in cyclic_softint()
1231 atomic_cas_32(&cyclic->cy_pend, pend, npend)) != in cyclic_softint()
1232 pend) { in cyclic_softint()
1257 CYC_TRACE(cpu, level, "cas-fail", opend, pend); in cyclic_softint()
1258 ASSERT(opend > pend || (opend == 0 && in cyclic_softint()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Dexpand.c364 goto pend;
375 pend:
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dglob.c322 goto pend; in execbrc()
335 pend: in execbrc()
/illumos-gate/usr/src/cmd/csh/
H A Dsh.glob.c307 goto pend; in execbrc()
318 pend: in execbrc()
/illumos-gate/usr/src/cmd/mdb/common/modules/usba/
H A Dprtusb.c1068 uintptr_t pend = usb_cfg + cfg_len; in prt_usb_desc() local
1079 while ((paddr + nlen <= pend) && (nlen > 0)) { in prt_usb_desc()
/illumos-gate/usr/src/uts/sun4u/vm/
H A Dmach_kpm.c573 pfn_t pbase, pend; in hat_kpm_walk() local
581 pend = msp->pages_end; in hat_kpm_walk()
584 size = ptob(pend - pbase); in hat_kpm_walk()
/illumos-gate/usr/src/uts/i86pc/vm/
H A Dhat_i86.c4914 pfn_t pbase, pend; in hat_kpm_walk() local
4921 pend = msp->pages_end; in hat_kpm_walk()
4923 size = ptob(pend - pbase); in hat_kpm_walk()
/illumos-gate/usr/src/uts/common/io/hxge/
H A Dhxge_peu_hw.h887 uint32_t pend:32; member
889 uint32_t pend:32;
/illumos-gate/usr/src/uts/common/io/fibre-channel/ulp/
H A Dfcp.c15983 char *pend = NULL; in fcp_mask_pwwn_lun() local
16017 if (ddi_strtoul(lunid_buf, &pend, 10, &lun_id) == 0) { in fcp_mask_pwwn_lun()

12