/src/common/dist/zlib/contrib/blast/ |
Makefile | 0 blast: blast.c blast.h 2 cc -DTEST -o blast blast.c 4 test: blast 5 blast < test.pk | cmp - test.txt 8 rm -f blast blast.o 1 blast: blast.c blast.h target
|
blast.h | 0 /* blast.h -- interface for blast.c 26 * blast() decompresses the PKWare Data Compression Library (DCL) compressed 40 /* Definitions for input/output functions passed to blast(). See below for 45 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow, 48 * On success, the return value of blast() is zero. If there is an error in 55 * available bytes there. If infun() returns zero, then blast() returns with 56 * an input error. (blast() only asks for input if it needs it.) inhow is for 59 * If left and in are not NULL and *left is not zero when blast() is called, 63 * to be written are buf[0..len-1]. If err is not zero, then blast() return [all...] |
blast.c | 0 /* blast.c 3 * For conditions of distribution and use, see copyright notice in blast.h 6 * blast.c decompresses data compressed by the PKWare Compression Library. 8 * the PKWare library, hence the name "blast". 27 * 1.3 24 Aug 2013 - Return unused input from blast() 29 * - Enable the provision of initial input to blast() 34 #include "blast.h" /* prototype for blast() */ 382 /* See comments in blast.h */ 383 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow function in typeref:typename:int [all...] |
/src/games/warp/ |
bang.h | 9 EXT long blast[YSIZE][XSIZE]; variable in typeref:typename:EXT long[][]
|
move.c | 134 blast[y][x] += 1250; 136 blast[y][x] += 500+super*20; 138 blast[y][x] += 5000+super*100; 149 blast[y][x] += 80000; 151 blast[y][x] += 10; 157 blast[y][x] += 100000; 163 blast[y][x] += (temp==nuke ? 80000 : 1250); 165 blast[y][x] += 500+super*20; 167 blast[y][x] += 5000+super*100; 186 blast[y][x] += rand_mod(751)+1 [all...] |
play.c | 107 if (blast[realapollo->posy][realapollo->posx] <= 32000) 141 if (blast[realapollo->posy][realapollo->posx] <= 32000)
|
bang.c | 114 /* read blast list and update blast array */ 143 blast[yy[y]][xx[x]] += bangm[i];
|
weapon.c | 356 blast[y=(obj->posy+obj->vely+YSIZE00)%YSIZE] 583 blast[y][x] += size>50 ? 15000 : (size>15 ? 1500 : 150); 585 blast[y][x] += size*4; 587 blast[y][x] += 15000; 589 blast[y][x] += size*smarts/25;
|
us.c | 357 blast[y=(obj->posy+obj->vely+YSIZE00)%YSIZE]
|
init.c | 95 blast[y][x] = 0;
|
/src/games/battlestar/ |
fly.c | 56 static void blast(void); 153 blast(); 229 blast(void) function in typeref:typename:void
|
/src/usr.bin/msgs/ |
msgs.c | 169 int blast = 0; local in function:main 258 blast = lastmsg; /* save upper bound */ 319 if (blast != 0) /* never lower the upper bound! */ 320 lastmsg = blast; 323 else if (blast > lastmsg) 324 lastmsg = blast;
|