/frameworks/compile/mclinker/lib/Support/ |
D | LEB128.cpp | 17 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue) { in encode() argument 24 *pBuf++ = byte; in encode() 36 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue) { in encode() argument 38 *pBuf++ = static_cast<ByteType>(pValue); in encode() 41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80); in encode() 42 *pBuf++ = static_cast<ByteType>((pValue >> 7) & 0x7f); in encode() 45 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80); in encode() 46 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80); in encode() 47 *pBuf++ = static_cast<ByteType>((pValue >> 14) & 0x7f); in encode() 50 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80); in encode() [all …]
|
D | MemoryArea.cpp | 352 ssize_t MemoryArea::readToBuffer(sys::fs::detail::Address pBuf, in readToBuffer() argument 357 ssize_t read_bytes = sys::fs::detail::pread(m_FileDescriptor, pBuf, in readToBuffer()
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | LEB128.h | 27 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_t &pSize); [all …]
|
D | FileSystem.h | 109 size_t pread(int pFD, Address pBuf, size_t pCount, off_t pOffset); 110 size_t pwrite(int pFD, const Address pBuf, size_t pCount, off_t pOffset);
|
D | MemoryArea.h | 210 ssize_t readToBuffer(sys::fs::detail::Address pBuf,
|
/frameworks/base/media/libdrm/mobile1/src/parser/ |
D | parser_rel.c | 235 uint8_t *pBuf, *pValue; in drm_getRightValue() local 325 pBuf = in drm_getRightValue() 332 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen); in drm_getRightValue() 334 CHECK_VALIDITY(pBuf); in drm_getRightValue() 335 if (pBuf) { /* If interval element exit then get the value */ in drm_getRightValue() 419 pBuf = in drm_getRightValue() 426 pBuf = XML_DOM_getNodeValue(buffer, sProperty, &pValue, &valueLen); in drm_getRightValue() 428 CHECK_VALIDITY(pBuf); in drm_getRightValue() 429 if (pBuf) { /* If count element exit the get the value */ in drm_getRightValue() 461 pBuf = in drm_getRightValue() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
D | armVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s | 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
|
D | omxVCM4P10_InterpolateLuma_s.s | 122 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, pInterBuf [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
D | armVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s | 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/compile/mclinker/lib/Support/Unix/ |
D | FileSystem.inc | 26 size_t pread(int pFD, Address pBuf, size_t pCount, off_t pOffset) 28 return ::pread(pFD, (void*) pBuf, pCount, pOffset); 31 size_t pwrite(int pFD, const Address pBuf, size_t pCount, off_t pOffset) 33 return ::pwrite(pFD, (const void*) pBuf, pCount, pOffset);
|
/frameworks/av/libvideoeditor/vss/3gpwriter/src/ |
D | M4MP4W_Interface.c | 255 pStreamDescription->decoderSpecificInfo = (M4OSA_MemAddr32)pVideoInfo->Header.pBuf; in M4WRITER_3GP_addStream() 257 pVideoInfo->Header.pBuf, pVideoInfo->Header.Size); in M4WRITER_3GP_addStream() 275 pStreamDescription->decoderSpecificInfo = (M4OSA_MemAddr32)pAudioInfo->Header.pBuf; in M4WRITER_3GP_addStream() 277 pAudioInfo->Header.pBuf, pAudioInfo->Header.Size); in M4WRITER_3GP_addStream()
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/ |
D | VideoEditorVideoEncoder.cpp | 365 VIDEOEDITOR_CHECK(M4OSA_NULL == pEncoderContext->mHeader.pBuf, M4ERR_STATE); in VideoEditorVideoEncoder_getDSI() 369 (uint8_t**)(&(pEncoderContext->mHeader.pBuf)), in VideoEditorVideoEncoder_getDSI() 379 SAFE_MALLOC(pEncoderContext->mHeader.pBuf, M4OSA_Int8, in VideoEditorVideoEncoder_getDSI() 381 memcpy((void *)pEncoderContext->mHeader.pBuf, in VideoEditorVideoEncoder_getDSI() 419 SAFE_FREE(pEncoderContext->mHeader.pBuf); in VideoEditorVideoEncoder_cleanup() 962 SAFE_FREE(pEncoderContext->mHeader.pBuf); in VideoEditorVideoEncoder_processOutputBuffer() 1197 M4OSA_NULL != pEncoderContext->mHeader.pBuf, M4ERR_STATE); in VideoEditorVideoEncoder_getOption()
|
/frameworks/av/libvideoeditor/vss/common/inc/ |
D | M4WRITER_common.h | 118 M4OSA_MemAddr8 pBuf; /**< Buffer for the header */ member
|
D | M4ENCODER_common.h | 349 M4OSA_MemAddr8 pBuf; /**< Buffer for the header */ member
|
/frameworks/base/media/libdrm/mobile1/src/xml/ |
D | xml_tinyparser.c | 761 uint8_t *pBuf; in XML_makeTree() local 778 if (NULL == (pBuf = XML_DOM_getTag(buffer, &valueLen, &tagType))) in XML_makeTree() 797 *buf = pBuf; in XML_makeTree()
|
/frameworks/av/libvideoeditor/vss/src/ |
D | M4PTO3GPP_API.c | 1011 if ( (M4NO_ERROR != osaErr) || (M4OSA_NULL == encHeader->pBuf) ) in M4PTO3GPP_Close() 1023 streamHeader.addr = (M4OSA_MemAddr32)encHeader->pBuf; in M4PTO3GPP_Close() 1505 pC->m_pWriterVideoStreamInfo->Header.pBuf = M4OSA_NULL; in M4PTO3GPP_Ready4Processing() 1617 pC->m_pWriterAudioStreamInfo->Header.pBuf = in M4PTO3GPP_Ready4Processing() 1624 pC->m_pWriterAudioStreamInfo->Header.pBuf = M4OSA_NULL; in M4PTO3GPP_Ready4Processing()
|
D | M4VSS3GPP_Edit.c | 2336 pC_ewc->WriterVideoStreamInfo.Header.pBuf = in M4VSS3GPP_intCreate3GPPOutputFile() 2454 streamAudioInfo.Header.pBuf = pC_ewc->pAudioOutputDsi; in M4VSS3GPP_intCreate3GPPOutputFile() 2460 streamAudioInfo.Header.pBuf = M4OSA_NULL; in M4VSS3GPP_intCreate3GPPOutputFile() 2698 if( ( M4NO_ERROR != err) || (M4OSA_NULL == encHeader->pBuf) ) in M4VSS3GPP_intComputeOutputVideoAndAudioDsi() 2706 encHeader->pBuf, encHeader->Size); in M4VSS3GPP_intComputeOutputVideoAndAudioDsi() 2728 memcpy((void *)pC->ewc.pVideoOutputDsi, (void *)encHeader->pBuf, in M4VSS3GPP_intComputeOutputVideoAndAudioDsi()
|
D | M4VSS3GPP_AudioMixing.c | 980 if( ( M4NO_ERROR != err) || (M4OSA_NULL == encHeader->pBuf) ) in M4VSS3GPP_intAudioMixingOpen() 987 encHeader->pBuf, encHeader->Size); in M4VSS3GPP_intAudioMixingOpen() 1008 memcpy((void *)pC->ewc.pVideoOutputDsi, (void *)encHeader->pBuf, in M4VSS3GPP_intAudioMixingOpen()
|
/frameworks/base/media/libdrm/mobile1/src/objmng/ |
D | drm_api.c | 188 static int32_t drm_scanEndBoundary(const uint8_t* pBuf, int32_t len, uint8_t* const boundary) in drm_scanEndBoundary() argument 194 if (NULL == pBuf || len <=0 || NULL == boundary) in drm_scanEndBoundary() 197 p = pBuf; in drm_scanEndBoundary() 199 leftLen = len - (p - pBuf); in drm_scanEndBoundary() 204 leftLen = len - (p - pBuf); in drm_scanEndBoundary() 209 return p - pBuf; /* find the boundary here */ in drm_scanEndBoundary()
|
/frameworks/av/libvideoeditor/vss/mcs/src/ |
D | M4MCS_API.c | 2264 pC->WriterVideoStreamInfo.Header.pBuf = M4OSA_NULL; in M4MCS_init() 3122 if( ( M4NO_ERROR != err) || (M4OSA_NULL == encHeader->pBuf) ) in M4MCS_close() 3135 streamHeader.addr = (M4OSA_MemAddr32)encHeader->pBuf; in M4MCS_close() 3329 && (M4OSA_NULL != pC->WriterVideoStreamInfo.Header.pBuf) ) in M4MCS_cleanUp() 3331 free(pC->WriterVideoStreamInfo.Header.pBuf); in M4MCS_cleanUp() 3332 pC->WriterVideoStreamInfo.Header.pBuf = M4OSA_NULL; in M4MCS_cleanUp() 5490 if( ( M4NO_ERROR != err) || (M4OSA_NULL == encHeader->pBuf) ) in M4MCS_intStepSet() 5503 ( encHeader->pBuf[SPS_START_POS] << 8) in M4MCS_intStepSet() 5504 + encHeader->pBuf[SPS_START_POS + 1]; in M4MCS_intStepSet() 5506 (M4OSA_UInt8 *)(encHeader->pBuf) + SPS_START_POS + 2; in M4MCS_intStepSet() [all …]
|