Searched refs:bufferSize (Results 1 - 25 of 279) sorted by last modified time

1234567891011>>

/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h310 bufferSize(0)
365 bufferSize = data.payloadSize;
371 if (bufferSize < size)
377 bufferSize = size;
391 WebRtc_UWord32 bufferSize; member in class:webrtc::EncodedVideoData
/external/tinyxml2/
H A Dtinyxml2.h393 static void ToStr( int v, char* buffer, int bufferSize );
394 static void ToStr( unsigned v, char* buffer, int bufferSize );
395 static void ToStr( bool v, char* buffer, int bufferSize );
396 static void ToStr( float v, char* buffer, int bufferSize );
397 static void ToStr( double v, char* buffer, int bufferSize );
/external/svox/pico/compat/include/
H A DTtsEngine.h233 // @param bufferSize the number of bytes that can be written in buffer
236 size_t bufferSize, void *userdata);
/external/svox/pico/compat/jni/
H A Dtts.h302 // @param bufferSize the number of bytes that can be written in buffer
308 size_t bufferSize,
/external/svox/pico/lib/
H A Dpicoapi.c622 * @param bufferSize : out buffer size
633 const pico_Int16 bufferSize,
644 } else if (bufferSize < 0) {
650 status = picoctrl_engFetchOutputItemBytes((picoctrl_Engine) engine, (picoos_char *)buffer, bufferSize, bytesReceived);
630 pico_getData( pico_Engine engine, void *buffer, const pico_Int16 bufferSize, pico_Int16 *bytesReceived, pico_Int16 *outDataType ) argument
H A Dpicoapi.h415 const pico_Int16 bufferSize,
H A Dpicoctrl.c742 * @param bufferSize : max size of the destinatioon buffer
752 picoos_int16 bufferSize,
766 bufferSize, &ui);
749 picoctrl_engFetchOutputItemBytes( picoctrl_Engine this, picoos_char *buffer, picoos_int16 bufferSize, picoos_int16 *bytesReceived) argument
H A Dpicoctrl.h80 picoos_int16 bufferSize,
/external/svox/pico/tts/
H A Dcom_svox_picottsengine.cpp1453 * @bufferSize - size of buffer
1457 tts_result TtsEngine::synthesizeText( const char * text, int8_t * buffer, size_t bufferSize, void * userdata ) argument
1583 if ((bufused + bytes_recv) <= bufferSize) {
/external/srec/portable/src/
H A DPFile.c198 size_t i, bufferSize, count, totalRead = 0; local
225 bufferSize = count - i;
228 if (bufferSize < MAX_INT_DIGITS)
230 count = pfread(number + bufferSize, sizeof(LCHAR), MAX_INT_DIGITS - bufferSize, self);
231 bufferSize += count;
233 if (count < MAX_INT_DIGITS - bufferSize && pferror(self))
242 for (i = 0; i < bufferSize && !LISSPACE(number[i]); ++i);
243 if (i < bufferSize)
246 if (PFileSeek(self, - (int)(bufferSize
272 size_t i, bufferSize, count, totalRead = 0; local
[all...]
/external/srec/srec/Recognizer/include/
H A DSR_Recognizer.h362 * @param bufferSize [in/out] Size of buffer in samples. In case of a buffer overflow,
366 * @return ESR_INVALID_ARGUMENT if self, buffer, or bufferSize are null; ESR_INVALID_STATE if the recognizer isn't
370 ESR_ReturnCode (*putAudio)(struct SR_Recognizer_t* self, asr_int16_t* buffer, size_t* bufferSize,
785 * @param bufferSize [in/out] Size of buffer in samples. In case of a buffer overflow,
789 * @return ESR_INVALID_ARGUMENT if self, buffer, or bufferSize are null; ESR_INVALID_STATE if the recognizer isn't
794 size_t* bufferSize, ESR_BOOL isLast);
H A DSR_RecognizerImpl.h469 size_t* bufferSize,
/external/srec/srec/Recognizer/src/
H A DRecognizer.c243 ESR_ReturnCode SR_RecognizerPutAudio(SR_Recognizer* self, asr_int16_t* buffer, size_t* bufferSize, argument
260 return self->putAudio(self, buffer, bufferSize, isLast);
H A DRecognizerImpl.c1716 ESR_ReturnCode SR_RecognizerPutAudioImpl(SR_Recognizer* self, asr_int16_t* buffer, size_t* bufferSize, argument
1724 if (isLast == ESR_FALSE && (buffer == NULL || bufferSize == NULL))
1754 rcBufWrite = CircularBufferWrite(impl->buffer, buffer, *bufferSize * SAMPLE_SIZE);
1774 if (nbWritten < *bufferSize * SAMPLE_SIZE)
1780 *bufferSize = nbWritten / SAMPLE_SIZE;
3006 size_t bufferSize; local
3007 CHKLOG(rc, WaveformBuffer_GetSize(impl->waveformBuffer, &bufferSize));
3008 PLogMessage("Forcing EOS due to wfbuf overflow (fr=%d,sz=%d,of=%d)", impl->frames, bufferSize, impl->waveformBuffer->overflow_count);
3811 size_t bufferSize; local
3827 CHKLOG(rc, WaveformBuffer_GetSize(waveformBuffer, &bufferSize));
3882 size_t bos_frame, eos_frame, bufferSize, read_start_offset; local
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_wavefile.c811 metaLen = pWaveData->metadata.bufferSize - 1;
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_main.c55 static EAS_RESULT PlayFile (EAS_DATA_HANDLE easData, const char* filename, const char* outputFile, const S_EAS_LIB_CONFIG *pLibConfig, void *buffer, EAS_I32 bufferSize);
73 static EAS_RESULT PlayFile (EAS_DATA_HANDLE easData, const char* filename, const char* outputFile, const S_EAS_LIB_CONFIG *pLibConfig, void *buffer, EAS_I32 bufferSize) argument
161 if (WaveFileWrite(wFile, buffer, bufferSize) != bufferSize)
222 EAS_I32 bufferSize; local
280 bufferSize = pLibConfig->mixBufferSize * pLibConfig->numChannels * (EAS_I32)sizeof(EAS_PCM) * NUM_BUFFERS;
283 buffer = malloc((EAS_U32)bufferSize);
306 if ((playResult = PlayFile(easData, defaultTestFile, NULL, pLibConfig, buffer, bufferSize)) != EAS_SUCCESS)
321 if ((playResult = PlayFile(easData, argv[i], outputFile, pLibConfig, buffer, bufferSize)) != EAS_SUCCESS)
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_imelody.c1402 if (len >pData->metadata.bufferSize)
1403 len = pData->metadata.bufferSize;
H A Deas_ota.c929 EAS_HWMemSet(pData->metadata.buffer, 0, pData->metadata.bufferSize);
941 if (i < (pData->metadata.bufferSize - 1))
H A Deas_parser.h45 EAS_I32 bufferSize; member in struct:s_metadata_cb_tag
H A Deas_public.c1415 metadata.bufferSize = metaDataBufSize;
H A Deas_rtttl.c1004 EAS_HWMemSet(pData->metadata.buffer, 0, pData->metadata.bufferSize);
1018 if (i < (pData->metadata.bufferSize- 1))
H A Deas_smf.c882 readLen = pSMFData->metadata.bufferSize - 1;
H A Deas_wavefile.c811 metaLen = pWaveData->metadata.bufferSize - 1;
/external/sonivox/arm-wt-22k/host_src/
H A Deas_main.c55 static EAS_RESULT PlayFile (EAS_DATA_HANDLE easData, const char* filename, const char* outputFile, const S_EAS_LIB_CONFIG *pLibConfig, void *buffer, EAS_I32 bufferSize);
73 static EAS_RESULT PlayFile (EAS_DATA_HANDLE easData, const char* filename, const char* outputFile, const S_EAS_LIB_CONFIG *pLibConfig, void *buffer, EAS_I32 bufferSize) argument
164 if (WaveFileWrite(wFile, buffer, bufferSize) != bufferSize)
225 EAS_I32 bufferSize; local
283 bufferSize = pLibConfig->mixBufferSize * pLibConfig->numChannels * (EAS_I32)sizeof(EAS_PCM) * NUM_BUFFERS;
286 buffer = malloc((EAS_U32)bufferSize);
309 if ((playResult = PlayFile(easData, defaultTestFile, NULL, pLibConfig, buffer, bufferSize)) != EAS_SUCCESS)
324 if ((playResult = PlayFile(easData, argv[i], outputFile, pLibConfig, buffer, bufferSize)) != EAS_SUCCESS)
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imelody.c1411 if (len >pData->metadata.bufferSize)
1412 len = pData->metadata.bufferSize;

Completed in 913 milliseconds

1234567891011>>