HomeSort by relevance Sort by last modified time
    Searched refs:writePtr (Results 1 - 9 of 9) sorted by null

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_byte_stream.c 92 u8 *readPtr, *writePtr;
196 readPtr = writePtr = pStrmData->pStrmBuffStart;
225 *writePtr++ = *readPtr++;
229 /* (readPtr - writePtr) indicates number of "removed" emulation
231 pStrmData->strmBuffSize -= (u32)(readPtr - writePtr);
  /frameworks/base/tools/aapt2/compile/
Png.cpp 91 static void writeDataToStream(png_structp writePtr, png_bytep data,
93 BigBuffer* outBuffer = reinterpret_cast<BigBuffer*>(png_get_io_ptr(writePtr));
98 static void flushDataToStream(png_structp /*writePtr*/) {}
433 static bool writePng(IDiagnostics* diag, png_structp writePtr,
435 if (setjmp(png_jmpbuf(writePtr))) {
462 png_set_compression_level(writePtr, Z_BEST_COMPRESSION);
510 png_set_IHDR(writePtr, infoPtr, info->width, info->height, 8, colorType,
515 png_set_PLTE(writePtr, infoPtr, rgbPalette, paletteEntries);
517 png_set_tRNS(writePtr, infoPtr, alphaPalette, paletteEntries,
520 png_set_filter(writePtr, 0, PNG_NO_FILTERS)
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkBuilderUtil.cpp 240 const VkWriteDescriptorSet* const writePtr = (m_writes.empty()) ? (DE_NULL) : (&writes[0]);
243 vk.updateDescriptorSets(device, (deUint32)writes.size(), writePtr, (deUint32)m_copies.size(), copyPtr);
265 const VkWriteDescriptorSet* const writePtr = (m_writes.empty()) ? (DE_NULL) : (&writes[0]);
267 vk.cmdPushDescriptorSetKHR(cmd, bindPoint, pipelineLayout, setIdx, (deUint32)m_writes.size(), writePtr);
  /external/skia/src/core/
SkBuffer.h 108 void writePtr(const void* x) { this->writeNoSizeCheck(&x, sizeof(x)); }
  /system/libfmq/include/fmq/
MessageQueue.h     [all...]
  /frameworks/base/core/java/android/os/
ParcelFileDescriptor.java 787 int writePtr = 0;
789 Memory.pokeInt(buf, writePtr, status, ByteOrder.BIG_ENDIAN);
790 writePtr += 4;
794 final int len = Math.min(rawMsg.length, buf.length - writePtr);
795 System.arraycopy(rawMsg, 0, buf, writePtr, len);
796 writePtr += len;
800 Os.write(mCommFd, buf, 0, writePtr);
    [all...]
  /external/skia/tests/
Writer32Test.cpp 82 writer.writePtr(p0);
84 writer.writePtr(p1);
  /external/skia/include/core/
SkWriter32.h 110 void writePtr(void* value) {
  /external/deqp/modules/glshared/
glsDrawTest.cpp     [all...]

Completed in 952 milliseconds