/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsELFDynamic.cpp | 38 void MipsELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) in reserveTargetEntries() argument 41 if (pFormat.hasGOT()) in reserveTargetEntries() 52 void MipsELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) in applyTargetEntries() argument 55 if (pFormat.hasGOT()) in applyTargetEntries() 56 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr()); in applyTargetEntries() 61 applyOne(MIPS_LOCAL_GOTNO, getLocalGotNum(pFormat)); in applyTargetEntries() 62 applyOne(MIPS_SYMTABNO, getSymTabNum(pFormat)); in applyTargetEntries() 63 applyOne(MIPS_GOTSYM, getGotSym(pFormat)); in applyTargetEntries() 66 size_t MipsELFDynamic::getSymTabNum(const ELFFileFormat& pFormat) const in getSymTabNum() 68 if (!pFormat.hasDynSymTab()) in getSymTabNum() [all …]
|
D | MipsELFDynamic.h | 31 void reserveTargetEntries(const ELFFileFormat& pFormat); 32 void applyTargetEntries(const ELFFileFormat& pFormat); 34 size_t getSymTabNum(const ELFFileFormat& pFormat) const; 35 size_t getGotSym(const ELFFileFormat& pFormat) const; 36 size_t getLocalGotNum(const ELFFileFormat& pFormat) const;
|
/frameworks/compile/mclinker/lib/Target/ |
D | ELFDynamic.cpp | 99 void ELFDynamic::reserveEntries(const ELFFileFormat& pFormat) in reserveEntries() argument 108 if (pFormat.hasInit()) in reserveEntries() 111 if (pFormat.hasFini()) in reserveEntries() 114 if (pFormat.hasInitArray()) { in reserveEntries() 119 if (pFormat.hasFiniArray()) { in reserveEntries() 124 if (pFormat.hasHashTab()) in reserveEntries() 128 if (pFormat.hasGNUHashTab()) in reserveEntries() 131 if (pFormat.hasDynSymTab()) { in reserveEntries() 136 if (pFormat.hasDynStrTab()) { in reserveEntries() 141 reserveTargetEntries(pFormat); // DT_PLTGOT in reserveEntries() [all …]
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMELFDynamic.cpp | 25 void ARMELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) in reserveTargetEntries() argument 28 if (pFormat.hasGOT()) in reserveTargetEntries() 32 void ARMELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) in applyTargetEntries() argument 35 if (pFormat.hasGOT()) in applyTargetEntries() 36 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr()); in applyTargetEntries()
|
D | ARMELFDynamic.h | 25 void reserveTargetEntries(const ELFFileFormat& pFormat); 26 void applyTargetEntries(const ELFFileFormat& pFormat);
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonELFDynamic.cpp | 24 void HexagonELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) in reserveTargetEntries() argument 27 if (pFormat.hasGOTPLT()) in reserveTargetEntries() 31 void HexagonELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) in applyTargetEntries() argument 34 if (pFormat.hasGOTPLT()) in applyTargetEntries() 35 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr()); in applyTargetEntries()
|
D | HexagonELFDynamic.h | 26 void reserveTargetEntries(const ELFFileFormat& pFormat); 27 void applyTargetEntries(const ELFFileFormat& pFormat);
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86ELFDynamic.cpp | 25 void X86ELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) in reserveTargetEntries() argument 28 if (pFormat.hasGOTPLT()) in reserveTargetEntries() 32 void X86ELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) in applyTargetEntries() argument 35 if (pFormat.hasGOTPLT()) in applyTargetEntries() 36 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr()); in applyTargetEntries()
|
D | X86ELFDynamic.h | 26 void reserveTargetEntries(const ELFFileFormat& pFormat); 27 void applyTargetEntries(const ELFFileFormat& pFormat);
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/inc/ |
D | VideoEditorAudioEncoder.h | 30 M4ENCODER_AudioFormat* pFormat, 34 M4ENCODER_AudioFormat* pFormat, 38 M4ENCODER_AudioFormat* pFormat,
|
D | VideoEditorVideoEncoder.h | 27 M4OSA_ERR VideoEditorVideoEncoder_getInterface_H263(M4ENCODER_Format* pFormat, 30 M4OSA_ERR VideoEditorVideoEncoder_getInterface_MPEG4(M4ENCODER_Format* pFormat, 33 M4OSA_ERR VideoEditorVideoEncoder_getInterface_H264(M4ENCODER_Format* pFormat,
|
/frameworks/wilhelm/src/ |
D | data.c | 336 static SLresult checkDataFormat(const char *name, void *pFormat, DataFormat *pDataFormat, in checkDataFormat() argument 343 if (NULL == pFormat) { in checkDataFormat() 346 formatType = *(SLuint32 *)pFormat; in checkDataFormat() 350 pDataFormat->mPCM = *(SLDataFormat_PCM *)pFormat; in checkDataFormat() 482 pDataFormat->mMIME = *(SLDataFormat_MIME *)pFormat; in checkDataFormat() 503 pDataFormat->mRawImage = *(XADataFormat_RawImage *)pFormat; in checkDataFormat() 745 pDataLocatorFormat->u.mSource.pFormat = &pDataLocatorFormat->mFormat; in checkDataSource() 775 myDataSrc.pFormat = NULL; in checkDataSource() 803 result = checkDataFormat(name, myDataSrc.pFormat, &pDataLocatorFormat->mFormat, in checkDataSource() 822 pDataLocatorFormat->u.mSink.pFormat = &pDataLocatorFormat->mFormat; in checkDataSink() [all …]
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | ELFDynamic.h | 155 void reserveEntries(const ELFFileFormat& pFormat); 161 void applyEntries(const ELFFileFormat& pFormat); 176 virtual void reserveTargetEntries(const ELFFileFormat& pFormat) = 0; 179 virtual void applyTargetEntries(const ELFFileFormat& pFormat) = 0;
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/ |
D | VideoEditorAudioEncoder.cpp | 673 M4ENCODER_AudioFormat format, M4ENCODER_AudioFormat* pFormat, in VideoEditorAudioEncoder_getInterface() argument 678 VIDEOEDITOR_CHECK(M4OSA_NULL != pFormat, M4ERR_PARAMETER); in VideoEditorAudioEncoder_getInterface() 681 ALOGV("VideoEditorAudioEncoder_getInterface 0x%x 0x%x",pFormat, in VideoEditorAudioEncoder_getInterface() 686 *pFormat = format; in VideoEditorAudioEncoder_getInterface() 730 M4ENCODER_AudioFormat* pFormat, in VideoEditorAudioEncoder_getInterface_AAC() argument 733 M4ENCODER_kAAC, pFormat, pEncoderInterface); in VideoEditorAudioEncoder_getInterface_AAC() 737 M4ENCODER_AudioFormat* pFormat, in VideoEditorAudioEncoder_getInterface_AMRNB() argument 741 M4ENCODER_kAMRNB, pFormat, pEncoderInterface); in VideoEditorAudioEncoder_getInterface_AMRNB() 745 M4ENCODER_AudioFormat* pFormat, in VideoEditorAudioEncoder_getInterface_MP3() argument 750 M4ENCODER_kMP3, pFormat, pEncoderInterface); in VideoEditorAudioEncoder_getInterface_MP3()
|
D | VideoEditorVideoEncoder.cpp | 1217 M4ENCODER_Format* pFormat, in VideoEditorVideoEncoder_getInterface() argument 1222 VIDEOEDITOR_CHECK(M4OSA_NULL != pFormat, M4ERR_PARAMETER); in VideoEditorVideoEncoder_getInterface() 1225 ALOGV("VideoEditorVideoEncoder_getInterface begin 0x%x 0x%x %d", pFormat, in VideoEditorVideoEncoder_getInterface() 1231 *pFormat = format; in VideoEditorVideoEncoder_getInterface() 1283 M4OSA_ERR VideoEditorVideoEncoder_getInterface_H263(M4ENCODER_Format* pFormat, in VideoEditorVideoEncoder_getInterface_H263() argument 1285 return VideoEditorVideoEncoder_getInterface(M4ENCODER_kH263, pFormat, in VideoEditorVideoEncoder_getInterface_H263() 1289 M4OSA_ERR VideoEditorVideoEncoder_getInterface_MPEG4(M4ENCODER_Format* pFormat, in VideoEditorVideoEncoder_getInterface_MPEG4() argument 1291 return VideoEditorVideoEncoder_getInterface(M4ENCODER_kMPEG4, pFormat, in VideoEditorVideoEncoder_getInterface_MPEG4() 1295 M4OSA_ERR VideoEditorVideoEncoder_getInterface_H264(M4ENCODER_Format* pFormat, in VideoEditorVideoEncoder_getInterface_H264() argument 1297 return VideoEditorVideoEncoder_getInterface(M4ENCODER_kH264, pFormat, in VideoEditorVideoEncoder_getInterface_H264()
|
/frameworks/wilhelm/tests/sandbox/ |
D | xa.c | 90 dataSrc.pFormat = &fmtMime; in main() 96 audioSnk.pFormat = NULL; in main() 103 imageVideoSink.pFormat = NULL; in main()
|
D | srcsink.c | 52 audioSrc.pFormat = &format_pcm; in main() 60 audioSnk.pFormat = NULL; in main() 96 audioSnk.pFormat = (void *) 0xDEADBEEF; in main() 101 audioSnk.pFormat = NULL; in main()
|
D | urimime.c | 66 audioSrc.pFormat = &format_mime; in main() 74 audioSnk.pFormat = NULL; in main()
|
/frameworks/av/include/media/ |
D | IMediaPlayerService.h | 52 … decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) = 0; 53 …4_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) = 0;
|
D | mediaplayer.h | 221 …ry> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat); 222 …int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat);
|
/frameworks/av/media/libmedia/ |
D | IMediaPlayerService.cpp | 89 …IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) in decode() argument 97 *pFormat = (audio_format_t) reply.readInt32(); in decode() 101 … int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) in decode() argument 111 *pFormat = (audio_format_t) reply.readInt32(); in decode()
|
/frameworks/wilhelm/tests/examples/ |
D | slesTestFeedback.cpp | 310 audiosrc.pFormat = &pcm; in main() 312 audiosnk.pFormat = NULL; in main() 346 audiosrc.pFormat = NULL; in main() 350 audiosnk.pFormat = &pcm; in main()
|
D | slesTestPlayFdPath.cpp | 99 audioSink.pFormat = NULL; in TestPlayPathFromFD() 126 audioSource.pFormat = (void*)&mime; in TestPlayPathFromFD()
|
/frameworks/wilhelm/tests/listening/ |
D | seekTorture.c | 69 audiosrc.pFormat = &mime; in main() 71 audiosnk.pFormat = NULL; in main()
|
/frameworks/wilhelm/tests/mimeUri/ |
D | slesTest_playStates.cpp | 98 audioSink.pFormat = NULL; in TestPlayUri() 119 audioSource.pFormat = (void*)&mime; in TestPlayUri()
|