taglinefilesource code
w194arch/i386/boot/compressed/gzip.h#define put_short(w) \
w196arch/i386/boot/compressed/gzip.houtbuf[outcnt++] = (uch) ((w) & 0xff); \
w197arch/i386/boot/compressed/gzip.houtbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
w199arch/i386/boot/compressed/gzip.hput_byte((uch)((w) & 0xff)); \
w200arch/i386/boot/compressed/gzip.hput_byte((uch)((ush)(w) >> 8)); \
w46arch/i386/boot/compressed/inflate.c#define flush_output(w) (wp=(w),flush_window())
w127arch/i386/boot/compressed/inflate.cregister int w;               /* bits before this table == (l * h) */
w200arch/i386/boot/compressed/inflate.cw = -l;                       /* bits decoded == (l * h) */
w216arch/i386/boot/compressed/inflate.cwhile (k > w + l)
w220arch/i386/boot/compressed/inflate.cw += l;                 /* previous table always l bits */
w223arch/i386/boot/compressed/inflate.cz = (z = g - w) > (unsigned)l ? l : z;  /* upper limit on table size */
w224arch/i386/boot/compressed/inflate.cif ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
w255arch/i386/boot/compressed/inflate.cj = i >> (w - l);     /* (get around Turbo C bug) */
w263arch/i386/boot/compressed/inflate.cr.b = (uch)(k - w);
w279arch/i386/boot/compressed/inflate.cf = 1 << (k - w);
w280arch/i386/boot/compressed/inflate.cfor (j = i >> w; j < z; j += f)
w289arch/i386/boot/compressed/inflate.cwhile ((i & ((1 << w) - 1)) != x[h])
w292arch/i386/boot/compressed/inflate.cw -= l;
w336arch/i386/boot/compressed/inflate.cunsigned w;           /* current window position */
w346arch/i386/boot/compressed/inflate.cw = wp;                       /* initialize window position */
w365arch/i386/boot/compressed/inflate.cslide[w++] = (uch)t->v.n;
w366arch/i386/boot/compressed/inflate.cif (w == WSIZE)
w368arch/i386/boot/compressed/inflate.cflush_output(w);
w369arch/i386/boot/compressed/inflate.cw = 0;
w395arch/i386/boot/compressed/inflate.cd = w - t->v.n - ((unsigned)b & mask_bits[e]);
w400arch/i386/boot/compressed/inflate.cn -= (e = (e = WSIZE - ((d &= WSIZE-1) > w ? d : w)) > n ? n : e);
w402arch/i386/boot/compressed/inflate.cif (w - d >= e)         /* (this test assumes unsigned comparison) */
w404arch/i386/boot/compressed/inflate.cmemcpy(slide + w, slide + d, e);
w405arch/i386/boot/compressed/inflate.cw += e;
w411arch/i386/boot/compressed/inflate.cslide[w++] = slide[d++];
w413arch/i386/boot/compressed/inflate.cif (w == WSIZE)
w415arch/i386/boot/compressed/inflate.cflush_output(w);
w416arch/i386/boot/compressed/inflate.cw = 0;
w424arch/i386/boot/compressed/inflate.cwp = w;                       /* restore global window pointer */
w438arch/i386/boot/compressed/inflate.cunsigned w;           /* current window position */
w447arch/i386/boot/compressed/inflate.cw = wp;                       /* initialize window position */
w469arch/i386/boot/compressed/inflate.cslide[w++] = (uch)b;
w470arch/i386/boot/compressed/inflate.cif (w == WSIZE)
w472arch/i386/boot/compressed/inflate.cflush_output(w);
w473arch/i386/boot/compressed/inflate.cw = 0;
w480arch/i386/boot/compressed/inflate.cwp = w;                       /* restore global window pointer */
w441drivers/char/tpqic02.cstatic inline void byte_swap_w(volatile unsigned short * w)
w443drivers/char/tpqic02.cint t = *w;
w445drivers/char/tpqic02.c*w = (t>>8) | ((t & 0xff)<<8);
w79include/asm-i386/io.h__IN(w,"w","0" (0))
w83include/asm-i386/io.h__OUT(w,"w",short)
w87include/asm-i386/io.h__INS(w)
w91include/asm-i386/io.h__OUTS(w)
w130include/asm-mips/io.h__IN(h,w)
w131include/asm-mips/io.h__IN(w,l)
w134include/asm-mips/io.h__OUT(h,w)
w135include/asm-mips/io.h__OUT(w,l)
w138include/asm-mips/io.h__INS(h,w,2)
w139include/asm-mips/io.h__INS(w,l,4)
w142include/asm-mips/io.h__OUTS(h,w,2)
w143include/asm-mips/io.h__OUTS(w,l,4)