Searched defs:pBuf (Results 1 - 12 of 12) sorted by relevance

/frameworks/compile/libbcc/lib/Support/
H A DInputFile.cpp26 ssize_t InputFile::read(void *pBuf, size_t count) { argument
31 if ((count <= 0) || (pBuf == NULL)) {
33 ALOGW("InputFile::read: count = %zu, buffer = %p", count, pBuf);
38 ssize_t read_size = ::read(mFD, pBuf, count);
H A DOutputFile.cpp83 ssize_t OutputFile::write(const void *pBuf, size_t count) { argument
88 if ((count <= 0) || (pBuf == NULL)) {
90 ALOGW("OutputFile::write: count = %zu, buffer = %p", count, pBuf);
95 ssize_t write_size = ::write(mFD, pBuf, count);
/frameworks/compile/mclinker/include/mcld/Support/
H A DLEB128.h27 size_t encode(ByteType *&pBuf, IntType pValue);
30 IntType decode(const ByteType *pBuf, size_t &pSize);
33 IntType decode(const ByteType *&pBuf);
56 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue);
59 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue);
65 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue);
68 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue);
76 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
83 uint64_t decode<uint64_t>(const ByteType *&pBuf);
89 int64_t decode<int64_t>(const ByteType *pBuf, size_
100 encode(char *&pBuf, IntType pValue) argument
105 decode(const char *pBuf, size_t &pSize) argument
110 decode(const char *&pBuf) argument
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DLEB128.cpp17 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue) { argument
24 *pBuf++ = byte;
36 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue) { argument
38 *pBuf++ = static_cast<ByteType>(pValue);
41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
42 *pBuf++ = static_cast<ByteType>((pValue >> 7) & 0x7f);
45 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
46 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80);
47 *pBuf++ = static_cast<ByteType>((pValue >> 14) & 0x7f);
50 *pBuf
67 encode(ByteType *&pBuf, int64_t pValue) argument
89 encode(ByteType *&pBuf, int32_t pValue) argument
96 decode(const ByteType *pBuf, size_t &pSize) argument
140 decode(const ByteType *&pBuf) argument
188 decode(const ByteType *pBuf, size_t &pSize) argument
209 decode(const ByteType *&pBuf) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s25 ;// Implements re-arrangement of data from temporary buffer to a buffer pointed by pBuf.
57 pBuf RN 7 label
94 STRD ValueA0, [pBuf], #8
97 SUB pSrc0, pBuf, #32
136 STR Temp1, [pBuf], #8
138 STR Temp2, [pBuf], #-4
164 STR Temp1, [pBuf], #8
166 STR Temp2, [pBuf], #4
170 SUB pSrc0, pBuf, #32-8
H A DomxVCM4P10_InterpolateLuma_s.s122 pBuf RN 8 label
149 M_ADR pBuf, pBuffer
231 M_ADR pBuf, pBuffer
249 M_ADR pBuf, pInterBuf
269 M_ADR pBuf, pBuffer
296 M_ADR pBuf, pInterBuf
311 M_ADR pBuf, pInterBuf
322 M_ADR pBuf, pInterBuf
352 M_ADR pBuf, pBuffer
368 M_ADR pBuf, pInterBu
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DarmVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s25 ;// Implements re-arrangement of data from temporary buffer to a buffer pointed by pBuf.
57 pBuf RN 7 label
94 STRD ValueA0, [pBuf], #8
97 SUB pSrc0, pBuf, #32
136 STR Temp1, [pBuf], #8
138 STR Temp2, [pBuf], #-4
164 STR Temp1, [pBuf], #8
166 STR Temp2, [pBuf], #4
170 SUB pSrc0, pBuf, #32-8
/frameworks/base/media/libdrm/mobile1/src/parser/
H A Dparser_rel.c235 uint8_t *pBuf, *pValue; local
325 pBuf =
332 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen);
334 CHECK_VALIDITY(pBuf);
335 if (pBuf) { /* If interval element exit then get the value */
419 pBuf =
426 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen);
428 CHECK_VALIDITY(pBuf);
429 if (pBuf) { /* If count element exit the get the value */
461 pBuf
509 uint8_t *pBuf, *pValue; local
[all...]
/frameworks/base/media/libdrm/mobile1/src/xml/
H A Dxml_tinyparser.c761 uint8_t *pBuf; local
778 if (NULL == (pBuf = XML_DOM_getTag(buffer, &valueLen, &tagType)))
797 *buf = pBuf;
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4WRITER_common.h118 M4OSA_MemAddr8 pBuf; /**< Buffer for the header */ member in struct:__anon194
H A DM4ENCODER_common.h349 M4OSA_MemAddr8 pBuf; /**< Buffer for the header */ member in struct:__anon158
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_api.c188 static int32_t drm_scanEndBoundary(const uint8_t* pBuf, int32_t len, uint8_t* const boundary) argument
194 if (NULL == pBuf || len <=0 || NULL == boundary)
197 p = pBuf;
199 leftLen = len - (p - pBuf);
204 leftLen = len - (p - pBuf);
209 return p - pBuf; /* find the boundary here */

Completed in 170 milliseconds