Searched refs:pBuf (Results 1 - 18 of 18) sorted by relevance

/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...]
H A DELFAttribute.cpp299 size_t ELFAttribute::Subsection::emit(char* pBuf) const {
304 char* buffer = pBuf;
334 uint32_t subsection_length = (buffer - pBuf) + subsubsection_length;
/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...]
H A DFileSystem.h96 ssize_t pread(int pFD, void* pBuf, size_t pCount, off_t pOffset);
97 ssize_t pwrite(int pFD, const void* pBuf, size_t pCount, off_t pOffset);
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttributeData.h79 virtual size_t emit(char* pBuf) const = 0;
84 /// If the read succeeds, pBuf moves to the new position just pass the end of
88 static bool ReadTag(TagType& pTag, const char*& pBuf, size_t& pBufSize);
96 const char*& pBuf,
101 /// On success, the pBuf moves to the new position just pass the end of the
102 /// attribute data just written. Otherwise, it returns false and leaves pBuf
107 char*& pBuf);
H A DELFAttribute.h96 size_t emit(char* pBuf) const;
/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/compile/mclinker/lib/Support/Windows/
H A DFileSystem.inc89 ssize_t pread(int pFD, void* pBuf, size_t pCount, off_t pOffset) {
98 if (-1 == (ret = ::read(pFD, pBuf, pCount))) {
111 ssize_t pwrite(int pFD, const void* pBuf, size_t pCount, off_t pOffset) {
120 if (-1 == (ret = ::write(pFD, pBuf, pCount))) {
/frameworks/compile/mclinker/lib/Support/Unix/
H A DFileSystem.inc129 ssize_t pread(int pFD, void* pBuf, size_t pCount, off_t pOffset) {
130 return ::pread(pFD, pBuf, pCount, pOffset);
133 ssize_t pwrite(int pFD, const void* pBuf, size_t pCount, off_t pOffset) {
134 return ::pwrite(pFD, pBuf, pCount, pOffset);
/frameworks/av/media/libstagefright/codecs/avcdec/
H A DSoftAVCDec.cpp411 uint8_t *pBuf; local
417 pBuf = outHeader->pBuffer;
420 pBuf = mFlushOutBuffer;
423 ps_dec_ip->s_out_buffer.pu1_bufs[0] = pBuf;
424 ps_dec_ip->s_out_buffer.pu1_bufs[1] = pBuf + sizeY;
425 ps_dec_ip->s_out_buffer.pu1_bufs[2] = pBuf + sizeY + sizeUV;
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.cpp411 uint8_t *pBuf; local
417 pBuf = outHeader->pBuffer;
420 pBuf = mFlushOutBuffer;
423 ps_dec_ip->s_out_buffer.pu1_bufs[0] = pBuf;
424 ps_dec_ip->s_out_buffer.pu1_bufs[1] = pBuf + sizeY;
425 ps_dec_ip->s_out_buffer.pu1_bufs[2] = pBuf + sizeY + sizeUV;
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
H A DSoftMPEG2.cpp548 uint8_t *pBuf; local
554 pBuf = outHeader->pBuffer;
557 pBuf = mFlushOutBuffer;
560 ps_dec_ip->s_out_buffer.pu1_bufs[0] = pBuf;
561 ps_dec_ip->s_out_buffer.pu1_bufs[1] = pBuf + sizeY;
562 ps_dec_ip->s_out_buffer.pu1_bufs[2] = pBuf + sizeY + sizeUV;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.h179 virtual size_t emit(char* pBuf) const;
H A DARMELFAttributeData.cpp997 size_t ARMELFAttributeData::emit(char* pBuf) const {
998 char* buffer = pBuf;
1061 return (buffer - pBuf);
/frameworks/native/cmds/installd/
H A Ddexopt.cpp155 char *pBuf = buf; local
157 while(strtok_r(pBuf, " ", &ctx) != NULL) {
159 pBuf = NULL;
170 char *pBuf = buf; local
172 while((tok = strtok_r(pBuf, " ", &ctx)) != NULL) {
174 pBuf = NULL;

Completed in 406 milliseconds