/src/sys/dev/ic/ |
isp_tpublic.h | 341 #define L0LUN_TO_FLATLUN(lptr) ((((lptr)[0] & 0x3f) << 8) | ((lptr)[1])) 342 #define FLATLUN_TO_L0LUN(lptr, lun) \ 343 (lptr)[1] = lun & 0xff; \ 345 (lptr)[0] = 0; \ 349 (lptr)[0] = (nl >> 8) & 0xff; \ 351 (lptr)[0] = 0; \ 353 (lptr)[0] = 0x40 | ((nl >> 8) & 0x3f); \ 356 memset(&(lptr)[2], 0, 6 [all...] |
isp_library.c | 2321 isp_find_pdb_by_wwn(ispsoftc_t *isp, int chan, uint64_t wwn, fcportdb_t **lptr) 2335 *lptr = lp; 2344 isp_find_pdb_by_loopid(ispsoftc_t *isp, int chan, uint32_t loopid, fcportdb_t **lptr) 2358 *lptr = lp; 2367 isp_find_pdb_by_sid(ispsoftc_t *isp, int chan, uint32_t sid, fcportdb_t **lptr) 2384 *lptr = lp;
|
/src/lib/libcurses/EXAMPLES/ |
view.c | 74 static CURSES_CH_T **lptr; variable in typeref:typename:CURSES_CH_T ** 237 for (lptr = &my_lines[0]; (lptr - my_lines) < MAXLINES; lptr++) { 267 *lptr = ch_dup(temp); 271 length = lptr - my_lines; 291 lptr = my_lines; 360 olptr = lptr; 362 if ((lptr - my_lines) < (length - LINES + 1)) 363 lptr++ [all...] |
/src/libexec/talkd/ |
announce.c | 103 char *bptr, *lptr, vis_user[sizeof(request->l_name) * 4]; local in function:print_mesg 145 lptr = line_buf[i]; 146 while (*lptr != '\0' && lptr < (line_buf[i] + N_CHARS)) 147 *(bptr++) = *(lptr++);
|
/src/sbin/routed/ |
parms.c | 172 char *p, *lptr; local in function:gwkludge 197 lptr = lbuf; 198 while (*lptr == ' ') 199 lptr++; 200 p = lptr+strlen(lptr)-1; 202 || (*p == ' ' && (p == lptr+1 || *(p-1) != '\\'))) 204 if (*lptr == '\0' /* ignore null and comment lines */ 205 || *lptr == '#') 210 if (strncasecmp("net", lptr, 3 [all...] |
/src/bin/ksh/ |
misc.c | 863 void **lptr, **hptr; local in function:qsort1 871 hptr = lptr = base+n; 876 if (i < lptr) { 877 if ((c = (*f)(*i, *lptr)) == 0) { 878 lptr--; 879 swap2(i, lptr); 896 if (i == lptr) { 899 i = lptr += 1; 911 if (i == lptr) { 912 if (lptr-base >= lim-hptr) [all...] |
/src/sys/arch/amiga/stand/bootblock/elf2bb/ |
elf2bb.c | 101 uint32_t *lptr; local in function:main 389 lptr = (uint32_t *)&buffer[relbuf[i]]; 391 dprintf(("(0x%04x, 0x%04x): ", *lptr, addrdiff));
|
/src/sys/arch/sgimips/dev/ |
crmfb.c | 928 int i, bail, tile_width, tlbptr, lptr, j, tx, shift, overhang; local in function:crmfb_setup_video 1073 lptr = 0; 1080 CRIME_RE_TLB_A + tlbptr + lptr, 1082 DPRINTF("%04x: %016"PRIx64"\n", tlbptr + lptr, reg); 1084 lptr += 8; 1090 CRIME_RE_TLB_A + tlbptr + lptr, reg); 1091 DPRINTF("%04x: %016"PRIx64"\n", tlbptr + lptr, reg);
|
/src/sys/external/bsd/ipf/netinet/ |
ip_fil.h | 145 lookupfunc_t lptr[2]; member in union:i6addr 157 lookupfunc_t lptr[2]; member in union:i6addr 175 #define iplookupfunc lptr[1]
|