and (with &) should be parenthesized before conducting boolean test on result. e.g. if(!x&value) must be changed to if(!(x&value)) to do what you expect.