Searched refs:stnr (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/arch/x86/math-emu/ |
H A D | fpu_tags.c | 29 int FPU_gettagi(int stnr) in FPU_gettagi() argument 31 return (fpu_tag_word >> (((top + stnr) & 7) * 2)) & 3; in FPU_gettagi() 47 void FPU_settagi(int stnr, int tag) in FPU_settagi() argument 49 int regnr = stnr + top; in FPU_settagi() 81 int FPU_empty_i(int stnr) in FPU_empty_i() argument 83 int regnr = (top + stnr) & 7; in FPU_empty_i() 95 void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr) in FPU_copy_to_regi() argument 97 reg_copy(r, &st(stnr)); in FPU_copy_to_regi() 98 FPU_settagi(stnr, tag); in FPU_copy_to_regi()
|
H A D | fpu_proto.h | 69 extern int FPU_gettagi(int stnr); 72 extern void FPU_settagi(int stnr, int tag); 77 extern int FPU_empty_i(int stnr); 79 extern void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr); 127 extern int FPU_load_extended(long double __user *s, int stnr);
|
H A D | reg_ld_str.c | 82 int FPU_load_extended(long double __user *s, int stnr) in FPU_load_extended() argument 84 FPU_REG *sti_ptr = &st(stnr); in FPU_load_extended()
|
/openbmc/qemu/hw/audio/ |
H A D | intel-hda.h | 21 uint32_t stnr, bool output, 37 void (*stream)(HDACodecDevice *dev, uint32_t stnr, bool running, bool output); 51 bool hda_codec_xfer(HDACodecDevice *dev, uint32_t stnr, bool output,
|
H A D | intel-hda.c | 108 bool hda_codec_xfer(HDACodecDevice *dev, uint32_t stnr, bool output, in hda_codec_xfer() argument 112 return bus->xfer(dev, stnr, output, buf, len); in hda_codec_xfer() 396 static bool intel_hda_xfer(HDACodecDevice *dev, uint32_t stnr, bool output, in intel_hda_xfer() argument 409 if (stnr == ((st[s].ctl >> 20) & 0x0f)) { in intel_hda_xfer() 588 uint32_t stnr = (st->ctl >> 20) & 0x0f; in intel_hda_set_st_ctl() local 593 reg->stream, stnr, st->cbl); in intel_hda_set_st_ctl() 595 intel_hda_notify_codecs(d, stnr, true, output); in intel_hda_set_st_ctl() 598 dprint(d, 1, "st #%d: stop %d\n", reg->stream, stnr); in intel_hda_set_st_ctl() 599 intel_hda_notify_codecs(d, stnr, false, output); in intel_hda_set_st_ctl()
|
H A D | hda-codec.c | 668 static void hda_audio_stream(HDACodecDevice *hda, uint32_t stnr, bool running, bool output) in hda_audio_stream() argument 673 a->running_compat[stnr] = running; in hda_audio_stream() 674 a->running_real[output * 16 + stnr] = running; in hda_audio_stream() 682 if (a->st[s].stream != stnr) { in hda_audio_stream()
|