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 == nullptr)) {
33 ALOGW("InputFile::read: count = %zu, buffer = %p", count, pBuf);
38 ssize_t read_size = ::read(mFD, pBuf, count);
H A DOutputFile.cpp30 ssize_t OutputFile::write(const void *pBuf, size_t count) { argument
35 if ((count <= 0) || (pBuf == nullptr)) {
37 ALOGW("OutputFile::write: count = %zu, buffer = %p", count, pBuf);
42 ssize_t write_size = ::write(mFD, pBuf, count);
/frameworks/compile/mclinker/include/mcld/Support/
H A DLEB128.h23 size_t encode(ByteType*& pBuf, IntType pValue);
26 IntType decode(const ByteType* pBuf, size_t& pSize);
29 IntType decode(const ByteType*& pBuf);
52 size_t encode<uint64_t>(ByteType*& pBuf, uint64_t pValue);
55 size_t encode<uint32_t>(ByteType*& pBuf, uint32_t pValue);
61 size_t encode<int64_t>(ByteType*& pBuf, int64_t pValue);
64 size_t encode<int32_t>(ByteType*& pBuf, int32_t pValue);
72 uint64_t decode<uint64_t>(const ByteType* pBuf, size_t& pSize);
79 uint64_t decode<uint64_t>(const ByteType*& pBuf);
85 int64_t decode<int64_t>(const ByteType* pBuf, size_
96 encode(char*& pBuf, IntType pValue) argument
101 decode(const char* pBuf, size_t& pSize) argument
106 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
136 decode(const ByteType*& pBuf) argument
184 decode(const ByteType* pBuf, size_t& pSize) argument
205 decode(const ByteType*& pBuf) argument
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DELFAttributeData.cpp19 const char*& pBuf,
24 leb128::decode<uint64_t>(pBuf, size));
29 pBuf += size;
36 const char*& pBuf,
41 uint64_t int_value = leb128::decode<uint64_t>(pBuf, size);
47 pBuf += size;
53 pValue.setStringValue(pBuf);
57 pBuf += size;
66 char*& pBuf) {
68 leb128::encode<uint32_t>(pBuf, pTa
18 ReadTag(TagType& pTag, const char*& pBuf, size_t& pBufSize) argument
35 ReadValue(ELFAttributeValue& pValue, const char*& pBuf, size_t& pBufSize) argument
64 WriteAttribute(TagType pTag, const ELFAttributeValue& pValue, char*& pBuf) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s39 ;// Implements re-arrangement of data from temporary buffer to a buffer pointed by pBuf.
71 pBuf RN 7 label
108 STRD ValueA0, [pBuf], #8
111 SUB pSrc0, pBuf, #32
150 STR Temp1, [pBuf], #8
152 STR Temp2, [pBuf], #-4
178 STR Temp1, [pBuf], #8
180 STR Temp2, [pBuf], #4
184 SUB pSrc0, pBuf, #32-8
H A DomxVCM4P10_InterpolateLuma_s.s136 pBuf RN 8 label
163 M_ADR pBuf, pBuffer
245 M_ADR pBuf, pBuffer
263 M_ADR pBuf, pInterBuf
283 M_ADR pBuf, pBuffer
310 M_ADR pBuf, pInterBuf
325 M_ADR pBuf, pInterBuf
336 M_ADR pBuf, pInterBuf
366 M_ADR pBuf, pBuffer
382 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.s39 ;// Implements re-arrangement of data from temporary buffer to a buffer pointed by pBuf.
71 pBuf RN 7 label
108 STRD ValueA0, [pBuf], #8
111 SUB pSrc0, pBuf, #32
150 STR Temp1, [pBuf], #8
152 STR Temp2, [pBuf], #-4
178 STR Temp1, [pBuf], #8
180 STR Temp2, [pBuf], #4
184 SUB pSrc0, pBuf, #32-8
/frameworks/av/media/libstagefright/codecs/avcdec/
H A DSoftAVCDec.cpp416 uint8_t *pBuf; local
422 pBuf = outHeader->pBuffer;
425 pBuf = mFlushOutBuffer;
428 ps_dec_ip->s_out_buffer.pu1_bufs[0] = pBuf;
429 ps_dec_ip->s_out_buffer.pu1_bufs[1] = pBuf + sizeY;
430 ps_dec_ip->s_out_buffer.pu1_bufs[2] = pBuf + sizeY + sizeUV;
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.cpp377 uint8_t *pBuf; local
383 pBuf = outHeader->pBuffer;
386 pBuf = mFlushOutBuffer;
389 ps_dec_ip->s_out_buffer.pu1_bufs[0] = pBuf;
390 ps_dec_ip->s_out_buffer.pu1_bufs[1] = pBuf + sizeY;
391 ps_dec_ip->s_out_buffer.pu1_bufs[2] = pBuf + sizeY + sizeUV;
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
H A DSoftMPEG2.cpp505 uint8_t *pBuf; local
511 pBuf = outHeader->pBuffer;
514 pBuf = mFlushOutBuffer;
517 ps_dec_ip->s_out_buffer.pu1_bufs[0] = pBuf;
518 ps_dec_ip->s_out_buffer.pu1_bufs[1] = pBuf + sizeY;
519 ps_dec_ip->s_out_buffer.pu1_bufs[2] = pBuf + sizeY + sizeUV;
/frameworks/native/cmds/installd/
H A Dcommands.cpp626 char *pBuf = buf; local
628 while(strtok_r(pBuf, " ", &ctx) != NULL) {
630 pBuf = NULL;
641 char *pBuf = buf; local
643 while((tok = strtok_r(pBuf, " ", &ctx)) != NULL) {
645 pBuf = NULL;

Completed in 3099 milliseconds