Searched defs:bit1 (Results 1 - 7 of 7) sorted by relevance

/external/libcups/filter/
H A Drastertohp.c566 bit1, /* Current high bit data */ local
611 bit1 = (unsigned char)((bit & 128) | ((bit & 32) << 1) | ((bit & 8) << 2) | ((bit & 2) << 3));
618 bit1 |= (unsigned char)(((bit & 2) >> 1) | ((bit & 8) >> 2) | ((bit & 32) >> 3) | ((bit & 128) >> 4));
622 bit_ptr[bytes] = bit1;
/external/libvpx/libvpx/vp8/decoder/
H A Ddetokenize.c112 const int bit1 = VP8GetBit(br, p[8]); local
113 const int bit0 = VP8GetBit(br, p[9 + bit1]);
114 const int cat = 2 * bit1 + bit0;
/external/blktrace/
H A Dblkiomon.c131 struct blk_io_trace *bit1 = &t1->bit; local
138 fprintf(debug.fp, "magic %16d %16d\n", bit1->magic, bit2->magic);
140 bit1->sequence, bit2->sequence);
142 (unsigned long)bit1->time, (unsigned long)bit2->time);
144 (unsigned long)bit1->sector, (unsigned long)bit2->sector);
145 fprintf(debug.fp, "bytes %16d %16d\n", bit1->bytes, bit2->bytes);
146 fprintf(debug.fp, "action %16x %16x\n", bit1->action, bit2->action);
147 fprintf(debug.fp, "pid %16d %16d\n", bit1->pid, bit2->pid);
148 fprintf(debug.fp, "device %16d %16d\n", bit1->device, bit2->device);
149 fprintf(debug.fp, "cpu %16d %16d\n", bit1
[all...]
/external/webp/src/dec/
H A Dvp8_dec.c422 const int bit1 = VP8GetBit(br, p[8]); local
423 const int bit0 = VP8GetBit(br, p[9 + bit1]);
424 const int cat = 2 * bit1 + bit0;
/external/libconstrainedcrypto/
H A Dp256_ec.c1068 char bit1 = p256_get_bit(scalar, 95 - i + j); local
1071 limb index = bit0 | (bit1 << 1) | (bit2 << 2) | (bit3 << 3);
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodemv.c329 const int bit1 = vpx_read(r, fc->single_ref_prob[ctx1][1]); local
330 if (counts) ++counts->single_ref[ctx1][1][bit1];
331 ref_frame[0] = bit1 ? ALTREF_FRAME : GOLDEN_FRAME;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_bitstream.c226 const int bit1 = mi->ref_frame[0] != GOLDEN_FRAME; local
227 vpx_write(w, bit1, vp9_get_pred_prob_single_ref_p2(cm, xd));

Completed in 1807 milliseconds