/frameworks/compile/mclinker/lib/Target/Mips/ |
MipsELFDynamic.cpp | 38 void MipsELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) 41 if (pFormat.hasGOT()) 52 void MipsELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) 55 if (pFormat.hasGOT()) 56 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr()); 61 applyOne(MIPS_LOCAL_GOTNO, getLocalGotNum(pFormat)); 62 applyOne(MIPS_SYMTABNO, getSymTabNum(pFormat)); 63 applyOne(MIPS_GOTSYM, getGotSym(pFormat)); 66 size_t MipsELFDynamic::getSymTabNum(const ELFFileFormat& pFormat) const 68 if (!pFormat.hasDynSymTab() [all...] |
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/ARM/ |
ARMELFDynamic.cpp | 25 void ARMELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) 28 if (pFormat.hasGOT()) 32 void ARMELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) 35 if (pFormat.hasGOT()) 36 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr());
|
ARMELFDynamic.h | 25 void reserveTargetEntries(const ELFFileFormat& pFormat); 26 void applyTargetEntries(const ELFFileFormat& pFormat);
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonELFDynamic.cpp | 24 void HexagonELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) 27 if (pFormat.hasGOTPLT()) 31 void HexagonELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) 34 if (pFormat.hasGOTPLT()) 35 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr());
|
HexagonELFDynamic.h | 26 void reserveTargetEntries(const ELFFileFormat& pFormat); 27 void applyTargetEntries(const ELFFileFormat& pFormat);
|
/frameworks/compile/mclinker/lib/Target/X86/ |
X86ELFDynamic.cpp | 25 void X86ELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) 28 if (pFormat.hasGOTPLT()) 32 void X86ELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) 35 if (pFormat.hasGOTPLT()) 36 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr());
|
X86ELFDynamic.h | 26 void reserveTargetEntries(const ELFFileFormat& pFormat); 27 void applyTargetEntries(const ELFFileFormat& pFormat);
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/inc/ |
VideoEditorAudioEncoder.h | 30 M4ENCODER_AudioFormat* pFormat, 34 M4ENCODER_AudioFormat* pFormat, 38 M4ENCODER_AudioFormat* pFormat,
|
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/compile/mclinker/lib/Target/ |
ELFDynamic.cpp | 99 void ELFDynamic::reserveEntries(const ELFFileFormat& pFormat) 108 if (pFormat.hasInit()) 111 if (pFormat.hasFini()) 114 if (pFormat.hasInitArray()) { 119 if (pFormat.hasFiniArray()) { 124 if (pFormat.hasHashTab()) 128 if (pFormat.hasGNUHashTab()) 131 if (pFormat.hasDynSymTab()) { 136 if (pFormat.hasDynStrTab()) { 141 reserveTargetEntries(pFormat); // DT_PLTGO [all...] |
/hardware/libhardware_legacy/audio/ |
AudioPolicyCompatClient.cpp | 41 audio_format_t *pFormat, 48 pFormat, pChannelMask, pLatencyMs, 76 audio_format_t *pFormat, 80 pSamplingRate, pFormat, pChannelMask);
|
AudioHardwareGeneric.cpp | 196 int *pFormat, 200 int lFormat = pFormat ? *pFormat : 0; 213 if (pFormat) *pFormat = format(); 219 if (pFormat) *pFormat = lFormat; 315 int *pFormat, 320 if (pFormat == 0 || pChannels == 0 || pRate == 0) return BAD_VALUE; 321 ALOGV("AudioStreamInGeneric::set(%p, %d, %d, %d, %u)", hw, fd, *pFormat, *pChannels, *pRate) [all...] |
AudioPolicyCompatClient.h | 43 audio_format_t *pFormat, 56 audio_format_t *pFormat,
|
A2dpAudioInterface.cpp | 236 uint32_t device, int *pFormat, uint32_t *pChannels, uint32_t *pRate) 238 int lFormat = pFormat ? *pFormat : 0; 253 if (pFormat) *pFormat = format(); 259 if (pFormat) *pFormat = lFormat;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pprint.py | 127 for function in "pformat", "saferepr": 152 self.assertEqual(pprint.pformat(type(o)), exp) 157 self.assertEqual(pprint.pformat(type(o)), exp) 162 self.assertEqual(pprint.pformat(type(o)), exp) 168 self.assertEqual(pprint.pformat(type(o), indent=4), exp) 179 self.assertEqual(pprint.pformat(o, indent=4, width=42), expected) 184 # Before the change, on 32-bit Windows pformat() gave order 187 self.assertEqual(pprint.pformat(d), "{'a': 1, 'b': 1, 'c': 1}") 188 self.assertEqual(pprint.pformat([d, d]), 196 self.assertEqual(pprint.pformat({"xy\tab\n": (3,), 5: [[]], (): {}}) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pprint.py | 127 for function in "pformat", "saferepr": 152 self.assertEqual(pprint.pformat(type(o)), exp) 157 self.assertEqual(pprint.pformat(type(o)), exp) 162 self.assertEqual(pprint.pformat(type(o)), exp) 168 self.assertEqual(pprint.pformat(type(o), indent=4), exp) 179 self.assertEqual(pprint.pformat(o, indent=4, width=42), expected) 184 # Before the change, on 32-bit Windows pformat() gave order 187 self.assertEqual(pprint.pformat(d), "{'a': 1, 'b': 1, 'c': 1}") 188 self.assertEqual(pprint.pformat([d, d]), 196 self.assertEqual(pprint.pformat({"xy\tab\n": (3,), 5: [[]], (): {}}) [all...] |
/frameworks/wilhelm/tests/sandbox/ |
xa.c | 90 dataSrc.pFormat = &fmtMime; 96 audioSnk.pFormat = NULL; 103 imageVideoSink.pFormat = NULL;
|
/cts/tests/tests/nativemedia/sl/src/ |
SLObjectCreationTest.cpp | 130 audioSink.pFormat = NULL; 140 audioSource.pFormat = &formatMimeSrc; 152 audioSource.pFormat = &formatMimeSrc; 166 audioSink.pFormat = (void *) &formatPcmSnk; 217 audioSource.pFormat = &pcm; 233 audioSource.pFormat = (void *)&formatMimeSrc; 271 audioSource.pFormat = (void *) &formatMimeSrc; 288 audioSource.pFormat = NULL;
|
/frameworks/wilhelm/src/ |
data.h | 47 DataFormat *pFormat; 57 #define SL_DATAFORMAT_NULL 0 // application specified a NULL value for pFormat
|
data.c | 336 static SLresult checkDataFormat(const char *name, void *pFormat, DataFormat *pDataFormat, 343 if (NULL == pFormat) { 346 formatType = *(SLuint32 *)pFormat; 350 pDataFormat->mPCM = *(SLDataFormat_PCM *)pFormat; 482 pDataFormat->mMIME = *(SLDataFormat_MIME *)pFormat; 503 pDataFormat->mRawImage = *(XADataFormat_RawImage *)pFormat; 745 pDataLocatorFormat->u.mSource.pFormat = &pDataLocatorFormat->mFormat; 773 // Per the spec, the pFormat field is ignored in some cases 775 myDataSrc.pFormat = NULL; 803 result = checkDataFormat(name, myDataSrc.pFormat, &pDataLocatorFormat->mFormat [all...] |
/frameworks/compile/mclinker/include/mcld/Target/ |
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;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pprint.py | 25 pformat() 45 __all__ = ["pprint","pformat","isreadable","isrecursive","saferepr", 61 def pformat(object, indent=1, width=80, depth=None): function 63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object) 120 def pformat(self, object): member in class:PrettyPrinter 347 p.pformat(object) 350 print "pformat:", t3 - t2
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pprint.py | 25 pformat() 45 __all__ = ["pprint","pformat","isreadable","isrecursive","saferepr", 61 def pformat(object, indent=1, width=80, depth=None): function 63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object) 120 def pformat(self, object): member in class:PrettyPrinter 347 p.pformat(object) 350 print "pformat:", t3 - t2
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/ |
VideoEditorAudioEncoder.cpp | 673 M4ENCODER_AudioFormat format, M4ENCODER_AudioFormat* pFormat, 678 VIDEOEDITOR_CHECK(M4OSA_NULL != pFormat, M4ERR_PARAMETER); 681 ALOGV("VideoEditorAudioEncoder_getInterface 0x%x 0x%x",pFormat, 686 *pFormat = format; 730 M4ENCODER_AudioFormat* pFormat, 733 M4ENCODER_kAAC, pFormat, pEncoderInterface); 737 M4ENCODER_AudioFormat* pFormat, 741 M4ENCODER_kAMRNB, pFormat, pEncoderInterface); 745 M4ENCODER_AudioFormat* pFormat, 750 M4ENCODER_kMP3, pFormat, pEncoderInterface) [all...] |