/src/sbin/cgdconfig/ |
pkcs5_pbkdf2.c | 78 ssize_t tmplen; local in function:prf_iterate 88 tmplen = hmac("sha1", P, Plen, data, datalen, tmp, sizeof(tmp)); 90 assert(tmplen == PRF_BLOCKLEN);
|
/src/lib/libedit/ |
search.c | 460 ssize_t tmplen; local in function:cv_search 466 tmplen = LEN; 470 tmplen = c_gets(el, &tmpbuf[LEN], 472 if (tmplen == -1) 475 tmplen += LEN; 476 ch = tmpbuf[tmplen]; 477 tmpbuf[tmplen] = '\0'; 479 if (tmplen == LEN) { 504 tmpbuf[tmplen++] = '.'; 505 tmpbuf[tmplen++] = '*' [all...] |
common.c | 827 int tmplen; local in function:ed_command 829 tmplen = c_gets(el, tmpbuf, L"\n: "); 832 if (tmplen < 0 || (tmpbuf[tmplen] = 0, parse_line(el, tmpbuf)) == -1)
|
/src/usr.sbin/cpuctl/arch/ |
arm.c | 196 size_t tmplen = snprintf(tmpbuf, sizeof(tmpbuf), local in function:print_features 198 if (len + tmplen > 78) {
|
/src/games/warp/ |
term.h | 43 tmplen = strlen(tmpstr), write(1, tmpstr, tmplen), real_x += tmplen) 45 EXT size_t tmplen; variable in typeref:typename:EXT size_t
|
/src/usr.sbin/autofs/ |
common.c | 671 size_t tmplen; local in function:node_find_x 677 tmplen = strlen(tmp); 678 if (strncmp(tmp, path, tmplen) != 0) { 682 if (path[tmplen] != '/' && path[tmplen] != '\0') {
|
/src/sys/arch/mac68k/nubus/ |
if_netdock_nubus.c | 558 u_int tmplen; local in function:netdock_put 572 tmplen = totlen; 573 tmplen &= 0xff00; 574 tmplen |= 0x2000; 575 NIC_PUT_2(sc, REG_0000, tmplen); 591 tmplen = ((totlen << 8) & 0xfe00) | ((totlen >> 8) & 0x00ff); 592 NIC_PUT_2(sc, REG_DATA, tmplen);
|
/src/usr.sbin/bootp/common/ |
readfile.c | 1755 u_int tmplen; 1764 tmplen = sizeof(tmpstr); 1765 get_string(src, tmpstr, &tmplen); 1738 u_int tmplen; local in function:prs_haddr
|
/src/usr.bin/make/ |
meta.c | 1078 static size_t tmplen = 0; local in function:meta_oodate 1137 tmplen = strlen(tmpdir); 1373 if (tmplen > 0 && strncmp(p, tmpdir, tmplen) == 0)
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_linux.cc | 1144 uptr tmplen; local in function:__sanitizer::ReadLongProcessName 1145 if (ReadFileToBuffer("/proc/self/cmdline", &tmpbuf, &tmpsize, &tmplen,
|
/src/sys/dev/pcmcia/ |
if_ray.c | 1055 size_t len, pktlen, tmplen; local in function:ray_intr_start 1144 tmplen = sizeof(struct ieee80211_frame); 1147 tmplen = sizeof(struct ieee80211_frame) 1150 tmplen = 0; 1153 M_PREPEND(m0, tmplen, M_DONTWAIT); 1155 M_PULLUP(m0, sizeof(struct ether_header) + tmplen); 1164 eh = (struct ether_header *)((uint8_t *)iframe + tmplen); 1212 tmplen = ebufp - bufp; 1213 len -= tmplen; 1214 ray_write_region(sc, bufp, d, tmplen); [all...] |