Searched defs:bit_mask (Results 1 - 5 of 5) sorted by relevance

/external/e2fsprogs/ext2ed/
H A Dblockbitmap_com.c176 unsigned char bit_mask=1; local
182 bit_mask*=2; /* Generate the or mask - 1 at the right place */
183 type_data.u.buffer [byte_offset] |= bit_mask; /* And apply it */
191 unsigned char bit_mask=1; local
196 bit_mask*=2;
197 bit_mask^=0xff;
199 type_data.u.buffer [byte_offset] &= bit_mask;
H A Dinodebitmap_com.c136 unsigned char bit_mask=1; local
141 bit_mask*=2;
142 type_data.u.buffer [byte_offset] |= bit_mask;
148 unsigned char bit_mask=1; local
153 bit_mask*=2;
154 bit_mask^=0xff;
156 type_data.u.buffer [byte_offset] &= bit_mask;
/external/chromium_org/chrome/browser/profile_resetter/
H A Dresettable_settings_snapshot.cc109 int bit_mask = 0; local
113 bit_mask |= STARTUP_MODE;
118 bit_mask |= HOMEPAGE;
121 bit_mask |= DSE_URL;
124 bit_mask |= EXTENSIONS;
127 bit_mask |= SHORTCUTS;
132 return bit_mask;
/external/libhevc/decoder/
H A Dihevcd_process_slice.c118 WORD32 bit_mask = (1 << bit_pos); local
145 status = *pu1_buf & bit_mask;
160 status = *pu1_buf & bit_mask;
169 status = *pu1_buf & bit_mask;
200 WORD32 bit_mask = (1 << bit_pos); local
212 *pu1_buf = *pu1_buf | bit_mask;
/external/valgrind/main/perf/
H A Dtinycc.c13971 unsigned long long bit_mask;
14006 bit_mask = -1LL;
14010 bit_mask = (1LL << bit_size) - 1;
14022 *(char *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
14025 *(short *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
14034 *(long long *)ptr |= (vtop->c.ll & bit_mask) << bit_pos;
14040 *(int *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
13969 unsigned long long bit_mask; local

Completed in 222 milliseconds