/external/yaffs2/yaffs2/ |
yaffs_ecc.c | 20 * The two unused bit are set to 1. 21 * The ECC can correct single bit errors in a 256-byte page of data. Thus, two such ECC 29 * Bit 0 of each entry indicates whether the entry has an odd or even parity, and therefore 188 /* Single bit (recoverable) error in data */ 191 unsigned bit; local 202 bit = byte = 0; 222 bit |= 0x04; 224 bit |= 0x02; 226 bit |= 0x01; 228 data[byte] ^= (1 << bit); 289 unsigned bit; local [all...] |
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
Grain.java | 49 int bit = 0; local 51 bit++; 54 return bit;
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
Grain.java | 44 int bit = 0; local 46 bit++; 49 return bit;
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
Grain.java | 49 int bit = 0; local 51 bit++; 54 return bit;
|
/dalvik/vm/alloc/TEST/HeapBitmapTest/ |
main.c | 211 unsigned long bit; local 219 bit = dvmHeapBitmapSetAndReturnObjectBit(&hb, HEAP_BASE); 220 assert(bit == 0); 239 bit = dvmHeapBitmapSetAndReturnObjectBit(&hb, HEAP_BASE); 240 assert(bit != 0); 259 bit = dvmHeapBitmapSetAndReturnObjectBit(&hb, 261 assert(bit == 0); 280 bit = dvmHeapBitmapSetAndReturnObjectBit(&hb, 282 assert(bit != 0);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/ |
GCMUtil.java | 70 // P is the value with only bit i=1 set 93 // P is the value with only bit i=1 set 128 int bit = 0; local 132 block[i] = (byte) ((b >>> 1) | bit); 137 bit = (b & 1) << 7; 144 int bit = 0; local 148 output[i] = (byte) ((b >>> 1) | bit); 153 bit = (b & 1) << 7; 160 int bit = 0; local 164 block[i] = (b >>> 1) | bit; 176 int bit = 0; local [all...] |
/external/chromium/net/base/ |
dnssec_unittest.cc | 80 // The is root's 1024-bit key. 92 // The is root's 2048-bit key. 594 unsigned bit = bit_to_flip & 7; local [all...] |
/external/chromium_org/third_party/libwebp/utils/ |
bit_reader.h | 30 // However, since range_ is only 8bit, we only need an active window of 8 bits 37 // 8bit window of value_: either we shift them in, while keeping the position of 71 #if defined(__i386__) || defined(_M_IX86) // x86 32bit 73 #elif defined(__x86_64__) || defined(_M_X64) // x86 64bit 133 // Initialize the bit reader and the boolean decoder. 146 // Read a bit with proba 'prob'. Speed-critical function! 170 #else // generic code for swapping 64-bit values (suggested by bdb@) 259 // It's important to avoid generating a 64bit x 64bit multiply here. 263 const int bit = VP8BitUpdate(br, split) local 280 const int bit = VP8BitUpdate(br, split); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_tile_cache.c | 62 int pos, bit; local 65 bit = bitvec[pos / 32] & (1 << (pos & 31)); 66 return bit;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_state_upload.c | 320 uint32_t bit; member in struct:dirty_bit_map 410 if (bit_map[i].bit == 0) 413 if (bit_map[i].bit & bits) 424 if (bit_map[i].bit == 0) 428 bit_map[i].bit, bit_map[i].count, bit_map[i].name);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
intel_pixel_bitmap.c | 89 static bool test_bit( const GLubyte *src, GLuint bit ) 91 return (src[bit/8] & (1<<(bit % 8))) ? 1 : 0; 94 static void set_bit( GLubyte *dest, GLuint bit ) 96 dest[bit/8] |= 1 << (bit % 8); 113 GLuint bit = 0; local 141 for (col = 0; col < w; col++, bit++) { 143 set_bit(dest, bit ^ 7); 149 bit = ALIGN(bit, row_align) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texcompress_etc_tmp.h | 120 int modifier, bit, idx, blk; local 123 bit = y + x * 4; 124 idx = ((block->pixel_indices >> (15 + bit)) & 0x2) | 125 ((block->pixel_indices >> (bit)) & 0x1);
|
/external/clang/test/Sema/ |
constant-conversion.c | 18 struct { int bit : 1; } a; member in struct:__anon18672 19 a.bit = 1; // shouldn't warn
|
/external/grub/netboot/ |
3c595.c | 37 int bit; member in struct:connector_entry 357 if (vx_connectors & conn_tab[k].bit) { 398 if ((vx_connectors & conn_tab[vx_connector].bit) == 0) {
|
/external/iptables/extensions/ |
libxt_sctp.c | 123 int bit, 132 flag_info[i].flag_mask |= (1 << bit); 134 flag_info[i].flag |= (1 << bit); 149 flag_info[*flag_count].flag_mask |= (1 << bit); 151 flag_info[*flag_count].flag |= (1 << bit); 205 int bit; local 209 bit = p - sctp_chunk_names[i].valid_flags; 210 bit = 7 - bit; 213 &(einfo->flag_count), i, bit, [all...] |
/external/kernel-headers/original/asm-mips/ |
bitops.h | 49 * set_bit - Atomically set a bit in memory 50 * @nr: the bit to set 61 unsigned short bit = nr & SZLONG_MASK; local 73 : "ir" (1UL << bit), "m" (*m)); 75 } else if (__builtin_constant_p(bit)) { 85 : "ir" (bit), "m" (*m), "r" (~0)); 99 : "ir" (1UL << bit), "m" (*m)); 106 mask = 1UL << bit; 114 * clear_bit - Clears a bit in memory 115 * @nr: Bit to clea 126 unsigned short bit = nr & SZLONG_MASK; local 203 unsigned short bit = nr & SZLONG_MASK; local 258 unsigned short bit = nr & SZLONG_MASK; local 328 unsigned short bit = nr & SZLONG_MASK; local 395 unsigned short bit = nr & SZLONG_MASK; local 485 unsigned short bit = nr & SZLONG_MASK; local [all...] |
/external/libsepol/src/ |
users.c | 24 unsigned bit; local 35 ebitmap_for_each_bit(roles, rnode, bit) { 36 if (ebitmap_node_get_bit(rnode, bit)) { 37 char *role = policydb->p_role_val_to_name[bit]; 121 unsigned bit; local 170 ebitmap_for_each_bit(&roldatum->dominates, rnode, bit) { 171 if (ebitmap_node_get_bit(rnode, bit)) { 173 (&(usrdatum->roles.roles), bit, 1))
|
/external/libvorbis/lib/ |
mdct.c | 350 int *bit = init->bitrev; local 356 DATA_TYPE *x0 = x+bit[0]; 357 DATA_TYPE *x1 = x+bit[1]; 374 x0 = x+bit[2]; 375 x1 = x+bit[3]; 391 bit += 4;
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_tile_cache.c | 62 int pos, bit; local 65 bit = bitvec[pos / 32] & (1 << (pos & 31)); 66 return bit;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_state_upload.c | 320 uint32_t bit; member in struct:dirty_bit_map 410 if (bit_map[i].bit == 0) 413 if (bit_map[i].bit & bits) 424 if (bit_map[i].bit == 0) 428 bit_map[i].bit, bit_map[i].count, bit_map[i].name);
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_pixel_bitmap.c | 89 static bool test_bit( const GLubyte *src, GLuint bit ) 91 return (src[bit/8] & (1<<(bit % 8))) ? 1 : 0; 94 static void set_bit( GLubyte *dest, GLuint bit ) 96 dest[bit/8] |= 1 << (bit % 8); 113 GLuint bit = 0; local 141 for (col = 0; col < w; col++, bit++) { 143 set_bit(dest, bit ^ 7); 149 bit = ALIGN(bit, row_align) [all...] |
/external/mesa3d/src/mesa/main/ |
texcompress_etc_tmp.h | 120 int modifier, bit, idx, blk; local 123 bit = y + x * 4; 124 idx = ((block->pixel_indices >> (15 + bit)) & 0x2) | 125 ((block->pixel_indices >> (bit)) & 0x1);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/ |
CAVLCReader.java | 136 int bit = read1Bit(); local 137 bt = bt.down(bit);
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
Settings.java | 69 int bit = 1 << id; local 70 set |= bit; 72 persistValue |= bit; 74 persistValue &= ~bit; 77 persisted |= bit; 79 persisted &= ~bit; 87 int bit = 1 << id; local 88 return (set & bit) != 0; 110 int bit = 1 << UPLOAD_BANDWIDTH; local 111 return (bit & set) != 0 ? values[UPLOAD_BANDWIDTH] : defaultValue 115 int bit = 1 << DOWNLOAD_BANDWIDTH; local 120 int bit = 1 << ROUND_TRIP_TIME; local 125 int bit = 1 << MAX_CONCURRENT_STREAMS; local 130 int bit = 1 << CURRENT_CWND; local 135 int bit = 1 << DOWNLOAD_RETRANS_RATE; local 140 int bit = 1 << INITIAL_WINDOW_SIZE; local 145 int bit = 1 << CLIENT_CERTIFICATE_VECTOR_SIZE; local 154 int bit = 1 << id; local 160 int bit = 1 << id; local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_blit_0.c | 48 Uint8 byte = 0, bit; local 53 bit = (byte&0x80)>>7; 55 *dst = map[bit]; 65 Uint8 byte = 0, bit; local 70 bit = (byte&0x80)>>7; 72 *dst = bit; 101 Uint8 byte = 0, bit; local 106 bit = (byte&0x80)>>7; 108 *dst = map[bit]; 135 Uint8 byte = 0, bit; local 173 Uint8 byte = 0, bit; local 207 Uint8 byte = 0, bit; local 224 Uint8 byte = 0, bit; local 259 Uint8 byte = 0, bit; local 292 Uint8 byte = 0, bit; local 326 Uint8 byte = 0, bit; local 362 Uint8 byte = 0, bit; local 409 Uint8 byte = 0, bit; local [all...] |