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

  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 681 /* basic mux operation - can be optimized on several architectures */
682 #define MUX(pred, true, false) ((pred) ? (true) : (false))
685 #define MODDEC(x, bound) MUX((x) == 0, (bound) - 1, (x) - 1)
686 #define MODINC(x, bound) MUX((x) == (bound) - 1, 0, (x) + 1)
694 MUX((x) + (y) >= (bound), (x) + (y) - (bound), (x) + (y))
696 MUX(((int)(x)) - ((int)(y)) < 0, (x) - (y) + (bound), (x) - (y))
  /external/smack/src/org/xbill/DNS/
WKSRecord.java 75 public static final int MUX = 18;
175 protocols.add(MUX, "mux");

Completed in 302 milliseconds