taglinefilesource code
w377drivers/char/tpqic02.cstatic inline void byte_swap_w(volatile unsigned short * w)
w379drivers/char/tpqic02.cint t = *w;
w381drivers/char/tpqic02.c*w = (t>>8) | ((t & 0xff)<<8);
w66include/asm/io.h__IN(w,"w","0" (0))
w70include/asm/io.h__OUT(w,"w",short)
w74include/asm/io.h__INS(w)
w78include/asm/io.h__OUTS(w)
w194zBoot/gzip.h#define put_short(w) \
w196zBoot/gzip.houtbuf[outcnt++] = (uch) ((w) & 0xff); \
w197zBoot/gzip.houtbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
w199zBoot/gzip.hput_byte((uch)((w) & 0xff)); \
w200zBoot/gzip.hput_byte((uch)((ush)(w) >> 8)); \
w46zBoot/inflate.c#define flush_output(w) (wp=(w),flush_window())
w127zBoot/inflate.cregister int w;               /* bits before this table == (l * h) */
w200zBoot/inflate.cw = -l;                       /* bits decoded == (l * h) */
w216zBoot/inflate.cwhile (k > w + l)
w220zBoot/inflate.cw += l;                 /* previous table always l bits */
w223zBoot/inflate.cz = (z = g - w) > (unsigned)l ? l : z;  /* upper limit on table size */
w224zBoot/inflate.cif ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
w263zBoot/inflate.cj = i >> (w - l);     /* (get around Turbo C bug) */
w271zBoot/inflate.cr.b = (uch)(k - w);
w287zBoot/inflate.cf = 1 << (k - w);
w288zBoot/inflate.cfor (j = i >> w; j < z; j += f)
w297zBoot/inflate.cwhile ((i & ((1 << w) - 1)) != x[h])
w300zBoot/inflate.cw -= l;
w344zBoot/inflate.cunsigned w;           /* current window position */
w354zBoot/inflate.cw = wp;                       /* initialize window position */
w373zBoot/inflate.cslide[w++] = (uch)t->v.n;
w374zBoot/inflate.cif (w == WSIZE)
w376zBoot/inflate.cflush_output(w);
w377zBoot/inflate.cw = 0;
w403zBoot/inflate.cd = w - t->v.n - ((unsigned)b & mask_bits[e]);
w408zBoot/inflate.cn -= (e = (e = WSIZE - ((d &= WSIZE-1) > w ? d : w)) > n ? n : e);
w410zBoot/inflate.cif (w - d >= e)         /* (this test assumes unsigned comparison) */
w412zBoot/inflate.cmemcpy(slide + w, slide + d, e);
w413zBoot/inflate.cw += e;
w419zBoot/inflate.cslide[w++] = slide[d++];
w421zBoot/inflate.cif (w == WSIZE)
w423zBoot/inflate.cflush_output(w);
w424zBoot/inflate.cw = 0;
w432zBoot/inflate.cwp = w;                       /* restore global window pointer */
w446zBoot/inflate.cunsigned w;           /* current window position */
w455zBoot/inflate.cw = wp;                       /* initialize window position */
w477zBoot/inflate.cslide[w++] = (uch)b;
w478zBoot/inflate.cif (w == WSIZE)
w480zBoot/inflate.cflush_output(w);
w481zBoot/inflate.cw = 0;
w488zBoot/inflate.cwp = w;                       /* restore global window pointer */