REFACTOR [a vs an]
From /dev/humancontroller.
This commit is contained in:
parent
4bd24d3182
commit
f3e7012bdb
27 changed files with 39 additions and 39 deletions
|
@ -362,7 +362,7 @@ void Huff_Decompress(msg_t *mbuf, int offset) {
|
|||
for ( j = 0; j < cch; j++ ) {
|
||||
ch = 0;
|
||||
// don't overflow reading from the messages
|
||||
// FIXME: would it be better to have a overflow check in get_bit ?
|
||||
// FIXME: would it be better to have an overflow check in get_bit ?
|
||||
if ( (bloc >> 3) > size ) {
|
||||
seq[j] = 0;
|
||||
break;
|
||||
|
|
|
@ -38,7 +38,7 @@ struct mdfour {
|
|||
|
||||
/* NOTE: This code makes no attempt to be fast!
|
||||
|
||||
It assumes that a int is at least 32 bits long
|
||||
It assumes that an int is at least 32 bits long
|
||||
*/
|
||||
|
||||
static struct mdfour *m;
|
||||
|
|
|
@ -376,11 +376,11 @@ local uLong unzlocal_SearchCentralDir(pzlib_filefunc_def,filestream)
|
|||
|
||||
/*
|
||||
Open a Zip file. path contain the full pathname (by example,
|
||||
on a Windows NT computer "c:\\test\\zlib114.zip" or on an Unix computer
|
||||
on a Windows NT computer "c:\\test\\zlib114.zip" or on a Unix computer
|
||||
"zlib/zlib114.zip".
|
||||
If the zipfile cannot be opened (file doesn't exist or in not valid), the
|
||||
return value is NULL.
|
||||
Else, the return value is a unzFile Handle, usable with other function
|
||||
Else, the return value is an unzFile Handle, usable with other function
|
||||
of this unzip package.
|
||||
*/
|
||||
extern unzFile ZEXPORT unzOpen2 (path, pzlib_filefunc_def)
|
||||
|
|
|
@ -136,11 +136,11 @@ extern int ZEXPORT unzStringFileNameCompare OF ((const char* fileName1,
|
|||
extern unzFile ZEXPORT unzOpen OF((const char *path));
|
||||
/*
|
||||
Open a Zip file. path contain the full pathname (by example,
|
||||
on a Windows XP computer "c:\\zlib\\zlib113.zip" or on an Unix computer
|
||||
on a Windows XP computer "c:\\zlib\\zlib113.zip" or on a Unix computer
|
||||
"zlib/zlib113.zip".
|
||||
If the zipfile cannot be opened (file don't exist or in not valid), the
|
||||
return value is NULL.
|
||||
Else, the return value is a unzFile Handle, usable with other function
|
||||
Else, the return value is an unzFile Handle, usable with other function
|
||||
of this unzip package.
|
||||
*/
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#define OPSTACK_MASK (OPSTACK_SIZE-1)
|
||||
|
||||
// don't change
|
||||
// Hardcoded in q3asm an reserved at end of bss
|
||||
// Hardcoded in q3asm a reserved at end of bss
|
||||
#define PROGRAM_STACK_SIZE 0x10000
|
||||
#define PROGRAM_STACK_MASK (PROGRAM_STACK_SIZE-1)
|
||||
|
||||
|
|
|
@ -374,7 +374,7 @@ static const struct powerpc_operand powerpc_operands[] =
|
|||
/* The SH field in an X or M form instruction. */
|
||||
#define SH RS + 1
|
||||
#define SH_MASK (0x1f << 11)
|
||||
/* The other UIMM field in a EVX form instruction. */
|
||||
/* The other UIMM field in an EVX form instruction. */
|
||||
#define EVUIMM SH
|
||||
{ 0x1f, 11, NULL, 0 },
|
||||
|
||||
|
@ -657,19 +657,19 @@ insert_rbs (unsigned long insn,
|
|||
#define SC(op, sa, lk) (OP (op) | ((((unsigned long)(sa)) & 1) << 1) | ((lk) & 1))
|
||||
#define SC_MASK (OP_MASK | (((unsigned long)0x3ff) << 16) | (((unsigned long)1) << 1) | 1)
|
||||
|
||||
/* An VX form instruction. */
|
||||
/* A VX form instruction. */
|
||||
#define VX(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x7ff))
|
||||
|
||||
/* The mask for an VX form instruction. */
|
||||
/* The mask for a VX form instruction. */
|
||||
#define VX_MASK VX(0x3f, 0x7ff)
|
||||
|
||||
/* An VA form instruction. */
|
||||
/* A VA form instruction. */
|
||||
#define VXA(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x03f))
|
||||
|
||||
/* The mask for an VA form instruction. */
|
||||
/* The mask for a VA form instruction. */
|
||||
#define VXA_MASK VXA(0x3f, 0x3f)
|
||||
|
||||
/* An VXR form instruction. */
|
||||
/* A VXR form instruction. */
|
||||
#define VXR(op, xop, rc) (OP (op) | (((rc) & 1) << 10) | (((unsigned long)(xop)) & 0x3ff))
|
||||
|
||||
/* The mask for a VXR form instruction. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue