/src/usr.bin/m4/lib/ |
strtonum.c | 39 long long ll = 0; local in function:strtonum 57 ll = strtoll(numstr, &ep, 10); 60 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) 62 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval) 69 ll = 0; 71 return (ll);
|
/src/sys/crypto/des/ |
des_ecb.c | 111 DES_LONG ll[2]; local in function:des_ecb_encrypt 115 c2l(in,l); ll[0]=l; 116 c2l(in,l); ll[1]=l; 117 des_encrypt1(ll,ks,enc); 118 l=ll[0]; l2c(l,out); 119 l=ll[1]; l2c(l,out); 120 l=ll[0]=ll[1]=0; 128 DES_LONG ll[2]; local in function:des_ecb3_encrypt 134 ll[0]=l0 [all...] |
/src/tests/usr.bin/xlint/lint1/ |
msg_324.c | 22 long long ll; local in function:example 26 /* expect+1: warning: 'll' set but not used in function 'example' [191] */ 27 ll = c + i; 29 ll = i - c; 40 ll = i << c; 46 ll = i >> c;
|
msg_298.c | 27 convert_mult(long long ll) 30 take_int(ll * 2);
|
msg_097.c | 23 long long ll = 1234567LL; local in function:example
|
d_fold_test.c | 37 void if_long_long_int(long long int ll) { if (ll) return; }
|
msg_204.c | 66 void if_long_long_int(long long int ll) { if (ll) return; }
|
/src/lib/libc/compat/gen/ |
compat_utmpx.c | 78 lastlogx50_to_lastlogx(const struct lastlogx50 *ll50, struct lastlogx *ll) 80 (void)memcpy(ll->ll_line, ll50->ll_line, sizeof(ll->ll_line)); 81 (void)memcpy(ll->ll_host, ll50->ll_host, sizeof(ll->ll_host)); 82 (void)memcpy(&ll->ll_ss, &ll50->ll_ss, sizeof(ll->ll_ss)); 83 timeval50_to_timeval(&ll50->ll_tv, &ll->ll_tv); 87 lastlogx_to_lastlogx50(const struct lastlogx *ll, struct lastlogx50 *ll50) 89 (void)memcpy(ll50->ll_line, ll->ll_line, sizeof(ll50->ll_line)) 136 struct lastlogx ll; local in function:__getlastlogx13 175 struct lastlogx ll; local in function:updlastlogx [all...] |
compat_lastlogx.c | 87 getlastlogx(uid_t uid, struct lastlogx *ll) 90 return __getlastlogx13(llfile, uid, ll);
|
/src/usr.bin/login/ |
common.c | 271 struct lastlogx ll; local in function:dolastlogx 272 if (!quiet && getlastlogx(_PATH_LASTLOGX, pwd->pw_uid, &ll) != NULL) { 273 time_t t = (time_t)ll.ll_tv.tv_sec; 275 if (*ll.ll_host != '\0') 277 (int)sizeof(ll.ll_host), 278 ll.ll_host); 280 (int)sizeof(ll.ll_line), 281 ll.ll_line); 283 ll.ll_tv = now; 284 (void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line)) 316 struct lastlog ll; local in function:dolastlog [all...] |
/src/lib/libpam/modules/pam_lastlog/ |
pam_lastlog.c | 307 struct lastlogx ll; local in function:dolastlogx 309 if (getlastlogx(_PATH_LASTLOGX, pwd->pw_uid, &ll) != NULL) 310 domsg(pamh, (time_t)ll.ll_tv.tv_sec, ll.ll_host, 311 sizeof(ll.ll_host), ll.ll_line, 312 sizeof(ll.ll_line)); 314 ll.ll_tv = *now; 315 (void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line)) 353 struct lastlog ll; local in function:dolastlog [all...] |
/src/sys/net/ |
dl_print.c | 83 int ll = lla_snprintf1(buf + l, clip(len, l), local in function:dl_print 85 if (ll == -1) 86 return ll; 88 return ll + l; 108 int ll = snprintf(buf + l, clip(len, l), "]:%hu", sdl->sdl_index); local in function:sdl_print 109 if (ll == -1) 110 return ll; 111 return ll + l;
|
/src/usr.bin/finger/ |
util.c | 169 struct lastlogx ll; local in function:enter_lastlog 172 struct lastlog ll; local in function:enter_lastlog 176 (void)memset(&ll, 0, sizeof(ll)); 192 data.size == sizeof(ll)) 193 (void)memcpy(&ll, data.data, sizeof(ll)); 197 lseek(fd, (off_t)pn->uid * sizeof(ll), SEEK_SET) != 198 (off_t)pn->uid * (off_t)sizeof(ll) || 199 read(fd, (char *)&ll, sizeof(ll)) != sizeof(ll)) [all...] |
/src/sbin/veriexecctl/ |
Makefile | 10 LDADD+= -ll -lprop
|
/src/sys/arch/amiga/stand/bootblock/txlt/ |
Makefile | 11 LDADD+= -ll
|
/src/usr.bin/config/ |
lint.c | 130 struct loclist *ll; local in function:do_emit_instances 159 for (ll = at->a_locs; ll != NULL; ll = ll->ll_next) { 160 if (ll->ll_num == 0) 161 printf(" %s %c", ll->ll_name, 162 ll->ll_string ? '?' : '0');
|
util.c | 307 struct loclist *ll; local in function:loclist_create 309 ll = emalloc(sizeof(*ll)); 310 ll->ll_name = name; 311 ll->ll_string = string; 312 ll->ll_num = num; 313 ll->ll_next = NULL; 314 return ll; 318 loclist_destroy(struct loclist *ll) 322 while (ll != NULL) [all...] |
mkioconf.c | 183 struct loclist *ll; local in function:cf_locators_print 197 for (ll = a->a_locs; ll; ll = ll->ll_next) 199 ll->ll_name, 200 (ll->ll_string ? ll->ll_string : "NULL"), 201 (ll->ll_string ? ll->ll_string : "0")) 380 struct loclist *ll; local in function:emitcfdata [all...] |
/src/usr.sbin/pf/pfs/ |
Makefile | 10 LDADD+= -ll -ly
|
/src/sys/arch/i386/stand/lib/ |
biosdisk.c | 106 struct biosdisk_ll ll; member in struct:biosdisk 254 if (d->ll.type == BIOSDISK_TYPE_CD) 259 blks = size / d->ll.secsize; 260 if (blks && readsects(&d->ll, dblk, blks, buf, 0)) { 267 frag = size % d->ll.secsize; 269 if (readsects(&d->ll, dblk + blks, 1, d->buf, 0)) { 271 *rsize = blks * d->ll.secsize; 274 memcpy(buf + blks * d->ll.secsize, d->buf, frag); 292 d->ll.dev = biosdev; 293 if (set_geometry(&d->ll, NULL)) [all...] |
/src/tests/lib/libcurses/director/ |
Makefile | 17 LDADD+= -ll -lutil -lc
|
/src/usr.bin/menuc/ |
Makefile | 18 LDADD+= -ll
|
/src/usr.bin/msgc/ |
Makefile | 19 LDADD+= -ll
|
/src/usr.bin/sortinfo/ |
sortinfo.c | 115 ssize_t ll; local in function:main 124 while ((ll = getline(&line, &i, stdin)) != -1) { 130 if (ll == -1) 134 while ((ll = getline(&line, &i, stdin)) != -1)
|
/src/lib/libc/gen/ |
utmpx.c | 427 getlastlogx(const char *fname, uid_t uid, struct lastlogx *ll) 433 _DIAGASSERT(ll != NULL); 446 if (data.size != sizeof(*ll)) { 451 if (ll == NULL) 452 if ((ll = malloc(sizeof(*ll))) == NULL) 455 (void)memcpy(ll, data.data, sizeof(*ll)); 458 ll = NULL; 461 return ll; [all...] |