Symbol: SIZE
crypto/libressl/apps/openssl/enc.c
455
strbuf = malloc(SIZE);
crypto/libressl/apps/openssl/enc.c
508
i = EVP_read_pw_string((char *)strbuf, SIZE, buf,
crypto/libressl/apps/openssl/enc.c
649
explicit_bzero(enc_config.keystr, SIZE);
crypto/libressl/crypto/ui/ui_openssl.c
231
char buf[SIZE + 1];
crypto/libressl/crypto/ui/ui_openssl.c
234
if (!fgets(buf, SIZE, in))
games/hack/hack.do_name.c
281
gn = ghostnames[rn2(SIZE(ghostnames))];
games/hack/hack.eat.c
100
#define TTSZ SIZE(tintxts)
games/hack/hack.mon.c
147
if (warnlevel >= SIZE(warnings))
games/hack/hack.mon.c
148
warnlevel = SIZE(warnings) - 1;
games/hack/hack.o_init.c
159
if (first >= LAST_GEM || first >= SIZE(objects) ||
games/hack/hack.o_init.c
185
for (i = 0; i < SIZE(objects); i++) {
games/hack/hack.o_init.c
201
for (i = 0; i < SIZE(objects); i++)
games/hack/hack.o_init.c
217
end = SIZE(objects);
games/hack/hack.o_init.c
94
end = SIZE(objects);
games/hack/hack.potion.c
297
const char *botlnam = bottlenames[rn2(SIZE(bottlenames))];
games/hack/hack.timeout.c
125
if (i > 0 && i <= SIZE(stoned_texts))
games/hack/hack.timeout.c
126
pline("%s", stoned_texts[SIZE(stoned_texts) - i]);
games/hack/hack.timeout.c
75
for (upp = u.uprops; upp < u.uprops + SIZE(u.uprops); upp++)
games/hack/hack.u_init.c
83
#define NR_OF_ROLES SIZE(roles)
lib/libc/stdlib/radixsort.c
130
stack s[SIZE], *sp, *sp0, *sp1, temp;
lib/libc/stdlib/radixsort.c
156
if (sp + nc > s + SIZE) { /* Get more stack. */
lib/libc/stdlib/radixsort.c
252
if (sp + nc > s + SIZE) {
libexec/ftpd/ftpcmd.y
1141
{ "SIZE", SIZE, OSTR, 1, "<sp> path-name" },
libexec/ftpd/ftpcmd.y
127
CDUP STOU SMNT SYST SIZE MDTM
libexec/ftpd/ftpcmd.y
725
| SIZE check_login SP pathname CRLF
sys/dev/drm/amd/amdgpu/nbio_v6_1.c
124
ih_doorbell_range = REG_SET_FIELD(ih_doorbell_range, BIF_IH_DOORBELL_RANGE, SIZE, 2);
sys/dev/drm/amd/amdgpu/nbio_v6_1.c
126
ih_doorbell_range = REG_SET_FIELD(ih_doorbell_range, BIF_IH_DOORBELL_RANGE, SIZE, 0);
sys/dev/drm/amd/amdgpu/nbio_v6_1.c
83
doorbell_range = REG_SET_FIELD(doorbell_range, BIF_SDMA0_DOORBELL_RANGE, SIZE, 2);
sys/dev/drm/amd/amdgpu/nbio_v6_1.c
85
doorbell_range = REG_SET_FIELD(doorbell_range, BIF_SDMA0_DOORBELL_RANGE, SIZE, 0);
sys/dev/drm/amd/amdgpu/nbio_v7_0.c
107
ih_doorbell_range = REG_SET_FIELD(ih_doorbell_range, BIF_IH_DOORBELL_RANGE, SIZE, 2);
sys/dev/drm/amd/amdgpu/nbio_v7_0.c
109
ih_doorbell_range = REG_SET_FIELD(ih_doorbell_range, BIF_IH_DOORBELL_RANGE, SIZE, 0);
sys/dev/drm/amd/amdgpu/nbio_v7_0.c
81
doorbell_range = REG_SET_FIELD(doorbell_range, BIF_SDMA0_DOORBELL_RANGE, SIZE, 2);
sys/dev/drm/amd/amdgpu/nbio_v7_0.c
83
doorbell_range = REG_SET_FIELD(doorbell_range, BIF_SDMA0_DOORBELL_RANGE, SIZE, 0);
sys/dev/drm/amd/amdgpu/nbio_v7_4.c
118
ih_doorbell_range = REG_SET_FIELD(ih_doorbell_range, BIF_IH_DOORBELL_RANGE, SIZE, 2);
sys/dev/drm/amd/amdgpu/nbio_v7_4.c
120
ih_doorbell_range = REG_SET_FIELD(ih_doorbell_range, BIF_IH_DOORBELL_RANGE, SIZE, 0);
sys/dev/drm/amd/amdgpu/nbio_v7_4.c
79
doorbell_range = REG_SET_FIELD(doorbell_range, BIF_SDMA0_DOORBELL_RANGE, SIZE, 2);
sys/dev/drm/amd/amdgpu/nbio_v7_4.c
81
doorbell_range = REG_SET_FIELD(doorbell_range, BIF_SDMA0_DOORBELL_RANGE, SIZE, 0);
sys/dev/drm/include/linux/kfifo.h
113
#define kfifo_out_peek(FIFO, PTR, SIZE) \
sys/dev/drm/include/linux/kfifo.h
114
_kfifo_out_peek(&(FIFO)->kf_meta, (FIFO)->kf_buf, (PTR), (SIZE))
sys/dev/drm/include/linux/kfifo.h
148
#define kfifo_out(FIFO, PTR, SIZE) \
sys/dev/drm/include/linux/kfifo.h
149
_kfifo_out(&(FIFO)->kf_meta, (FIFO)->kf_buf, (PTR), (SIZE))
sys/dev/drm/include/linux/kfifo.h
186
#define kfifo_in(FIFO, PTR, SIZE) \
sys/dev/drm/include/linux/kfifo.h
187
_kfifo_in(&(FIFO)->kf_meta, (FIFO)->kf_buf, (PTR), (SIZE))
sys/dev/drm/include/linux/kfifo.h
247
#define _KFIFO_TYPE(TYPE, SIZE) \
sys/dev/drm/include/linux/kfifo.h
248
struct __STRUCT_KFIFO(TYPE, SIZE, 0, TYPE)
sys/dev/drm/include/linux/kfifo.h
255
#define DECLARE_KFIFO(FIFO, TYPE, SIZE) _KFIFO_TYPE(TYPE, SIZE) FIFO
sys/dev/drm/include/linux/kfifo.h
59
#define kfifo_alloc(FIFO, SIZE, GFP) \
sys/dev/drm/include/linux/kfifo.h
60
_kfifo_alloc(&(FIFO)->kf_meta, &(FIFO)->kf_buf, (SIZE), (GFP))
sys/dev/pccard/pccbb/pccbb.c
116
#define PCI_MASK_CONFIG(DEV,REG,MASK,SIZE) \
sys/dev/pccard/pccbb/pccbb.c
117
pci_write_config(DEV, REG, pci_read_config(DEV, REG, SIZE) MASK, SIZE)
sys/dev/pccard/pccbb/pccbb.c
118
#define PCI_MASK2_CONFIG(DEV,REG,MASK1,MASK2,SIZE) \
sys/dev/pccard/pccbb/pccbb.c
120
pci_read_config(DEV, REG, SIZE) MASK1) MASK2, SIZE)
sys/dev/pccard/pccbb/pccbb_pci.c
108
#define PCI_MASK_CONFIG(DEV,REG,MASK,SIZE) \
sys/dev/pccard/pccbb/pccbb_pci.c
109
pci_write_config(DEV, REG, pci_read_config(DEV, REG, SIZE) MASK, SIZE)
sys/dev/pccard/pccbb/pccbb_pci.c
110
#define PCI_MASK2_CONFIG(DEV,REG,MASK1,MASK2,SIZE) \
sys/dev/pccard/pccbb/pccbb_pci.c
112
pci_read_config(DEV, REG, SIZE) MASK1) MASK2, SIZE)
sys/kern/kern_nrandom.c
231
for (i = 0; i < SIZE; ++i) {
sys/kern/kern_nrandom.c
233
a = barrel(a) + m[ind(i + (SIZE / 2))]; /* set a */
sys/kern/kern_nrandom.c
255
for (i = 0; i < SIZE; ++i) {
sys/kern/kern_nrandom.c
517
for (i = 0; i < (SIZE / 2); ++i) {
sys/sys/ibaa.h
10
uint32_t IBAA_results[SIZE];
sys/sys/ibaa.h
4
#define MASK (SIZE - 1)
sys/sys/ibaa.h
5
#define ind(x) ((x) & (SIZE - 1))
sys/sys/ibaa.h
9
uint32_t IBAA_memory[SIZE];
test/debug/crc32hw.c
343
#define CHUNK SIZE
test/debug/crc32hw.c
354
buf = malloc(SIZE);
test/debug/crc32hw.c
359
while ((got = read(0, buf, SIZE)) > 0) {
usr.bin/at/at.c
158
static size_t size = SIZE;
usr.bin/at/at.c
176
size += SIZE;
usr.bin/usbhidaction/usbhidaction.c
282
char buf[SIZE], name[SIZE], value[SIZE], debounce[SIZE], action[SIZE];
usr.bin/usbhidaction/usbhidaction.c
283
char usbuf[SIZE], coll[SIZE], *tmp;
usr.bin/usbhidaction/usbhidaction.c
468
char cmdbuf[SIZE], *p, *q;
usr.bin/usbhidaction/usbhidaction.c
472
for (p = cmd->action, q = cmdbuf; *p && q < &cmdbuf[SIZE-1]; ) {
usr.bin/usbhidaction/usbhidaction.c
475
len = &cmdbuf[SIZE-1] - q;
usr.sbin/efivar/efiutil.c
163
while (dp < edp && SIZE(dp, edp) > sizeof(efidp_header)) {
usr.sbin/efivar/efiutil.c
164
efidp_format_device_path(buf, sizeof(buf), dp, SIZE(dp, edp));
usr.sbin/quot/quot.c
366
ksz = SIZE(sz);
usr.sbin/quot/quot.c
397
SIZE(sz += fp->fsz_sz[i]));
usr.sbin/quot/quot.c
428
printf("%5d",SIZE(usr->space));
usr.sbin/quot/quot.c
434
SIZE(usr->spc30),
usr.sbin/quot/quot.c
435
SIZE(usr->spc60),
usr.sbin/quot/quot.c
436
SIZE(usr->spc90));