~mordred/drizzle/codestyle

« back to all changes in this revision

Viewing changes to mysys/my_bitmap.h

  • Committer: Monty
  • Date: 2008-10-02 05:41:33 UTC
  • mfrom: (398.1.10 codestyle)
  • Revision ID: mordred@scylla.inaugust.com-20081002054133-tyxv5bmqpazfaqqi
Merged up to 408 of stdint-includes-fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
*/
136
136
 
137
137
#define bit_is_set(I,B)   (sizeof(I) * CHAR_BIT > (B) ?                 \
138
 
                           (((I) & (1ULL << (B))) == 0 ? 0 : 1) : -1)
 
138
                           (((I) & (1UL << (B))) == 0 ? 0 : 1) : -1)
139
139
#define bit_do_set(I,B)   (sizeof(I) * CHAR_BIT > (B) ?         \
140
 
                           ((I) |= (1ULL << (B)), 1) : -1)
 
140
                           ((I) |= (1UL << (B)), 1) : -1)
141
141
#define bit_do_clear(I,B) (sizeof(I) * CHAR_BIT > (B) ?         \
142
 
                           ((I) &= ~(1ULL << (B)), 0) : -1)
 
142
                           ((I) &= ~(1UL << (B)), 0) : -1)
143
143
 
144
144
#ifdef  __cplusplus
145
145
}