Home
last modified time | relevance | path

Searched refs:nextbuf (Results 1 – 4 of 4) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/src/audio/xaudio2/
DSDL_xaudio2.c125 Uint8 *nextbuf; member
185 return this->hidden->nextbuf; in XAUDIO2_GetDeviceBuf()
193 Uint8 *nextbuf = this->hidden->nextbuf; in XAUDIO2_PlayDevice() local
205 buffer.pAudioData = nextbuf; in XAUDIO2_PlayDevice()
208 if (nextbuf == mixbuf) { in XAUDIO2_PlayDevice()
209 nextbuf += mixlen; in XAUDIO2_PlayDevice()
211 nextbuf = mixbuf; in XAUDIO2_PlayDevice()
213 this->hidden->nextbuf = nextbuf; in XAUDIO2_PlayDevice()
365 this->hidden->nextbuf = this->hidden->mixbuf; in XAUDIO2_OpenDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/audio/winmm/
DSDL_winmm.c141 const int nextbuf = this->hidden->next_buffer; in WINMM_CaptureFromDevice() local
150 SDL_memcpy(buffer, this->hidden->wavebuf[nextbuf].lpData, this->spec.size); in WINMM_CaptureFromDevice()
154 &this->hidden->wavebuf[nextbuf], in WINMM_CaptureFromDevice()
155 sizeof (this->hidden->wavebuf[nextbuf])); in WINMM_CaptureFromDevice()
161 this->hidden->next_buffer = (nextbuf + 1) % NUM_BUFFERS; in WINMM_CaptureFromDevice()
170 const int nextbuf = this->hidden->next_buffer; in WINMM_FlushCapture() local
173 &this->hidden->wavebuf[nextbuf], in WINMM_FlushCapture()
174 sizeof (this->hidden->wavebuf[nextbuf])); in WINMM_FlushCapture()
175 this->hidden->next_buffer = (nextbuf + 1) % NUM_BUFFERS; in WINMM_FlushCapture()
/third_party/ntfs-3g/ntfsprogs/
Dntfsrecover.c2454 const struct BUFFER *nextbuf) in overlapshow() argument
2470 if (nextbuf && (blk >= BASEBLKS)) { in overlapshow()
2471 nextdata = nextbuf->block.data; in overlapshow()
2613 const struct BUFFER *buf, const struct BUFFER *nextbuf) in forward_rcrd() argument
2688 k = nextbuf->headsz; in forward_rcrd()
2693 buf, nextbuf); in forward_rcrd()
3317 const struct BUFFER *nextbuf) in dorcrd() argument
3330 return (forward_rcrd(ctx, blk, pos, buf, nextbuf)); in dorcrd()
3434 const struct BUFFER *nextbuf) in backward_rcrd() argument
3544 if (nextbuf && (blk >= BASEBLKS)) { in backward_rcrd()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/rtmp2/rtmp/
Drtmpchunkstream.c673 GstBuffer *outbuf, *nextbuf; in gst_rtmp_chunk_stream_serialize_all() local
676 nextbuf = gst_rtmp_chunk_stream_serialize_next (cstream, chunk_size); in gst_rtmp_chunk_stream_serialize_all()
678 while (nextbuf) { in gst_rtmp_chunk_stream_serialize_all()
679 outbuf = gst_buffer_append (outbuf, nextbuf); in gst_rtmp_chunk_stream_serialize_all()
680 nextbuf = gst_rtmp_chunk_stream_serialize_next (cstream, chunk_size); in gst_rtmp_chunk_stream_serialize_all()