HomeSort by: relevance | last modified time | path
    Searched defs:SIZE (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/arch/luna68k/dev/
omkbdmap.c 298 #define SIZE(map) (sizeof(map)/sizeof(keysym_t))
301 { KB_JP, 0, SIZE(omkbd_keydesc_jp), omkbd_keydesc_jp, },
  /src/sys/arch/news68k/stand/bootxx/
Makefile 17 SIZE?= size
39 ${SIZE} ${.TARGET}.sym
  /src/sys/arch/newsmips/stand/bootxx/
Makefile 11 SIZE?= size
36 ${SIZE} ${.TARGET}.sym
  /src/tests/lib/libc/sys/
t_write.c 226 #define SIZE 8192
234 void *map = mmap(NULL, SIZE, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0);
237 ssize_t retval = write(fd[1], map, SIZE);
242 munmap(map, SIZE);
260 void *map = mmap(NULL, SIZE, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0);
263 ssize_t retval = read(fd, map, SIZE);
268 munmap(map, SIZE);
  /src/tests/lib/libc/locale/
t_mbstowcs.c 73 #define SIZE 256
163 wchar_t wbuf[SIZE];
164 char buf[SIZE];
165 char visbuf[SIZE];
178 REQUIRE_ERRNO((ssize_t)mbstowcs(wbuf, t->data, SIZE-1), -1);
179 REQUIRE_ERRNO((ssize_t)wcstombs(buf, wbuf, SIZE-1), -1);
203 if (wcswidth(wbuf, SIZE-1) != t->width) {
206 (void)printf(" got : %d\n", wcswidth(wbuf, SIZE-1));
t_mbrtowc.c 73 #define SIZE 256
142 char buf[SIZE];
216 wchar_t wbuf[SIZE];
223 rv = mbsrtowcs(wbuf, &src, SIZE, stp);
  /src/tests/lib/libc/gen/
t_vis.c 57 #define SIZE 256
71 ATF_REQUIRE((dstbuf = malloc(SIZE)) != NULL);
72 ATF_REQUIRE((srcbuf = malloc(SIZE)) != NULL);
73 ATF_REQUIRE((visbuf = malloc(SIZE * 4 + 1)) != NULL);
75 for (i = 0; i < SIZE; i++)
79 ATF_REQUIRE(strsvisx(visbuf, srcbuf, SIZE, styles[i], "") > 0);
80 memset(dstbuf, 0, SIZE);
83 for (j = 0; j < SIZE; j++)
  /src/games/hack/
config.h 153 /* size of terminal screen is (at least) (ROWNO+2) by COLNO */
199 #define SIZE(x) (int)(sizeof(x) / sizeof(x[0]))
  /src/lib/libc/stdlib/
radixsort.c 80 #define SIZE 512 /* Default stack size. */
154 stack s[SIZE], *sp, *sp0, *sp1, temp;
183 if (sp + nc > s + SIZE) { /* Get more stack. */
197 bigc = 2; /* Size of biggest bin. */
272 if (sp + nc > s + SIZE) {
  /src/usr.bin/usbhidaction/
usbhidaction.c 71 #define SIZE 4000
167 (void)printf("report size %d\n", sz);
196 err(EXIT_FAILURE, "read size");
242 char buf[SIZE], name[SIZE], value[SIZE], action[SIZE];
243 char usagestr[SIZE+1], coll[SIZE];
268 /* XXX SIZE == 4000 *
    [all...]
  /src/common/dist/zlib/examples/
gun.c 76 #define SIZE 32768U /* input and output buffer sizes */
80 input file and a buffer of size SIZE */
101 if ((unsigned)ret > SIZE - len)
102 ret = (int)(SIZE - len);
110 } while (ret != 0 && len < SIZE);
161 unsigned char inbuf[SIZE]; /* input buffer */
162 unsigned char outbuf[SIZE]; /* output buffer */
267 /* if the table will be full after this, increment the code size */
350 while (stack > SIZE - outcnt)
    [all...]
  /src/usr.sbin/quot/
quot.c 65 * wrong if the size is a multiple of the blocksize.
71 #define SIZE(n) ((long long)(n))
73 #define SIZE(n) howmany((long long)(n) * DEV_BSIZE, (long long)blocksize)
151 sz = DIP(super, dp, size);
376 ksz = SIZE(sz);
407 SIZE(sz += fp->fsz_sz[i]));
436 printf("%5lld", SIZE(usr->space));
442 SIZE(usr->spc30), SIZE(usr->spc60),
443 SIZE(usr->spc90))
    [all...]
  /src/share/mk/
sys.mk 122 SIZE?= size
bsd.own.mk 375 SIZE= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-size
401 SIZE= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-size

Completed in 44 milliseconds