Searched refs:sample1 (Results 1 – 4 of 4) sorted by relevance
31 ./bzip2 -1 < sample1.ref > sample1.rb234 ./bzip2 -d < sample1.bz2 > sample1.tst37 @if cmp sample1.bz2 sample1.rb2; then echo "PASS: sample1 compress";\43 @if cmp sample1.tst sample1.ref; then echo "PASS: sample1 decompress";\54 cp $(srcdir)/sample1.ref $(DESTDIR)/57 cp $(srcdir)/sample1.bz2 $(DESTDIR)/
84 int sample1, sample2, Volume; in gus_mixvoices() local90 sample1 = (*adr & 0xff) + (*(adr + 1) * 256); in gus_mixvoices()98 sample1 = (*adr) * 256; in gus_mixvoices()103 sample1 = (((sample1 * Volume) >> 16) * (512 - (CurrPos % 512))) / 512; in gus_mixvoices()105 sample1 += sample2; in gus_mixvoices()174 … *(bufferpos + 2 * sample) += (int16_t) ((sample1 * PanningPos) >> 4); /* right */ in gus_mixvoices()175 … *(bufferpos + 2 * sample + 1) += (int16_t) ((sample1 * (15 - PanningPos)) >> 4); /* left */ in gus_mixvoices()
79 int linearSample = (state.sample1 * coefficient[0] +99 state.sample2 = state.sample1;100 state.sample1 = linearSample;
482 for sample1, sample2 in zip(disk_stat_samples[:-1], disk_stat_samples[1:]):483 interval = sample1.time - sample2.time486 sums = [ a - b for a, b in zip(sample1.diskdata, sample2.diskdata) ]