Symbol: SIZE
common/dist/zlib/examples/gun.c
101
if ((unsigned)ret > SIZE - len)
common/dist/zlib/examples/gun.c
102
ret = (int)(SIZE - len);
common/dist/zlib/examples/gun.c
110
} while (ret != 0 && len < SIZE);
common/dist/zlib/examples/gun.c
161
unsigned char inbuf[SIZE]; /* input buffer */
common/dist/zlib/examples/gun.c
162
unsigned char outbuf[SIZE]; /* output buffer */
common/dist/zlib/examples/gun.c
350
while (stack > SIZE - outcnt) {
common/dist/zlib/examples/gun.c
351
while (outcnt < SIZE)
games/hack/hack.do_name.c
286
gn = ghostnames[rn2(SIZE(ghostnames))];
games/hack/hack.eat.c
105
#define TTSZ SIZE(tintxts)
games/hack/hack.mon.c
152
if (warnlevel >= SIZE(warnings))
games/hack/hack.mon.c
153
warnlevel = SIZE(warnings) - 1;
games/hack/hack.o_init.c
164
if (first >= LAST_GEM || first >= SIZE(objects) ||
games/hack/hack.o_init.c
191
for (i = 0; i < SIZE(objects); i++) {
games/hack/hack.o_init.c
212
for (i = 0; i < SIZE(objects); i++) {
games/hack/hack.o_init.c
238
end = SIZE(objects);
games/hack/hack.o_init.c
99
end = SIZE(objects);
games/hack/hack.potion.c
302
const char *botlnam = bottlenames[rn2(SIZE(bottlenames))];
games/hack/hack.timeout.c
130
if (i > 0 && i <= SIZE(stoned_texts))
games/hack/hack.timeout.c
131
pline("%s", stoned_texts[SIZE(stoned_texts) - i]);
games/hack/hack.timeout.c
80
for (upp = u.uprops; upp < u.uprops + SIZE(u.uprops); upp++)
games/hack/hack.u_init.c
88
#define NR_OF_ROLES SIZE(roles)
lib/libc/stdlib/radixsort.c
154
stack s[SIZE], *sp, *sp0, *sp1, temp;
lib/libc/stdlib/radixsort.c
183
if (sp + nc > s + SIZE) { /* Get more stack. */
lib/libc/stdlib/radixsort.c
272
if (sp + nc > s + SIZE) {
libexec/ftpd/ftpcmd.y
1279
{ "SIZE", SIZE, OSTR, 1, "<sp> path-name", 0, },
libexec/ftpd/ftpcmd.y
151
SIZE MDTM MLST MLSD
libexec/ftpd/ftpcmd.y
811
| SIZE check_login SP pathname CRLF
sys/arch/luna68k/dev/omkbdmap.c
301
{ KB_JP, 0, SIZE(omkbd_keydesc_jp), omkbd_keydesc_jp, },
sys/arch/mips/bonito/bonitoreg.h
405
#define BONITO_PCIMEMBASECFGSIZE(WIN,SIZE) (((~((SIZE)-1))>>(BONITO_PCIMEMBASECFG_ASHIFT-BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)
sys/dev/pci/qat/qatvar.h
161
#define QAT_MSG_SIZE_TO_BYTES(SIZE) (SIZE << 5)
sys/dev/pci/qat/qatvar.h
162
#define QAT_BYTES_TO_MSG_SIZE(SIZE) (SIZE >> 5)
sys/dev/pci/qat/qatvar.h
163
#define QAT_SIZE_TO_RING_SIZE_IN_BYTES(SIZE) ((1 << (SIZE - 1)) << 7)
sys/dev/pci/qat/qatvar.h
164
#define QAT_RING_SIZE_IN_BYTES_TO_SIZE(SIZE) ((1 << (SIZE - 1)) >> 7)
sys/dev/pci/qat/qatvar.h
167
#define QAT_RING_SIZE_BYTES_MIN(SIZE) \
sys/dev/pci/qat/qatvar.h
168
((SIZE < QAT_SIZE_TO_RING_SIZE_IN_BYTES(QAT_RING_SIZE_4K)) ? \
sys/dev/pci/qat/qatvar.h
169
QAT_SIZE_TO_RING_SIZE_IN_BYTES(QAT_RING_SIZE_4K) : SIZE)
sys/dev/pci/qat/qatvar.h
170
#define QAT_RING_SIZE_MODULO(SIZE) (SIZE + 0x6)
sys/dev/pci/qat/qatvar.h
171
#define QAT_SIZE_TO_POW(SIZE) ((((SIZE & 0x4) >> 1) | ((SIZE & 0x4) >> 2) | \
sys/dev/pci/qat/qatvar.h
172
SIZE) & ~0x4)
tests/lib/libc/gen/t_vis.c
71
ATF_REQUIRE((dstbuf = malloc(SIZE)) != NULL);
tests/lib/libc/gen/t_vis.c
72
ATF_REQUIRE((srcbuf = malloc(SIZE)) != NULL);
tests/lib/libc/gen/t_vis.c
73
ATF_REQUIRE((visbuf = malloc(SIZE * 4 + 1)) != NULL);
tests/lib/libc/gen/t_vis.c
75
for (i = 0; i < SIZE; i++)
tests/lib/libc/gen/t_vis.c
79
ATF_REQUIRE(strsvisx(visbuf, srcbuf, SIZE, styles[i], "") > 0);
tests/lib/libc/gen/t_vis.c
80
memset(dstbuf, 0, SIZE);
tests/lib/libc/gen/t_vis.c
83
for (j = 0; j < SIZE; j++)
tests/lib/libc/locale/t_mbrtowc.c
180
char buf[SIZE];
tests/lib/libc/locale/t_mbrtowc.c
254
wchar_t wbuf[SIZE];
tests/lib/libc/locale/t_mbrtowc.c
261
rv = mbsrtowcs(wbuf, &src, SIZE, stp);
tests/lib/libc/locale/t_mbstowcs.c
192
wchar_t wbuf[SIZE];
tests/lib/libc/locale/t_mbstowcs.c
193
char buf[SIZE];
tests/lib/libc/locale/t_mbstowcs.c
194
char visbuf[SIZE];
tests/lib/libc/locale/t_mbstowcs.c
210
REQUIRE_ERRNO((ssize_t)mbstowcs(wbuf, t->data, SIZE-1), -1);
tests/lib/libc/locale/t_mbstowcs.c
211
REQUIRE_ERRNO((ssize_t)wcstombs(buf, wbuf, SIZE-1), -1);
tests/lib/libc/locale/t_mbstowcs.c
237
if (wcswidth(wbuf, SIZE-1) != t->width) {
tests/lib/libc/locale/t_mbstowcs.c
240
(void)printf(" got : %d\n", wcswidth(wbuf, SIZE-1));
tests/lib/libc/sys/t_write.c
234
void *map = mmap(NULL, SIZE, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0);
tests/lib/libc/sys/t_write.c
237
ssize_t retval = write(fd[1], map, SIZE);
tests/lib/libc/sys/t_write.c
242
munmap(map, SIZE);
tests/lib/libc/sys/t_write.c
260
void *map = mmap(NULL, SIZE, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0);
tests/lib/libc/sys/t_write.c
263
ssize_t retval = read(fd, map, SIZE);
tests/lib/libc/sys/t_write.c
268
munmap(map, SIZE);
usr.bin/usbhidaction/usbhidaction.c
242
char buf[SIZE], name[SIZE], value[SIZE], action[SIZE];
usr.bin/usbhidaction/usbhidaction.c
243
char usagestr[SIZE+1], coll[SIZE];
usr.bin/usbhidaction/usbhidaction.c
418
char cmdbuf[SIZE], *p, *q;
usr.bin/usbhidaction/usbhidaction.c
422
for (p = cmd->action, q = cmdbuf; *p && q < &cmdbuf[SIZE-1]; ) {
usr.bin/usbhidaction/usbhidaction.c
425
len = &cmdbuf[SIZE-1] - q;
usr.sbin/quot/quot.c
376
ksz = SIZE(sz);
usr.sbin/quot/quot.c
407
SIZE(sz += fp->fsz_sz[i]));
usr.sbin/quot/quot.c
436
printf("%5lld", SIZE(usr->space));
usr.sbin/quot/quot.c
442
SIZE(usr->spc30), SIZE(usr->spc60),
usr.sbin/quot/quot.c
443
SIZE(usr->spc90));