Home | History | Annotate | Download | only in Tremolo

Lines Matching refs:bitcount

389   long i,bitcount=0;
412 bitcount+=tbit;
414 if(bitcount!=oggpack_bits(&r))
416 if((bitcount+7)/8!=oggpack_bytes(&r))
420 if(oggpack_bytes(&r)!=(bitcount+7)/8){
421 fprintf(stderr, "%d vs %d\n", oggpack_bytes(&r), (bitcount+7)/8);
439 report("\nERROR: read to but not past exact end reported bad bitcount.\n");
445 report("\nERROR: read past exact end reported bad bitcount.\n");
452 report("\nERROR: read past exact end reported bad bitcount.\n");
473 report("\nERROR: read to but not past exact end reported bad bitcount.\n");
484 report("\nERROR: read past exact end reported bad bitcount.\n");
496 report("\nERROR: read past exact end reported bad bitcount.\n");
689 long j,count=0,count2=0,bitcount=0;
711 bitcount++;
719 count2=(bitcount+7)>>3;
749 if(ogg_buffer_length(or)!=(bitcount+7)/8){
758 int bitoffset,bitcount=0;
762 bitcount+=len[j];
763 or=ogg_buffer_pretruncate(or,bitcount/8);
764 bitoffset=bitcount%=8;
766 bitcount+=len[j];
767 ogg_buffer_posttruncate(or,((bitcount+7)/8));
769 if((count=ogg_buffer_length(or))!=(bitcount+7)/8){
786 bitcount=bitoffset;
803 bitcount+=len[j];
804 if(oggpack_bits(&o)!=bitcount){
806 bitcount,oggpack_bits(&o));
809 if(oggpack_bytes(&o)!=(bitcount+7)/8){
811 (bitcount+7)/8,oggpack_bytes(&o));
820 bitcount=bitoffset;
839 bitcount+=len[j];
840 if(oggpack_bits(&o)!=bitcount){
842 bitcount,oggpack_bits(&o));
845 if(oggpack_bytes(&o)!=(bitcount+7)/8){
847 (bitcount+7)/8,oggpack_bytes(&o));