HomeSort by relevance Sort by last modified time
    Searched defs:MYMAX (Results 1 - 2 of 2) sorted by null

  /external/bzip2/
huffman.c 27 #define MYMAX(zz2,zz3) ((zz2) > (zz3) ? (zz2) : (zz3))
31 (1 + MYMAX(DEPTHOF(zw1),DEPTHOF(zw2)))
  /external/clang/test/Sema/
exprs.c 112 #define MYMAX(A,B) __extension__ ({ __typeof__(A) __a = (A); __typeof__(B) __b = (B); __a < __b ? __b : __a; })
116 MYMAX(P, F); // expected-error {{invalid operands to binary expression ('typeof (P)' (aka 'struct mystruct') and 'typeof (F)' (aka 'float'))}}

Completed in 42 milliseconds