/src/sys/external/bsd/drm2/include/linux/ |
circ_buf.h | 35 #define CIRC_SPACE(HEAD, TAIL, SIZE) \ 36 (((TAIL) - ((HEAD) + 1)) & ((SIZE) - 1))
|
ioport.h | 54 #define DEFINE_RES_MEM(START, SIZE) \ 55 { .start = (START), .end = (START) + ((SIZE) - 1) }
|
kfifo.h | 93 #define kfifo_alloc(FIFO, SIZE, GFP) \ 94 _kfifo_alloc(&(FIFO)->kf_meta, &(FIFO)->kf_buf, (SIZE), (GFP)) 144 #define kfifo_out_peek(FIFO, PTR, SIZE) \ 145 _kfifo_out_peek(&(FIFO)->kf_meta, (FIFO)->kf_buf, (PTR), (SIZE)) 148 _kfifo_out_peek(struct kfifo_meta *meta, void *buf, void *ptr, size_t size) 159 if (size <= tail - head) { 160 memcpy(dst, src + head, size); 161 copied = size; 164 if (size <= nbytes - head) { 165 memcpy(dst, src + head, size); [all...] |
moduleparam.h | 69 #define module_param_string(VAR, TYPE, SIZE, MODE) \
|
/src/sys/arch/emips/stand/common/ |
checksize.sh | 33 # boot object with headers, to check bss size 35 # maximum load size 36 # maximum total (load + bss) size 48 if [ "$SIZE" = "" ]; then 49 SIZE=size 52 size_data=`$SIZE $bootfile` 54 echo "$progname: couldn't get size of $bootfile" 2>&1 64 echo "MAXIMUM LOAD SIZE EXCEEDED ($load_size > $maxloadsize)" 69 echo "MAXIMUM TOTAL SIZE EXCEEDED ($load_size + $bss_size > $maxtotalsize) [all...] |
/src/sys/arch/pmax/stand/common/ |
checksize.sh | 33 # boot object with headers, to check bss size 35 # maximum load size 36 # maximum total (load + bss) size 48 if [ "$SIZE" = "" ]; then 49 SIZE=size 52 size_data=`$SIZE $bootfile` 54 echo "$progname: couldn't get size of $bootfile" 2>&1 64 echo "MAXIMUM LOAD SIZE EXCEEDED ($load_size > $maxloadsize)" 69 echo "MAXIMUM TOTAL SIZE EXCEEDED ($load_size + $bss_size > $maxtotalsize) [all...] |
/src/regress/sys/fs/lfs/ckckp/ |
run_ckckp | 9 SIZE=$7 12 (cd $TMPMP; $UTILDIR/cleanalot_async -n $COUNT -p $PLEX -b $SIZE) &
|
/src/sys/arch/alpha/stand/common/ |
checksize.sh | 33 # boot object with headers, to check bss size 35 # maximum load size 36 # maximum total (load + bss) size 49 if [ "$SIZE" = "" ]; then 50 SIZE=size 53 size_data=`$SIZE $bootobj` 55 echo "$progname: couldn't get size of $bootobj" 2>&1 65 echo "MAXIMUM LOAD SIZE EXCEEDED ($load_size > $maxloadsize)" 70 echo "MAXIMUM TOTAL SIZE EXCEEDED ($load_size + $bss_size > $maxtotalsize) [all...] |
/src/sys/arch/evbmips/stand/sbmips/common/ |
checksize.sh | 33 # boot object with headers, to check bss size 35 # maximum load size 36 # maximum total (load + bss) size 49 if [ "$SIZE" = "" ]; then 50 SIZE=size 53 size_data=`$SIZE $bootobj` 55 echo "$progname: couldn't get size of $bootobj" 2>&1 65 echo "MAXIMUM LOAD SIZE EXCEEDED ($load_size > $maxloadsize)" 70 echo "MAXIMUM TOTAL SIZE EXCEEDED ($load_size + $bss_size > $maxtotalsize) [all...] |
/src/sys/arch/sbmips/stand/common/ |
checksize.sh | 33 # boot object with headers, to check bss size 35 # maximum load size 36 # maximum total (load + bss) size 49 if [ "$SIZE" = "" ]; then 50 SIZE=size 53 size_data=`$SIZE $bootobj` 55 echo "$progname: couldn't get size of $bootobj" 2>&1 65 echo "MAXIMUM LOAD SIZE EXCEEDED ($load_size > $maxloadsize)" 70 echo "MAXIMUM TOTAL SIZE EXCEEDED ($load_size + $bss_size > $maxtotalsize) [all...] |
/src/games/hack/ |
hack.timeout.c | 80 for (upp = u.uprops; upp < u.uprops + SIZE(u.uprops); upp++) 130 if (i > 0 && i <= SIZE(stoned_texts)) 131 pline("%s", stoned_texts[SIZE(stoned_texts) - i]);
|
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/sys/arch/mmeye/stand/boot/ |
deflate.sh | 12 SIZE=`ls -l ${kernel}.gz.tmp | cut -d ' ' -f 8` 13 dd if=${kernel}.gz.tmp bs=`expr $SIZE - 8` count=1 >> ${kernel}.gz
|
/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));
|
/src/sys/arch/playstation2/conf/ |
build.playstation2.sh | 17 SIZE=${root}/bin/${target}-size; export SIZE
|
/src/sys/arch/sparc/stand/bootxx/ |
Makefile | 27 @${SIZE} ${.TARGET}.sym
|
/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/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/sys/arch/sgimips/stand/boot/ |
Makefile | 33 @${SIZE} ${.TARGET} 40 @${SIZE} ${.TARGET}
|
/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/sys/arch/mvme68k/stand/bootst/ |
Makefile | 13 @${SIZE} bootst.bug
|
/src/sys/arch/sparc/stand/boot/ |
Makefile | 56 ${SIZE} ${.TARGET} 63 ${SIZE} ${.TARGET}.tmp
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_nbio_v2_3.c | 98 BIF_SDMA0_DOORBELL_RANGE, SIZE, 102 BIF_SDMA0_DOORBELL_RANGE, SIZE, 120 BIF_MMSCH0_DOORBELL_RANGE, SIZE, 8); 123 BIF_MMSCH0_DOORBELL_RANGE, SIZE, 0); 169 BIF_IH_DOORBELL_RANGE, SIZE, 173 BIF_IH_DOORBELL_RANGE, SIZE,
|
amdgpu_nbio_v7_0.c | 92 doorbell_range = REG_SET_FIELD(doorbell_range, BIF_SDMA0_DOORBELL_RANGE, SIZE, doorbell_size); 94 doorbell_range = REG_SET_FIELD(doorbell_range, BIF_SDMA0_DOORBELL_RANGE, SIZE, 0); 111 BIF_MMSCH0_DOORBELL_RANGE, SIZE, 8); 114 BIF_MMSCH0_DOORBELL_RANGE, SIZE, 0); 138 ih_doorbell_range = REG_SET_FIELD(ih_doorbell_range, BIF_IH_DOORBELL_RANGE, SIZE, 2); 140 ih_doorbell_range = REG_SET_FIELD(ih_doorbell_range, BIF_IH_DOORBELL_RANGE, SIZE, 0);
|