Home
last modified time | relevance | path

Searched refs:sample1 (Results 1 – 3 of 3) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-extended/bzip2/bzip2/
H A DMakefile.am31 ./bzip2 -1 < sample1.ref > sample1.rb2
34 ./bzip2 -d < sample1.bz2 > sample1.tst
37 @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)/
/openbmc/qemu/hw/audio/
H A Dgusemu_mixer.c84 int sample1, sample2, Volume; in gus_mixvoices() local
90 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()
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/
H A Dparsing.py482 for sample1, sample2 in zip(disk_stat_samples[:-1], disk_stat_samples[1:]):
483 interval = sample1.time - sample2.time
486 sums = [ a - b for a, b in zip(sample1.diskdata, sample2.diskdata) ]