Home | History | Annotate | Download | only in Tremolo

Lines Matching full:bitcount

391   long i,bitcount=0;
414 bitcount+=tbit;
416 if(bitcount!=oggpack_bits(&r))
418 if((bitcount+7)/8!=oggpack_bytes(&r))
422 if(oggpack_bytes(&r)!=(bitcount+7)/8){
423 fprintf(stderr, "%d vs %d\n", oggpack_bytes(&r), (bitcount+7)/8);
441 report("\nERROR: read to but not past exact end reported bad bitcount.\n");
447 report("\nERROR: read past exact end reported bad bitcount.\n");
454 report("\nERROR: read past exact end reported bad bitcount.\n");
475 report("\nERROR: read to but not past exact end reported bad bitcount.\n");
486 report("\nERROR: read past exact end reported bad bitcount.\n");
498 report("\nERROR: read past exact end reported bad bitcount.\n");
691 long j,count=0,count2=0,bitcount=0;
713 bitcount++;
721 count2=(bitcount+7)>>3;
751 if(ogg_buffer_length(or)!=(bitcount+7)/8){
760 int bitoffset,bitcount=0;
764 bitcount+=len[j];
765 or=ogg_buffer_pretruncate(or,bitcount/8);
766 bitoffset=bitcount%=8;
768 bitcount+=len[j];
769 ogg_buffer_posttruncate(or,((bitcount+7)/8));
771 if((count=ogg_buffer_length(or))!=(bitcount+7)/8){
788 bitcount=bitoffset;
805 bitcount+=len[j];
806 if(oggpack_bits(&o)!=bitcount){
808 bitcount,oggpack_bits(&o));
811 if(oggpack_bytes(&o)!=(bitcount+7)/8){
813 (bitcount+7)/8,oggpack_bytes(&o));
822 bitcount=bitoffset;
841 bitcount+=len[j];
842 if(oggpack_bits(&o)!=bitcount){
844 bitcount,oggpack_bits(&o));
847 if(oggpack_bytes(&o)!=(bitcount+7)/8){
849 (bitcount+7)/8,oggpack_bytes(&o));