HomeSort by relevance Sort by last modified time
    Searched full:inputbuffer (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/llvm/lib/Support/
Compression.cpp 49 zlib::Status zlib::compress(StringRef InputBuffer,
52 unsigned long CompressedSize = ::compressBound(InputBuffer.size());
57 (const Bytef *)InputBuffer.data(), InputBuffer.size(), CLevel));
65 zlib::Status zlib::uncompress(StringRef InputBuffer,
71 (const Bytef *)InputBuffer.data(), InputBuffer.size()));
85 zlib::Status zlib::compress(StringRef InputBuffer,
90 zlib::Status zlib::uncompress(StringRef InputBuffer,
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLSignatureRawRSA.java 42 private byte[] inputBuffer;
58 if (inputOffset > inputBuffer.length) {
63 inputBuffer[oldOffset] = input;
71 if (inputOffset > inputBuffer.length) {
76 System.arraycopy(input, offset, inputBuffer, oldOffset, len);
101 inputBuffer = new byte[maxSize];
119 inputBuffer = new byte[maxSize];
136 + inputBuffer.length + " (modulus size)");
139 byte[] outputBuffer = new byte[inputBuffer.length];
141 NativeCrypto.RSA_private_encrypt(inputOffset, inputBuffer, outputBuffer
    [all...]
  /frameworks/base/core/java/android/util/
Base64InputStream.java 34 private byte[] inputBuffer;
64 inputBuffer = new byte[BUFFER_SIZE];
89 inputBuffer = null;
133 * Read data from the input stream into inputBuffer, then
139 int bytesRead = in.read(inputBuffer);
145 success = coder.process(inputBuffer, 0, bytesRead, false);
  /external/libxml2/python/tests/
inbuf.py 17 buf = libxml2.inputBuffer(f)
reader6.py 50 input = libxml2.inputBuffer(f)
93 input = libxml2.inputBuffer(f)
reader4.py 19 input = libxml2.inputBuffer(f)
reader5.py 18 input = libxml2.inputBuffer(f)
readererr.py 26 input = libxml2.inputBuffer(f)
reader.py 19 input = libxml2.inputBuffer(f)
79 input = libxml2.inputBuffer(f)
101 input = libxml2.inputBuffer(f)
120 input = libxml2.inputBuffer(f)
249 input = libxml2.inputBuffer(f)
266 input = libxml2.inputBuffer(f)
286 input = libxml2.inputBuffer(f)
305 input = libxml2.inputBuffer(f)
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/exoplayer/ac3/
Ac3PassthroughDecoder.java 37 public void decode(ByteBuffer inputBuffer, long presentationTimeUs) {
38 mListener.decodeDone(inputBuffer, presentationTimeUs);
Ac3Decoder.java 42 public abstract void decode(ByteBuffer inputBuffer, long presentationTimeUs);
  /external/skia/tests/
PDFDeflateWStreamTest.cpp 37 uint8_t inputBuffer[kBufferSize];
56 flateData.next_in = inputBuffer;
78 size_t read = src->read(&inputBuffer, kBufferSize);
81 flateData.next_in = inputBuffer;
  /hardware/intel/common/utils/ISV/base/
isv_processor.cpp 174 OMX_BUFFERHEADERTYPE *inputBuffer;
190 inputBuffer = mInputBuffers.itemAt(0);
191 unsigned long inputHandle = reinterpret_cast<unsigned long>(inputBuffer->pBuffer);
205 err = mpOwner->releaseBuffer(kPortIndexInput, inputBuffer, false);
216 reinterpret_cast<uintptr_t>(inputBuffer), mInputBuffers.size());
268 OMX_BUFFERHEADERTYPE *inputBuffer;
286 inputBuffer = mInputBuffers.itemAt(mInputProcIdx);
287 if (!inputBuffer) {
291 unsigned long inputHandle = reinterpret_cast<unsigned long>(inputBuffer->pBuffer);
321 OMX_BUFFERHEADERTYPE *inputBuffer;
    [all...]
  /external/llvm/include/llvm/Support/
Compression.h 43 Status compress(StringRef InputBuffer, SmallVectorImpl<char> &CompressedBuffer,
46 Status uncompress(StringRef InputBuffer,
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
Base64InputStream.java 40 private final byte[] inputBuffer = new byte[4];
94 inputBuffer[inCount++] = sX;
106 accum |= inputBuffer[0] << 18;
107 accum |= inputBuffer[1] << 12;
108 accum |= inputBuffer[2] << 6;
109 accum |= inputBuffer[3];
  /packages/services/Telephony/src/org/apache/james/mime4j/decoder/
Base64InputStream.java 40 private final byte[] inputBuffer = new byte[4];
94 inputBuffer[inCount++] = sX;
106 accum |= inputBuffer[0] << 18;
107 accum |= inputBuffer[1] << 12;
108 accum |= inputBuffer[2] << 6;
109 accum |= inputBuffer[3];
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
ExposureFilter.java 60 ByteBuffer inputBuffer = inputImage.lockBytes(Frame.MODE_READ);
64 inputBuffer);
67 inputBuffer);
AvgBrightnessFilter.java 55 ByteBuffer inputBuffer = inputImage.lockBytes(Frame.MODE_READ);
57 brightness = brightnessOperator(inputImage.getWidth(),inputImage.getHeight(), inputBuffer);
ContrastRatioFilter.java 55 ByteBuffer inputBuffer = inputImage.lockBytes(Frame.MODE_READ);
58 inputBuffer);
  /external/sonic/
Sonic.java 18 private short inputBuffer[];
185 inputBuffer = new short[maxRequired*numChannels];
256 inputBuffer = resize(inputBuffer, inputBufferSize);
271 inputBuffer[xBuffer++] = (short)(samples[xSample]*32767.0f);
285 move(inputBuffer, numInputSamples, samples, 0, numSamples);
300 inputBuffer[xBuffer++] = (short) (sample << 8);
317 inputBuffer[xBuffer++] = sample;
328 move(inputBuffer, 0, inputBuffer, position, remainingSamples)
    [all...]
sonic.c 22 short *inputBuffer;
184 if(stream->inputBuffer != NULL) {
185 free(stream->inputBuffer);
217 stream->inputBuffer = (short *)calloc(maxRequired, sizeof(short)*numChannels);
218 if(stream->inputBuffer == NULL) {
332 stream->inputBuffer = (short *)realloc(stream->inputBuffer,
334 if(stream->inputBuffer == NULL) {
356 buffer = stream->inputBuffer + stream->numInputSamples*stream->numChannels;
376 memcpy(stream->inputBuffer + stream->numInputSamples*stream->numChannels, samples
    [all...]
  /system/media/audio_utils/tests/
fifo_tests.cpp 78 short *inputBuffer = new short[sfinfoin.frames * sfinfoin.channels];
79 sf_count_t actualRead = sf_readf_short(sfin, inputBuffer, sfinfoin.frames);
107 &inputBuffer[framesWritten * sfinfoin.channels], framesToWrite);
160 delete[] inputBuffer;
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBufferSparseBinding.cpp 245 const de::UniquePtr<Buffer> inputBuffer(new Buffer(deviceInterface, *m_logicalDevice, *allocator, inputBufferCreateInfo, MemoryRequirement::HostVisible));
255 deMemcpy(inputBuffer->getAllocation().getHostPtr(), &referenceData[0], m_bufferSize);
257 flushMappedMemoryRange(deviceInterface, *m_logicalDevice, inputBuffer->getAllocation().getMemory(), inputBuffer->getAllocation().getOffset(), m_bufferSize);
262 inputBuffer->get(),
270 deviceInterface.cmdCopyBuffer(*commandBuffer, inputBuffer->get(), *sparseBuffer, 1u, &bufferCopy);
  /external/tpm2/
TcpServer.c 23 char InputBuffer[MAX_BUFFER]; //The input data buffer for the simulator.
482 ok = ReadVarBytes(s, InputBuffer, &length, MAX_BUFFER);
484 InBuffer.Buffer = (BYTE*) InputBuffer;
492 ok = ReadVarBytes(s, InputBuffer, &length, MAX_BUFFER);
495 InBuffer.Buffer = (BYTE*) InputBuffer;
505 &InputBuffer[6], sizeof(UINT32));
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ToGrayValuesFilter.java 108 ByteBuffer inputBuffer = inputImage.lockBytes(Frame.MODE_READ);
109 if (!toGrayValues(inputBuffer, grayBuffer)) {

Completed in 1032 milliseconds

1 2 3 4 5