HomeSort by: relevance | last modified time | path
    Searched defs:CASE (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/dev/ir/
irframe.c 90 /* In case we just have tty attachment. */
284 #define CASE(s) case s: if (!(sc->sc_speedmask & CONC(IRDA_SPEED_,s))) return (EINVAL); break
286 CASE(2400);
287 CASE(9600);
288 CASE(19200);
289 CASE(38400);
290 CASE(57600);
291 CASE(115200);
292 CASE(576000)
    [all...]
  /src/bin/ksh/
lex.h 87 #define CASE 265
  /src/usr.bin/xlint/lint1/
op.h 126 CASE, /* does not appear in the tree */
  /src/sys/dev/stbi/
stb_image.c 141 // by calling stbi_convert_iphone_png_to_rgb(0), in which case
891 // special case: we've only got the special 0 character at the end
999 #define CASE(a,b) case COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b)
1003 CASE(1,2) dest[0]=src[0], dest[1]=255;
1005 CASE(1,3) dest[0]=dest[1]=dest[2]=src[0];
1007 CASE(1,4) dest[0]=dest[1]=dest[2]=src[0], dest[3]=255;
1009 CASE(2,1) dest[0]=src[0];
1011 CASE(2,3) dest[0]=dest[1]=dest[2]=src[0];
1013 CASE(2,4) dest[0]=dest[1]=dest[2]=src[0], dest[3]=src[1]
    [all...]

Completed in 14 milliseconds