/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_097.c | 23 long long ll = 1234567LL; local in function:example
|
/src/games/adventure/ |
main.c | 66 int rval, ll; local in function:main 147 ll = prop[obj]; /* 2006 */ 149 ll = 1; 150 pspeak(obj, ll);
|
subr.c | 388 int ll; local in function:mback 399 ll = tkk->tloc; 400 if (ll == k) { 405 if (ll <= 300) { 407 if (forced(ll) && k == j->tloc)
|
/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/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/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/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...] |
/src/usr.bin/moduli/qsafe/ |
qsafe.c | 121 size_t ll = strlen(lp); local in function:main 125 if (ll < 14 || *lp == '!' || *lp == '#') {
|
/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/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');
|
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...] |
mkheaders.c | 309 struct loclist *ll; local in function:locators_print 327 for (i = 0, ll = a->a_locs; ll; ll = ll->ll_next, i++) { 328 if (strchr(ll->ll_name, ' ') != NULL || 329 strchr(ll->ll_name, '\t') != NULL) 335 namedup = estrdup(ll->ll_name); 342 if (ll->ll_string != NULL) 344 locdup, namedup, ll->ll_string) [all...] |
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...] |
sem.c | 406 struct loclist *ll; local in function:defiattr 421 for (ll = a->a_locs; ll != NULL; ll = ll->ll_next) 516 struct loclist *ll; local in function:defdev 538 ll = loclist; 540 if (defiattr(dev->d_name, ll, NULL, 0))
|
/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/arch/evbmips/ingenic/ |
intr.c | 229 * and IPIs. If that doesn't work we'll have to send an IPI to 247 uint32_t irql, irqh, mask, ll, hh; local in function:ingenic_irq 262 ll = irql; 264 writereg(JZ_ICMSR0, ll); 312 writereg(JZ_ICMCR0, ll);
|
/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/sys/arch/aarch64/aarch64/ |
pmapboot.c | 223 pd_entry_t *ll; variable in typeref:typename:pd_entry_t * 272 ll = NULL; 306 ll = l1; 351 ll = l2; 395 ll = l3; 413 if (ll != NULL) { 417 ll[i] &= ~LX_BLKPAG_CONTIG; 424 ll[i] &= ~LX_BLKPAG_CONTIG;
|
/src/sys/dev/ |
lockstat.c | 227 lockstat_csmask = (uintptr_t)-1LL; 232 lockstat_lamask = (uintptr_t)-1LL; 383 lslist_t *ll; local in function:lockstat_event 415 ll = &lc->lc_hash[LOCKSTAT_HASH(lock ^ callsite)]; 418 LIST_FOREACH(lb, ll, lb_chain.list) { 428 if (lb != LIST_FIRST(ll)) { 430 LIST_INSERT_HEAD(ll, lb, lb_chain.list); 439 LIST_INSERT_HEAD(ll, lb, lb_chain.list);
|
/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/usr.sbin/puffs/mount_sysctlfs/ |
sysctlfs.c | 749 long long ll; local in function:sysctlfs_node_write 791 if (sscanf((const char *)buf, "%lld", &ll) != 1) 794 &ll, sizeof(long long));
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
fp_lib.h | 118 __uint128_t ll; member in union:rep_clz::__anon368ed628010a 124 } uu = { .ll = a };
|
/src/bin/ksh/ |
var.c | 277 struct block *ll = l; local in function:local 280 while ((ll = ll->next) && !(vq = mytsearch(&ll->vars, n, h)))
|
/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...] |