Searched refs:lp (Results 126 - 150 of 248) sorted by relevance

12345678910

/freebsd-current/sys/netgraph/bluetooth/hci/
H A Dng_hci_evnt.c757 } __attribute__ ((packed)) *lp; local
762 m->m_pkthdr.len = m->m_len = sizeof(*lp);
763 lp = mtod(m, struct __link_policy *);
765 lp->hdr.type = NG_HCI_CMD_PKT;
766 lp->hdr.opcode = htole16(NG_HCI_OPCODE(
769 lp->hdr.length = sizeof(lp->cp);
771 lp->cp.con_handle = ep->con_handle;
773 lp->cp.settings = 0;
776 lp
[all...]
/freebsd-current/sys/cddl/dev/fbt/
H A Dfbt.c779 ctf_list_append(ctf_list_t *lp, void *new) argument
781 ctf_list_t *p = lp->l_prev; /* p = tail list element */
784 lp->l_prev = q;
791 lp->l_next = q;
799 ctf_list_prepend(ctf_list_t *lp, void *new) argument
802 ctf_list_t *q = lp->l_next; /* q = head list element */
804 lp->l_next = p;
811 lp->l_prev = p;
1043 ctf_decl_prec_t prec, lp, rp; local
1069 lp
[all...]
/freebsd-current/sbin/dhclient/
H A Ddhclient.c676 struct client_lease *lp, *next, *picked; local
689 for (lp = ip->client->offered_leases; lp; lp = next) {
690 next = lp->next;
695 script_init("ARPCHECK", lp->medium);
696 script_write_params("check_", lp);
703 make_decline(ip, lp);
707 picked = lp;
711 free_client_lease(lp);
1023 struct client_lease *lease, *lp; local
1377 struct client_lease *lp; local
1946 struct client_lease *lp; local
[all...]
/freebsd-current/contrib/tcsh/
H A Dsh.glob.c665 Char *lp, *rp, *ep; local
670 for (lp = cp; *lp != '\0' && *lp != '`'; lp++)
672 Strbuf_appendn(&word, cp, lp - cp);
673 if (*lp == 0)
675 lp++;
676 for (rp = lp; *rp && *rp != '`'; rp++)
687 ep = Strnsave(lp, r
[all...]
H A Dsh.hist.c850 /* Search the history hash table for a command matching lp, using hashval as
853 findHistHashTable(struct wordent *lp, unsigned hashval) argument
864 else if (hp->Hhash == hashval && heq(lp, &(hp->Hlex)))
870 return findHistHashTable(lp, hashval);
930 struct wordent *lp,
944 lpHash = hashhist(lp);
946 p = findHistHashTable(lp, lpHash);
963 lpHash = hashhist(lp);
965 p = findHistHashTable(lp, lpHash);
970 if (pp->Hnext && heq(lp,
928 enthist( int event, struct wordent *lp, int docopy, int mflg, int hlen) argument
[all...]
H A Dsh.func.c415 Char *lp; local
418 lp = globone(v[1], G_ERROR);
419 cleanup_push(lp, xfree);
421 gotolab(lp);
422 cleanup_until(lp);
453 Char *cp, *lp; local
464 lp = globone(cp, G_ERROR);
465 cleanup_push(lp, xfree);
467 search(TC_SWITCH, 0, lp);
468 cleanup_until(lp);
1383 Char *vp, *lp; local
2047 struct limits *lp, *res; local
2067 struct limits *lp; local
2093 getval(struct limits *lp, Char **v) argument
2228 plim(struct limits *lp, int hard) argument
2284 struct limits *lp; local
2322 setlim(struct limits *lp, int hard, RLIM_TYPE limit) argument
[all...]
H A Dsh.parse.c471 const struct wordent *lp, *rp; local
547 lp = 0;
556 if (lp != 0 && !specp)
558 lp = p->next;
633 if (lp != 0 && !specp) {
637 t->t_dspr = syn0(lp, rp, P_HERE);
/freebsd-current/contrib/wpa/src/wps/
H A Dwps_upnp_ssdp.c94 const char *lp = l; local
95 while (*lp && *lp != '\n')
96 lp++;
97 if (*lp == '\n')
98 lp++;
99 return lp - l;
/freebsd-current/sys/dev/isp/
H A Disp_target.c357 fcportdb_t *lp; local
384 if (isp_find_pdb_by_portid(isp, chan, sid, &lp))
385 notify.nt_nphdl = lp->handle;
530 fcportdb_t *lp; local
555 if (isp_find_pdb_by_handle(isp, chan, abts->abts_nphdl, &lp))
556 nt->nt_wwn = lp->port_wwn;
721 fcportdb_t *lp; local
810 if (isp_find_pdb_by_handle(isp, chan, nphdl, &lp))
811 isp_del_wwn_entry(isp, chan, lp->port_wwn, nphdl, lp
[all...]
/freebsd-current/contrib/tzcode/
H A Dzic.c365 const struct lookup * lp);
1740 register const struct lookup * lp; local
1772 lp = byword(fields[0], line_codes);
1773 if (lp == NULL)
1775 else switch (lp->l_value) {
2053 register const struct lookup * lp; local
2088 if ((lp = byword(fields[LP_MONTH], mon_names)) == NULL) {
2092 month = lp->l_value;
2130 struct lookup const *lp = byword(fields[LP_ROLL], leap_types); local
2131 if (!lp)
2187 register const struct lookup * lp; local
3722 register const struct lookup * lp; local
[all...]
/freebsd-current/sys/cam/scsi/
H A Dscsi_xpt.c87 #define CAM_GET_SIMPLE_LUN(lp, i, lval) \
88 if (((lp)->luns[(i)].lundata[0] & RPL_LUNDATA_ATYP_MASK) == \
90 (lval) = (lp)->luns[(i)].lundata[1]; \
92 (lval) = (lp)->luns[(i)].lundata[0]; \
95 (lval) |= (lp)->luns[(i)].lundata[1]; \
97 #define CAM_GET_LUN(lp, i, lval) \
98 (lval) = scsi_8btou64((lp)->luns[(i)].lundata); \
1303 struct scsi_report_luns_data *lp; local
1308 lp = (struct scsi_report_luns_data *)csio->data_ptr;
1309 nlun = scsi_4btoul(lp
[all...]
/freebsd-current/lib/libc/db/test/btree.tests/
H A Dmain.c132 while ((c = getopt(argc, argv, "bc:di:lp:ru")) != -1) {
611 char *lp, buf[16 * 1024]; local
620 for (cnt = 1; (lp = fgetline(fp, &len)) != NULL; ++cnt) {
624 data.data = lp;
627 key.data = lp;
629 for (p = lp + len - 1, t = buf; p >= lp; *t++ = *p--);
/freebsd-current/contrib/libucl/src/
H A Dmum.h129 uint64_t lv = (uint32_t) v, lp = (uint32_t) p; local
131 uint64_t rm_0 = hv * lp;
133 uint64_t rl = lv * lp;
/freebsd-current/usr.bin/fortune/strfile/
H A Dstrfile.c342 off_t *lp; local
349 lp = Seekpts;
352 *lp++ = fp++->pos;
/freebsd-current/tools/test/stress2/misc/
H A Dpause.sh47 { echo "Timed out"; pgrep pause | xargs ps -lp; exit 1; }
H A Dsendmsg2.sh27 ps -lp $!
H A Dgnop10.sh43 pgrep -x mount && { pgrep -x mount | xargs ps -lp; exit 1; }
H A Dgnop9.sh39 pgrep -x mount && { pgrep -x mount | xargs ps -lp; exit 1; }
/freebsd-current/contrib/lua/src/
H A Dlstrlib.c758 const char *s, size_t ls, const char *p, size_t lp) {
763 ms->p_end = p + lp;
774 size_t ls, lp; local
776 const char *p = luaL_checklstring(L, 2, &lp);
783 if (find && (lua_toboolean(L, 4) || nospecials(p, lp))) {
785 const char *s2 = lmemfind(s + init, ls - init, p, lp);
788 lua_pushinteger(L, (s2 - s) + lp);
797 p++; lp--; /* skip anchor character */
799 prepstate(&ms, L, s, ls, p, lp);
855 size_t ls, lp; local
757 prepstate(MatchState *ms, lua_State *L, const char *s, size_t ls, const char *p, size_t lp) argument
943 size_t srcl, lp; local
[all...]
/freebsd-current/contrib/tcpdump/
H A Dprint-ospf.c628 const uint8_t *lp; local
711 lp = (const uint8_t *)lsap->lsa_un.un_sla.sla_tosmetric;
712 while (lp < ls_end) {
715 ul = GET_BE_U_4(lp);
721 lp += 4;
727 lp = (const uint8_t *)lsap->lsa_un.un_sla.sla_tosmetric;
728 while (lp < ls_end) {
731 ul = GET_BE_U_4(lp);
737 lp += 4;
/freebsd-current/sbin/ipfw/
H A Dnat.c757 long lp, hp; local
760 lp = (long) strtol(str, &ptr, 10);
761 if (lp < 1024 || lp > 65535)
772 *lpout = (u_short) lp;
783 u_short lp, hp; local
954 if (!nat_port_alias_parse(av[0], &lp, &hp))
957 if (lp >= hp)
960 n->alias_port_lo = lp;
/freebsd-current/tools/tools/ath/athrd/
H A Dathrd.c1280 ar5212GetLowerUpperValues(u_int16_t v, u_int16_t *lp, u_int16_t listSize, argument
1284 u_int16_t *ep = lp+listSize;
1289 if (target < (u_int32_t)(lp[0] * EEP_SCALE - EEP_DELTA)) {
1290 *vlo = *vhi = lp[0];
1299 for (; lp < ep; lp++) {
1304 if (abs(lp[0] * EEP_SCALE - target) < EEP_DELTA) {
1305 *vlo = *vhi = lp[0];
1312 if (target < (u_int32_t)(lp[1] * EEP_SCALE - EEP_DELTA)) {
1313 *vlo = lp[
[all...]
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_superblock.c716 const BYTE* lp = lstart; local
732 (unsigned)(lend-lp), (unsigned)(send-sstart));
747 assert(lp <= lend);
748 assert(litSize <= (size_t)(lend - lp));
749 litSize = (size_t)(lend - lp);
756 cBlockSizeEstimate = ZSTD_estimateSubBlockSize(lp, litSize, ofCodePtr, llCodePtr, mlCodePtr, seqCount,
765 lp, litSize,
778 lp += litSize;
/freebsd-current/crypto/openssh/
H A Dmisc.h209 const char *directive, char ***array, u_int *lp, const char *s);
211 const char *directive, char ***array, int **iarray, u_int *lp,
/freebsd-current/sys/amd64/amd64/
H A Dsys_machdep.c100 struct user_segment_descriptor *lp; local
125 lp = malloc(largs->num * sizeof(struct
127 error = copyin(largs->descs, lp, largs->num *
130 error = amd64_set_ldt(td, largs, lp);
131 free(lp, M_TEMP);
610 struct user_segment_descriptor *lp; local
626 lp = &((struct user_segment_descriptor *)(pldt->ldt_base))[uap->start];
631 data[i] = ((volatile uint64_t *)lp)[i];

Completed in 483 milliseconds

12345678910