Searched refs:bbits (Results 1 - 10 of 10) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlzw.c48 int bbits; member in struct:LZWState
75 while (s->bbits < s->cursize) {
79 s->bbuf |= bytestream2_get_byte(&s->gb) << s->bbits;
80 s->bbits += 8;
86 while (s->bbits < s->cursize) {
88 s->bbits += 8;
90 c = s->bbuf >> (s->bbits - s->cursize);
92 s->bbits -= s->cursize;
136 s->bbits = 0;
H A Dapedec.c572 int bbits = 0; local
576 bbits++;
580 base_lo = range_decode_culfreq(ctx, 1 << bbits);
583 base = (base_hi << bbits) + base_lo;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlzw.c46 int bbits; member in struct:LZWState
73 while (s->bbits < s->cursize) {
77 s->bbuf |= (*s->pbuf++) << s->bbits;
78 s->bbits += 8;
84 while (s->bbits < s->cursize) {
86 s->bbits += 8;
88 c = s->bbuf >> (s->bbits - s->cursize);
90 s->bbits -= s->cursize;
145 s->bbits = 0;
H A Dapedec.c434 int bbits = 0; local
438 bbits++;
442 base_lo = range_decode_culfreq(ctx, 1 << bbits);
445 base = (base_hi << bbits) + base_lo;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/store/
H A Dstr_lib.c1581 const unsigned char *bbits,
1591 for (i = 0; i < (STORE_ATTR_TYPE_NUM + 8) / 8; i++, abits++, bbits++) {
1593 if (*abits < *bbits)
1595 if (*abits > *bbits)
1632 if (*bbits) {
1635 if (!(*bbits & 0x01))
1637 if (!(*bbits & 0x02))
1639 if (!(*bbits & 0x04))
1641 if (!(*bbits & 0x08))
1643 if (!(*bbits
1580 attr_info_compare_compute_range(const unsigned char *abits, const unsigned char *bbits, unsigned int *alowp, unsigned int *ahighp, unsigned int *blowp, unsigned int *bhighp) argument
1713 unsigned char *abits, *bbits; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/store/
H A Dstr_lib.c1673 unsigned char *abits, unsigned char *bbits,
1681 for (i = 0; i < (STORE_ATTR_TYPE_NUM + 8) / 8; i++, abits++, bbits++)
1685 if (*abits < *bbits) res = -1;
1686 if (*abits > *bbits) res = 1;
1710 if (*bbits)
1715 if (!(*bbits & 0x01)) blow++;
1716 if (!(*bbits & 0x02)) blow++;
1717 if (!(*bbits & 0x04)) blow++;
1718 if (!(*bbits & 0x08)) blow++;
1719 if (!(*bbits
1672 attr_info_compare_compute_range( unsigned char *abits, unsigned char *bbits, unsigned int *alowp, unsigned int *ahighp, unsigned int *blowp, unsigned int *bhighp) argument
1764 unsigned char *abits, *bbits; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/store/
H A Dstr_lib.c1581 const unsigned char *bbits,
1591 for (i = 0; i < (STORE_ATTR_TYPE_NUM + 8) / 8; i++, abits++, bbits++) {
1593 if (*abits < *bbits)
1595 if (*abits > *bbits)
1632 if (*bbits) {
1635 if (!(*bbits & 0x01))
1637 if (!(*bbits & 0x02))
1639 if (!(*bbits & 0x04))
1641 if (!(*bbits & 0x08))
1643 if (!(*bbits
1580 attr_info_compare_compute_range(const unsigned char *abits, const unsigned char *bbits, unsigned int *alowp, unsigned int *ahighp, unsigned int *blowp, unsigned int *bhighp) argument
1713 unsigned char *abits, *bbits; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dimagbmp.cpp459 int rbits = 0, gbits = 0, bbits = 0, abits = 0; local
574 bbits = bit-bshift+1;
591 bbits = 5;
607 bbits = 8;
824 temp = (unsigned char)((aWord & bmask) >> bshift << (8-bbits));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/
H A Dsuper.c557 static unsigned long long ocfs2_max_file_offset(unsigned int bbits, argument
590 bytes = 1 << bbits;
1998 int i, cbits, bbits; local
2024 bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits);
2025 sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits);
2027 osb->osb_dx_mask = (1 << (cbits - bbits)) - 1;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dbuffer.c1759 unsigned blocksize, bbits; local
1772 bbits = inode->i_blkbits;
1773 block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);

Completed in 495 milliseconds