Searched defs:nfr (Results 1 - 3 of 3) sorted by relevance
/illumos-gate/usr/src/cmd/mdb/sparc/kmdb/ |
H A D | kmdb_fault_isadep.c | 84 struct frame *nfr; local 92 nfr = (struct frame *) 95 if ((uintptr_t)nfr == STACK_BIAS) 98 if ((uintptr_t)nfr < (uintptr_t)fr) { 100 " fp (%p) < sp (%p)\n", nfr, fr); 104 fr = nfr;
|
/illumos-gate/usr/src/uts/common/io/audio/impl/ |
H A D | audio_output.c | 40 auimpl_export_##NAME(audio_engine_t *eng, uint_t nfr, uint_t froff) \ 58 i = nfr; \ 166 auimpl_output_mix(audio_stream_t *sp, int offset, int nfr) argument 196 for (int i = nfr; i; i--) { 210 sp->s_cnv_cnt -= nfr; 211 sp->s_cnv_ptr += (nch * nfr);
|
H A D | audio_engine.c | 157 int nfr, resid, cnt; local 161 nfr = min(e->e_head - e->e_tail, e->e_nframes); 162 buf = kmem_alloc(nfr * e->e_framesz, KM_SLEEP); 168 for (resid = nfr; resid; resid -= cnt) { 185 e->e_tidx = (e->e_nframes - nfr) % e->e_nframes; 188 e->e_hidx = nfr % e->e_nframes; 193 bcopy(buf, e->e_data + (e->e_tidx * e->e_framesz), nfr * e->e_framesz); 194 kmem_free(buf, nfr * e->e_framesz);
|
Completed in 67 milliseconds