OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outputBufferSize
(Results
1 - 7
of
7
) sorted by null
/libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java
122
final int
outputBufferSize
= 128 * deflaterBufferSize;
123
byte[] output = new byte[
outputBufferSize
];
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java
398
int
outputBufferSize
= putOperation.getMaxPacketSize();
399
byte[] buffer = new byte[
outputBufferSize
];
403
readLength = readFully(a, buffer,
outputBufferSize
);
451
readLength = a.read(buffer, 0,
outputBufferSize
);
BluetoothOppObexServerSession.java
459
int
outputBufferSize
= op.getMaxPacketSize();
460
byte[] b = new byte[
outputBufferSize
];
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/tests/
G711DecTest.c
504
OMX_S16
outputBufferSize
= 0;
509
outputBufferSize
= atoi(argv[11]);
533
printf("%d :: App: size of Output buffers = %d \n",__LINE__,
outputBufferSize
);
817
pCompPrivateStruct->nBufferSize =
outputBufferSize
;
868
error = OMX_AllocateBuffer(pHandle,&pOutputBufferHeader[i],1,NULL,
outputBufferSize
);
[
all
...]
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/audio/dec/mp3/
Exynos_OMX_Mp3dec.c
692
unsigned int
outputBufferSize
= 0;
773
returnCodec = SRP_Get_Obuf_Info(&pOutputBuffer, &
outputBufferSize
, &outputBufferNum);
809
pExynosPort->portDefinition.nBufferSize =
outputBufferSize
;
[
all
...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.c
153
size_t
outputBufferSize
;
554
pSession->
outputBufferSize
= OUTPUT_BUFFER_SIZE_INCREMENT;
555
pOutput->fromConvertData.pBuffer = malloc(pSession->
outputBufferSize
);
835
if (pOutput->fromConvertData.numBytes == pSession->
outputBufferSize
) {
837
pSession->
outputBufferSize
+= OUTPUT_BUFFER_SIZE_INCREMENT;
838
pBuffer = realloc(pOutput->fromConvertData.pBuffer, pSession->
outputBufferSize
);
[
all
...]
/cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js
321
function Resampler(fromSampleRate, toSampleRate, channels,
outputBufferSize
, noReturn) {
325
this.
outputBufferSize
=
outputBufferSize
;
352
var toCompile = "var bufferLength = Math.min(buffer.length, this.
outputBufferSize
);\
461
this.outputBuffer = new Float32Array(this.
outputBufferSize
);
[
all
...]
Completed in 288 milliseconds