Lines Matching refs:bytesConsumed
63 int32_t* bytesConsumed);
67 int32_t* bytesConsumed, int32_t* outBytes);
325 int32_t* bytesConsumed) { in configXAACDecoder() argument
357 mXheaacCodecHandle, IA_API_CMD_GET_CURIDX_INPUT_BUF, 0, bytesConsumed); in configXAACDecoder()
639 int32_t* bytesConsumed, in decodeXAACStream() argument
646 configXAACDecoder(inBuffer, inBufferLength, bytesConsumed); in decodeXAACStream()
703 mXheaacCodecHandle, IA_API_CMD_GET_CURIDX_INPUT_BUF, 0, bytesConsumed); in decodeXAACStream()
858 int32_t bytesConsumed = 0; in LLVMFuzzerTestOneInput() local
859 status = codec->configXAACDecoder((uint8_t*)data, size, &bytesConsumed); in LLVMFuzzerTestOneInput()
860 while ((int32_t)size > bytesConsumed) { in LLVMFuzzerTestOneInput()
862 size -= bytesConsumed; in LLVMFuzzerTestOneInput()
863 data += bytesConsumed; in LLVMFuzzerTestOneInput()
864 status = codec->decodeXAACStream((uint8_t*)data, size, &bytesConsumed, in LLVMFuzzerTestOneInput()
867 if (0 == bytesConsumed) bytesConsumed = 4; in LLVMFuzzerTestOneInput()