Searched refs:bm (Results 1 - 25 of 71) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dbitmap.c31 struct bitmap *bm; local
33 bm = SMB_MALLOC_P(struct bitmap);
35 if (!bm) return NULL;
37 bm->n = n;
38 bm->b = SMB_MALLOC_ARRAY(uint32, (n+31)/32);
39 if (!bm->b) {
40 SAFE_FREE(bm);
44 memset(bm->b, 0, sizeof(uint32)*((n+31)/32));
46 return bm;
53 void bitmap_free(struct bitmap *bm) argument
67 struct bitmap *bm; local
103 bitmap_set(struct bitmap *bm, unsigned i) argument
117 bitmap_clear(struct bitmap *bm, unsigned i) argument
131 bitmap_query(struct bitmap *bm, unsigned i) argument
144 bitmap_find(struct bitmap *bm, unsigned ofs) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dbitrate.c29 void vorbis_bitrate_init(vorbis_info *vi,bitrate_manager_state *bm){ argument
33 memset(bm,0,sizeof(*bm));
39 bm->short_per_long=ci->blocksizes[1]/ci->blocksizes[0];
40 bm->managed=1;
42 bm->avg_bitsper= rint(1.*bi->avg_rate*halfsamples/ratesamples);
43 bm->min_bitsper= rint(1.*bi->min_rate*halfsamples/ratesamples);
44 bm->max_bitsper= rint(1.*bi->max_rate*halfsamples/ratesamples);
46 bm->avgfloat=PACKETBLOBS/2;
52 bm
59 vorbis_bitrate_clear(bitrate_manager_state *bm) argument
67 bitrate_manager_state *bm=&b->bms; local
78 bitrate_manager_state *bm=&b->bms; local
232 bitrate_manager_state *bm=&b->bms; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dts_bm.c59 struct ts_bm *bm = ts_config_priv(conf); local
62 int shift = bm->patlen, bs;
73 for (i = 0; i < bm->patlen; i++)
74 if (text[shift-i] != bm->pattern[bm->patlen-1-i])
79 return consumed += (shift-(bm->patlen-1));
81 next: bs = bm->bad_shift[text[shift-i]];
84 shift = max_t(int, shift-i+bs, shift+bm->good_shift[i]);
110 static void compute_prefix_tbl(struct ts_bm *bm) argument
115 bm
137 struct ts_bm *bm; local
156 struct ts_bm *bm = ts_config_priv(conf); local
162 struct ts_bm *bm = ts_config_priv(conf); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/lib/
H A Dashldi3.c8 word_type bm; local
14 bm = 32 - b;
16 if (bm <= 0) {
18 w.s.high = (unsigned int) uu.s.low << -bm;
20 const unsigned int carries = (unsigned int) uu.s.low >> bm;
H A Dlshrdi3.c8 word_type bm; local
14 bm = 32 - b;
16 if (bm <= 0) {
18 w.s.low = (unsigned int) uu.s.high >> -bm;
20 const unsigned int carries = (unsigned int) uu.s.high << bm;
H A Dashrdi3.c8 word_type bm; local
14 bm = 32 - b;
16 if (bm <= 0) {
20 w.s.low = uu.s.high >> -bm;
22 const unsigned int carries = (unsigned int) uu.s.high << bm;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/math-emu/
H A Dudivmodti4.c14 _FP_I_TYPE b, bm; local
50 count_leading_zeros (bm, d0);
52 if (bm != 0)
57 d0 = d0 << bm;
58 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm));
59 n0 = n0 << bm;
65 /* Remainder in n0 >> bm. */
74 count_leading_zeros (bm, d0);
76 if (bm
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/lib/
H A Dudivdi3.c55 USItype b, bm; local
71 count_leading_zeros (bm, d0);
73 if (bm != 0)
78 d0 = d0 << bm;
79 n1 = (n1 << bm) | (n0 >> (SI_TYPE_SIZE - bm));
80 n0 = n0 << bm;
86 /* Remainder in n0 >> bm. */
95 count_leading_zeros (bm, d0);
97 if (bm
[all...]
H A Dashldi3.c38 word_type bm; local
46 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
47 if (bm <= 0)
50 w.s.high = (USItype)uu.s.low << -bm;
54 USItype carries = (USItype)uu.s.low >> bm;
H A Dashrdi3.c38 word_type bm; local
46 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
47 if (bm <= 0)
51 w.s.low = uu.s.high >> -bm;
55 USItype carries = (USItype)uu.s.high << bm;
H A Dlshrdi3.c38 word_type bm; local
46 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
47 if (bm <= 0)
50 w.s.low = (USItype)uu.s.high >> -bm;
54 USItype carries = (USItype)uu.s.high << bm;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bio/
H A Dbss_mem.c146 BUF_MEM *bm; local
150 bm=(BUF_MEM *)b->ptr;
152 ret=(outl > bm->length)?bm->length:outl;
154 memcpy(out,bm->data,ret);
155 bm->length-=ret;
156 /* memmove(&(bm->data[0]),&(bm->data[ret]), bm->length); */
157 if(b->flags & BIO_FLAGS_MEM_RDONLY) bm
177 BUF_MEM *bm; local
206 BUF_MEM *bm=(BUF_MEM *)b->ptr; local
283 BUF_MEM *bm=(BUF_MEM *)bp->ptr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bio/
H A Dbss_mem.c146 BUF_MEM *bm; local
150 bm=(BUF_MEM *)b->ptr;
152 ret=(outl > bm->length)?bm->length:outl;
154 memcpy(out,bm->data,ret);
155 bm->length-=ret;
156 /* memmove(&(bm->data[0]),&(bm->data[ret]), bm->length); */
157 if(b->flags & BIO_FLAGS_MEM_RDONLY) bm
177 BUF_MEM *bm; local
206 BUF_MEM *bm=(BUF_MEM *)b->ptr; local
283 BUF_MEM *bm=(BUF_MEM *)bp->ptr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/blackfin/lib/
H A Dashldi3.c39 word_type bm; local
47 bm = (sizeof(SItype) * BITS_PER_UNIT) - b;
48 if (bm <= 0) {
50 w.s.high = (USItype) uu.s.low << -bm;
52 USItype carries = (USItype) uu.s.low >> bm;
H A Dashrdi3.c39 word_type bm; local
47 bm = (sizeof(SItype) * BITS_PER_UNIT) - b;
48 if (bm <= 0) {
51 w.s.low = uu.s.high >> -bm;
53 USItype carries = (USItype) uu.s.high << bm;
H A Dlshrdi3.c53 word_type bm; local
61 bm = (sizeof(SItype) * BITS_PER_UNIT) - b;
62 if (bm <= 0) {
64 w.s.low = (USItype) uu.s.high >> -bm;
66 USItype carries = (USItype) uu.s.high << bm;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/affs/
H A Dbitmap.c39 struct affs_bm_info *bm; local
50 bm = AFFS_SB(sb)->s_bitmap;
52 for (i = AFFS_SB(sb)->s_bmap_count; i > 0; bm++, i--)
53 free += bm->bm_free;
64 struct affs_bm_info *bm; local
77 bm = &sbi->s_bitmap[bmap];
84 bh = affs_bread(sb, bm->bm_key);
106 bm->bm_free++;
117 affs_error(sb,"affs_free_block","Cannot read bitmap block %u", bm->bm_key);
142 struct affs_bm_info *bm; local
269 struct affs_bm_info *bm; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/dec/prom/
H A Dmemory.c59 memmap *bm; local
62 bm = (memmap *)CKSEG0ADDR(0x28000);
64 bitmap_size = rex_getbitmap(bm);
67 if (bm->bitmap[i] == 0xff)
68 mem_size += (8 * bm->pagesize);
70 mem_start += (8 * bm->pagesize);
73 mem_start += mem_size + (8 * bm->pagesize);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/v850/lib/
H A Dashldi3.c40 word_type bm; local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
49 if (bm <= 0)
52 w.s.high = (USItype)uu.s.low << -bm;
56 USItype carries = (USItype)uu.s.low >> bm;
H A Dashrdi3.c40 word_type bm; local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
49 if (bm <= 0)
53 w.s.low = uu.s.high >> -bm;
57 USItype carries = (USItype)uu.s.high << bm;
H A Dlshrdi3.c40 word_type bm; local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
49 if (bm <= 0)
52 w.s.low = (USItype)uu.s.high >> -bm;
56 USItype carries = (USItype)uu.s.high << bm;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/h8300/lib/
H A Dashrdi3.c40 word_type bm; local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
49 if (bm <= 0)
53 w.s.low = uu.s.high >> -bm;
57 USItype carries = (USItype)uu.s.high << bm;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/lib/
H A Dashldi3.c40 word_type bm; local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
49 if (bm <= 0)
52 w.s.high = (USItype)uu.s.low << -bm;
56 USItype carries = (USItype)uu.s.low >> bm;
H A Dashrdi3.c40 word_type bm; local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
49 if (bm <= 0)
53 w.s.low = uu.s.high >> -bm;
57 USItype carries = (USItype)uu.s.high << bm;
H A Dlshrdi3.c40 word_type bm; local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
49 if (bm <= 0)
52 w.s.low = (USItype)uu.s.high >> -bm;
56 USItype carries = (USItype)uu.s.high << bm;

Completed in 160 milliseconds

123