Lines Matching full:oe
23 #define OE (1 << 27) macro
30 /* oe = 0, pu = 0, od = 0 */
32 /* oe = 0, pu = 1, od = 0 */
34 /* oe = 1, pu = 0, od = 0 */
35 #define OUT (OE)
36 /* oe = 1, pu = 1, od = 0 */
37 #define OUT_PU (OE | PU)
38 /* oe = 1, pu = 0, od = 1 */
39 #define BIDIR (OE | OD)
40 /* oe = 1, pu = 1, od = 1 */
41 #define BIDIR_PU (OE | PU | OD)
95 int oe = 0, pu = 0, od = 0; in sti_pin_configure() local
108 * the OE and PU features for PIOs in this bank. However, in sti_pin_configure()
129 oe = 0; pu = 0; od = 0; in sti_pin_configure()
132 oe = 0; pu = 1; od = 0; in sti_pin_configure()
135 oe = 1; pu = 0; od = 0; in sti_pin_configure()
138 oe = 1; pu = 0; od = 1; in sti_pin_configure()
141 oe = 1; pu = 1; od = 1; in sti_pin_configure()
180 if (oe) in sti_pin_configure()