HomeSort by relevance Sort by last modified time
    Searched refs:bcount (Results 1 - 10 of 10) sorted by null

  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/
hisser2.m 1 function bcount=hisser2(bs,bsr,bandfirst,bandlast)
2 % function bcount=hisser(bspectrum,bandfirst,bandlast)
4 % bcount= array of bit counts
15 bcount=zeros(maxDelay,1);
18 bcount(i)= sum(bitget(bitxor(bs,bsr(i)),bandfirst:bandlast));
20 % bcount(i)= sum(bitget(bitand(bsr(i),bitxor(bs,bsr(i))),bandfirst:bandlast));
compsup.m 109 bcount=zeros(1+maxDelayb,nb);
202 bcount(:,i)=hisser2( ...
206 [fout(:,i), z500] = filter(Bp500,Ap500,bcount(:,i),z500,2);
207 fcount(:,i)=sum(bcount(:,max(1,i-histLenb+1):i),2); % using the history range
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
hisser2.m 1 function bcount=hisser2(bs,bsr,bandfirst,bandlast)
2 % function bcount=hisser(bspectrum,bandfirst,bandlast)
4 % bcount= array of bit counts
15 bcount=zeros(maxDelay,1);
18 bcount(i)= sum(bitget(bitxor(bs,bsr(i)),bandfirst:bandlast));
20 % bcount(i)= sum(bitget(bitand(bsr(i),bitxor(bs,bsr(i))),bandfirst:bandlast));
align.m 40 delayStruct.bcount(:,i) = hisser2(delayStruct.byspectrum(i), flipud(delayStruct.bxhist), delayStruct.bandfirst, delayStruct.bandlast);
41 [delayStruct.fout(:,i), delayStruct.z500] = filter(Bp500, Ap500, delayStruct.bcount(:,i), delayStruct.z500, 2);
43 %delayStruct.new(:,i) = sum(delayStruct.bcount(:,max(1,i-histLenb+1):i),2); % using the history range
49 [delayStruct.fout(:,i), delayStruct.z500] = filter(Bp500, Ap500, delayStruct.bcount(:,i), delayStruct.z500, 2);
91 %plot([1:length(delayStructNew.bcount(:,i))],delayStructNew.bcount(:,i),trueDelay*[1 1],[min(delayStructNew.bcount(:,i)),max(delayStructNew.bcount(:,i))],'r','LineWidth',2);
updateSettings.m 85 'bcount',zeros(1+delayStruct.maxDelayb,setupStructNew.nb),...
  /external/e2fsprogs/lib/ext2fs/
block.c 25 e2_blkcnt_t bcount,
29 e2_blkcnt_t bcount; member in struct:block_context
74 ctx->bcount += limit;
93 for (i = 0; i < limit; i++, ctx->bcount++, block_nr++) {
94 flags = (*ctx->func)(ctx->fs, block_nr, ctx->bcount,
105 for (i = 0; i < limit; i++, ctx->bcount++, block_nr++) {
108 flags = (*ctx->func)(ctx->fs, block_nr, ctx->bcount,
151 ctx->bcount += limit*limit;
184 ctx->bcount += limit;
230 ctx->bcount += limit*limit*limit
    [all...]
  /external/bison/lib/
lbitset.c 573 unsigned int bcount; local
606 bcount = BITSET_WORD_BITS - 1;
611 bcount = bitno % BITSET_WORD_BITS;
626 bcount = BITSET_WORD_BITS - 1)
629 srcp[windex - elt->index] << (BITSET_WORD_BITS - 1 - bcount);
631 for (; word; bcount--)
635 list[count++] = boffset + bcount;
638 *next = n_bits - (boffset + bcount);
ebitset.c 572 unsigned int bcount; local
603 bcount = bitno % BITSET_WORD_BITS;
620 word = srcp[woffset] << (BITSET_WORD_BITS - 1 - bcount);
622 for (; word; bcount--)
626 list[count++] = boffset + bcount;
629 *next = n_bits - (boffset + bcount);
636 bcount = BITSET_WORD_BITS - 1;
  /external/webrtc/src/modules/audio_processing/aecm/main/source/
aecm_core.c 131 // - bcount : "Vector" stored as a long, containing for each row the number of times
136 WebRtc_UWord32 * const bcount)
154 bcount[n] = tmp;
484 WebRtc_UWord32 bcount[MAX_DELAY]; local
552 WebRtcAecm_Hisser(byspectrum, aecm->bxHistory, bcount);
557 // bcount is constrained to [0, 32], meaning we can smooth with a factor up to 2^11.
558 dtmp1 = (WebRtc_UWord16)bcount[i];
    [all...]
  /external/mksh/src/
edit.c 4361 int bcount, i = 0, t; local
    [all...]

Completed in 1271 milliseconds