Searched refs:written (Results 1 - 25 of 46) sorted by relevance

12

/vbox/src/VBox/Devices/Audio/testcase/
H A DtstAudioMixBuffer.cpp71 uint32_t read = 0, written = 0, written_abs = 0; local
77 RTTESTI_CHECK_RC_OK(audioMixBufWriteAt(&mb, 0, &samples8, sizeof(samples8), &written));
78 RTTESTI_CHECK(written == 0 /* Samples */);
80 RTTESTI_CHECK_RC_OK(audioMixBufWriteAt(&mb, 0, &samples16, sizeof(samples16), &written));
81 RTTESTI_CHECK(written == 1 /* Samples */);
83 RTTESTI_CHECK_RC_OK(audioMixBufWriteAt(&mb, 2, &samples32, sizeof(samples32), &written));
84 RTTESTI_CHECK(written == 2 /* Samples */);
89 &written), VERR_BUFFER_OVERFLOW);
97 RTTESTI_CHECK_RC_OK(audioMixBufWriteCirc(&mb, &samples16, sizeof(samples16), &written));
98 RTTESTI_CHECK(written
191 uint32_t read , written, mixed, temp; local
[all...]
/vbox/src/libs/libpng-1.2.8/
H A Dpngwio.c88 png_size_t written, remaining, err; local
93 written = MIN(NEAR_BUF_SIZE, remaining);
94 png_memcpy(buf, data, written); /* copy far buffer to near buffer */
96 if ( !WriteFile(io_ptr, buf, written, &err, NULL) )
99 err = fwrite(buf, 1, written, io_ptr);
101 if (err != written)
105 data += written;
106 remaining -= written;
151 data to be written, and a 32-bit unsigned int that is
152 the number of bytes to be written
[all...]
H A Dpngtest.c418 png_size_t written, remaining, err; local
423 written = MIN(NEAR_BUF_SIZE, remaining);
424 png_memcpy(buf, data, written); /* copy far buffer to near buffer */
425 WRITEFILE(io_ptr, buf, written, err);
426 if (err != written)
430 data += written;
431 remaining -= written;
1048 haven't written anything yet */
1175 haven't written the end_info yet */
1254 " Was %s written wit
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dop_excl.c78 PRInt32 written; local
121 written = PR_Write( fd, outBuf, OUT_SIZE );
122 if ( OUT_SIZE != written ) {
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dstring.c363 unsigned int written = 0; local
371 if (written++ >= len)
379 if (written++ >= len)
440 count = format_string( str, len - written, fmtbufa, wstr ? wstr : none );
443 written += count;
457 count = format_string( str, len - written, fmtbufa, wstr );
460 written += count;
490 if (written++ >= len)
500 if (written >= len)
503 return (int)written;
[all...]
/vbox/src/libs/libxml2-2.6.31/macos/src/
H A Dlibxml2_GUSIConfig.cp62 #error GUSISetupConfig() needs to be written in C++
/vbox/src/libs/libxml2-2.6.31/
H A Dencoding.c246 * Returns the number of bytes written if success, or -1 otherwise
295 * Returns the number of bytes written, or -1 if lack of space.
334 * Returns the number of bytes written if success, -2 if the transcoding fails,
427 * Returns the number of bytes written, or -1 if lack of space, or -2
514 * Returns the number of bytes written, or -1 if lack of space, or -2
623 * Returns the number of bytes written, or -1 if lack of space, or -2
665 * Returns the number of bytes written, or -1 if lack of space, or -2
756 * Returns the number of byte written, or -1 by lack of space, or -2
1748 * Returns the number of byte written if success, or
1757 int written; local
1845 int written; local
1945 int written; local
2181 int toconv = in->end - in->cur, written = 32000; local
[all...]
H A DxmlIO.c762 * Returns the number of bytes written
782 * Returns the number of bytes written
966 * Returns the number of bytes written or < 0 in case of failure
987 * Returns the number of bytes written
1061 * Returns the number of bytes written
1213 * Returns the number of bytes written
1233 * Returns the number of bytes written
1760 * Returns the number of bytes written
1778 * Returns number of bytes written.
2039 * Returns the number of bytes written
2337 int written; local
3131 int written = 0; /* number of char written to I/O so far */ local
3295 int written = 0; /* number of char written to I/O so far */ local
[all...]
H A Dlibxml2.spec52 written in the Python programming language to use the interface
/vbox/src/VBox/Devices/Audio/
H A Dalsaaudio.c728 snd_pcm_sframes_t written; local
736 written = snd_pcm_writei (alsa->handle, dst, len);
738 if (written <= 0) {
739 switch (written) {
748 alsa_logerr (written, "Failed to write %d frames\n",
762 alsa_logerr (written, "Failed to write %d frames\n", len);
777 alsa_logerr (written, "Failed to write %d frames to %p\n",
783 rpos = (rpos + written) % hw->samples;
784 samples -= written;
785 len -= written;
[all...]
H A Dossaudio.c436 int written; local
438 written = write (oss->fd, dst, convert_samples << hw->info.shift);
440 if (written == -1) {
450 if (written != convert_samples << hw->info.shift) {
451 int wsamples = written >> hw->info.shift;
453 if (wbytes != written) {
456 wbytes, written, hw->info.align + 1);
H A Daudio.c1315 int written; local
1318 written = audio_pcm_sw_write (sw, NULL, bytes);
1319 if (written - bytes) {
1322 bytes, written);
H A DDevSB16.cpp1736 int till, copy, written, free; local
1803 written = sb16WriteAudio(pThis, nchan, dma_pos, dma_len, copy);
1804 dma_pos = (dma_pos + written) % dma_len;
1805 pThis->left_till_irq -= written;
1823 LogFlowFunc(("pos %5d free %5d size %5d till % 5d copy %5d written %5d size %5d\n",
1824 dma_pos, free, dma_len, pThis->left_till_irq, copy, written,
/vbox/src/VBox/Main/src-server/win/
H A Dsvchlp.cpp164 DWORD written = 0;
165 BOOL ok = WriteFile (mWriteEnd, aVal, (ULONG)aLen, &written, NULL);
166 AssertReturn(!ok || written == aLen, VERR_GENERAL_FAILURE);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw32shm.c306 PRIntn written; local
308 written = PR_snprintf( buf, bufSize, "%d:%ld:%ld",
316 return((written == -1)? PR_FAILURE : PR_SUCCESS);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Duxshm.c612 PRIntn written; local
615 written = PR_snprintf( buf, bufSize, "%ld:%d",
618 return((written == -1)? PR_FAILURE : PR_SUCCESS);
/vbox/include/VBox/HostServices/
H A DGuestControlSvc.h199 /** Input was written (partially, see cbProcessed). */
742 * Reports back the status of data written to a process.
755 /** Data written. */
756 HGCMFunctionParameter written; member in struct:guestControl::HGCMMsgProcStatusInput
957 /** How much data (in bytes) have been successfully written. */
958 HGCMFunctionParameter written; member in struct:guestControl::HGCMReplyFileNotify::__anon14::__anon17
1169 /** How much data (in bytes) have been successfully written. */
/vbox/src/libs/zlib-1.2.6/contrib/delphi/
H A DZLib.pas58 { TCompressionStream compresses data on the fly as data is written to it, and
65 Output data is cached internally, written to the output stream only when
70 data that have been written to the stream so far.
78 written to the output stream. This is useful for updating a progress
/vbox/src/VBox/Devices/PC/ipxe/contrib/vm/
H A Dserial-console24 slave device is written to the Bochs configuration file
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A DxmlIO.h98 * Returns the number of bytes written or -1 in case of error
150 int written; /* total number of byte written */ member in struct:_xmlOutputBuffer
/vbox/src/libs/zlib-1.2.6/contrib/masmx64/
H A Dgvmat64.asm10 ; File written by Gilles Vollant, by converting to assembly the longest_match
14 ; from Brian Raiter, written 1998
115 ; in the deflate_state structure since the asm code was first written
133 ; in zlib in the deflate_state structure since the asm code was first written
545 db 0dh,0ah,"asm686 with masm, optimised assembly code from Brian Raiter, written 1998, converted to amd 64 by Gilles Vollant 2005",0dh,0ah,0
/vbox/src/libs/zlib-1.2.6/contrib/masmx86/
H A Dmatch686.asm3 ; File written by Gilles Vollant, by converting match686.S from Brian Raiter
17 ; this longest_match was written by Brian raiter (1998), optimized for Pentium Pro
75 ; in zlib in the deflate_state structure since the asm code was first written
458 db 0dh,0ah,"asm686 with masm, optimised assembly code from Brian Raiter, written 1998",0dh,0ah
/vbox/src/VBox/VMM/VMMRC/
H A DMMRamRCA.asm106 ; @returns eax=0 if data written, other code - invalid access, #PF was generated.
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dsockets.c20 * derived from this software without specific prior written permission.
821 size_t written; local
843 written = 0;
844 err = netconn_write_partly(sock->conn, data, size, write_flags, &written);
846 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_send(%d) err=%d written=%"SZT_F"\n", s, err, written));
848 return (err == ERR_OK ? (int)written : -1);
/vbox/src/VBox/ValidationKit/bootsectors/
H A Dbootsector2-cpu-a20-1.asm288 ; is reflected at address 0100000h (1 MB). The word written is

Completed in 270 milliseconds

12