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

  /external/clang/test/Sema/Inputs/
conversion.h 4 #define SETBIT(set,bit) do { int i = bit; set[i/(8*sizeof(set[0]))] |= (1 << (i%(8*sizeof(set)))); } while(0)
  /external/chromium_org/third_party/sqlite/src/src/
bitvec.c 299 #define SETBIT(V,I) V[I>>3] |= (1<<(I&7))
376 SETBIT(pV, (i+1));
  /external/clang/test/Sema/
conversion.c 379 SETBIT(bitset, 0);
382 SETBIT(bitset, y);
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 825 milliseconds