/src/sys/arch/i386/stand/lib/ |
pread.c | 54 ssize_t got; local in function:pread 58 got = read(fd, buf, count); 59 if (got < 0) 63 vpbcopy(buf, dest, got); 65 dest += got; 66 rsize -= got; 67 if (got < count)
|
/src/lib/libwrap/ |
misc.c | 32 int got; local in function:xgets 36 got = strlen(ptr); 37 if (got >= 1 && ptr[got - 1] == '\n') { 39 if (got >= 2 && ptr[got - 2] == '\\') { 40 got -= 2; 45 ptr += got; 46 len -= got;
|
/src/lib/libbluetooth/ |
sdp_service.c | 98 uint16_t total, count, got; local in function:sdp_service_search 137 got = 0; 175 if (got + count > total) 185 id[got++] = be32dec(ptr); 203 *num = got;
|
/src/sys/arch/arc/arc/ |
autoconf.c | 228 int got = 0; local in function:getpno 238 got = 1; 246 return (got);
|
/src/sys/arch/i386/stand/dosboot/ |
dosfile.c | 100 int got; local in function:dos_read 138 got = size - lsize; 140 got = dosread(df->doshandle, addr, size); 142 if (got < 0) { 150 df->off += got; 151 size -= got;
|
/src/sys/arch/bebox/stand/boot/ |
ld.script | 22 .rel.got : { *(.rel.got) } 23 .rela.got : { *(.rela.got) } 56 .got : { *(.got.plt) *(.got) }
|
/src/sys/arch/prep/stand/boot/ |
ld.script | 22 .rel.got : { *(.rel.got) } 23 .rela.got : { *(.rela.got) } 56 .got : { *(.got.plt) *(.got) }
|
/src/sys/arch/rs6000/stand/boot/ |
ld.script | 22 .rel.got : { *(.rel.got) } 23 .rela.got : { *(.rela.got) } 56 .got : { *(.got.plt) *(.got) }
|
/src/games/cribbage/ |
score.c | 294 BOOLEAN got[RANKS]; local in function:pegscore 317 got[i] = FALSE; 318 got[crd.rank] = TRUE; 321 if (got[tbl[i].rank]) 323 got[tbl[i].rank] = TRUE; 329 if (!got[j])
|
/src/libexec/ld.elf_so/ |
load.c | 215 bool got = false; local in function:_rtld_load_by_name 279 got = true; 296 if (got)
|
/src/share/examples/refuse/ian/ian/ |
ian.c | 70 int got; local in function:getfile 109 for (ret = 1, cc = 0 ; (got = fread(buf, 1, sizeof(buf), fp)) > 0 ; cc += got) { 110 if (fwrite(buf, 1, got, out) != got) {
|
/src/sys/arch/evbarm/stand/gzboot/ |
gzboot.c | 206 ssize_t got; local in function:readgz 207 got = readbuf(s, s->inbuf, Z_BUFSIZE); 208 if (got <= 0) 210 s->stream.avail_in = got; 266 ssize_t got; local in function:get_u8 268 got = readbuf(s, s->inbuf, Z_BUFSIZE); 269 if (got <= 0) { 273 s->stream.avail_in = got;
|
/src/sys/arch/hpc/stand/hpcboot/ |
file_manager.cpp | 110 int got; local in function:FileManager::_read 125 got = _file->read(_stream->next_out, 127 if (got == -1) { 128 return(got); 130 _stream->avail_out -= got; 136 got = _file->read(_inbuf, Z_BUFSIZE); 137 if (got <= 0) 140 _stream->avail_in = got; 278 int got; local in function:FileManager::_get_byte 280 got = _file->read(_inbuf, Z_BUFSIZE) [all...] |
/src/sys/external/bsd/gnu-efi/dist/gnuefi/ |
elf_aarch64_efi.lds | 28 *(.got.plt) 29 *(.got) 46 .rela.got : { *(.rela.got) }
|
elf_arm_efi.lds | 28 *(.got.plt) 29 *(.got) 47 .rel.got : { *(.rel.got) }
|
elf_mips64el_efi.lds | 28 *(.got.plt) 30 *(.got) 47 .rel.got : { *(.rel.got) }
|
elf_riscv64_efi.lds | 32 *(.got.plt) 33 *(.got) 54 .rela.got : 55 { *(.rela.got) }
|
/src/tests/lib/libpthread/ |
h_resolv.c | 53 static int *got = NULL; variable in typeref:typename:int * 115 got[i] += error == 0; 178 if ((got = calloc(hosts->sl_cur, sizeof(int))) == NULL) 201 if (ask[i] != got[i] && got[i] != 0) { 202 warnx("Error: host %s ask %d got %d\n", 203 hosts->sl_str[i], ask[i], got[i]); 212 free(got);
|
/src/common/dist/zlib/examples/ |
gznorm.c | 159 unsigned got = CHUNK - strm.avail_out; local in function:gzip_normalize 160 memb += got; 161 if (memb < got)
|
enough.c | 271 big_t got = g.num[index]; local in function:count 272 if (got) 273 return got; // we have -- return the saved result 290 got = count(syms - use, (left - use) << 1, len + 1); 291 sum += got; 292 if (got == (big_t)-1 || sum < got) // overflow 568 big_t got = count(n, 2, 1); local in function:main 569 sum += got; 570 assert(got != (big_t)-1 && sum >= got && "overflow") [all...] |
/src/common/dist/zlib/ |
gzread.c | 44 unsigned got; local in function:gz_avail 59 state->size - strm->avail_in, &got) == -1) 61 strm->avail_in += got; 269 z_size_t got; local in function:gz_read 284 got = 0; 336 got += n; 341 return got;
|
/src/lib/libutil/ |
passwd.c | 583 int got, found; local in function:pw_getconf 590 got = 0; 602 while (!found && (got || read_line(fp, line, LINE_MAX))) { 603 got = 0; 613 got = 1; 633 if (!got) 637 * If we got no result and were looking for a default
|
/src/sys/arch/atari/stand/tostools/libtos/ |
cread.c | 125 int got; local in function:get_byte 128 got = cread(s->fd, s->inbuf, Z_BUFSIZE); 129 if (got <= 0) { 134 s->stream.avail_in = got; 307 int got; local in function:cread 308 got = read(s->fd, s->stream.next_out, 310 if (got == -1) 311 return (got); 312 s->stream.avail_out -= got; 318 int got; local in function:cread [all...] |
/src/sys/lib/libsa/ |
cread.c | 155 int got; local in function:get_byte 158 got = oread(s->fd, s->inbuf, Z_BUFSIZE); 159 if (got <= 0) { 165 s->stream.avail_in = got; 354 int got; local in function:read 355 got = oread(s->fd, s->stream.next_out, 357 if (got == -1) 358 return got; 359 s->stream.avail_out -= got; 365 int got; local in function:read [all...] |
/src/sys/fs/msdosfs/ |
msdosfs_fat.c | 416 * any longer. Got get a new free one. 776 * got - how many clusters were actually allocated. 779 chainalloc(struct msdosfsmount *pmp, u_long start, u_long count, u_long fillwith, u_long *retcluster, u_long *got) 793 if (got) 794 *got = count; 807 * got - how many clusters were actually allocated. 811 u_long *retcluster, u_long *got) 822 return (chainalloc(pmp, start, count, fillwith, retcluster, got)); 848 return (chainalloc(pmp, cn, count, fillwith, retcluster, got)); 865 return (chainalloc(pmp, cn, count, fillwith, retcluster, got)); 1025 u_long frcn = 0, cn, got; local in function:msdosfs_extendfile [all...] |