HomeSort by relevance Sort by last modified time
    Searched full:pformat (Results 1 - 25 of 200) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/compile/mclinker/lib/Target/Mips/
MipsELFDynamic.cpp 26 void MipsELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) {
27 if (pFormat.hasGOT())
37 if (pFormat.hasGOTPLT())
41 void MipsELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) {
42 if (pFormat.hasGOT())
43 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr());
48 applyOne(llvm::ELF::DT_MIPS_LOCAL_GOTNO, getLocalGotNum(pFormat));
49 applyOne(llvm::ELF::DT_MIPS_SYMTABNO, getSymTabNum(pFormat));
50 applyOne(llvm::ELF::DT_MIPS_GOTSYM, getGotSym(pFormat));
52 if (pFormat.hasGOTPLT()
    [all...]
MipsELFDynamic.h 27 void reserveTargetEntries(const ELFFileFormat& pFormat);
28 void applyTargetEntries(const ELFFileFormat& pFormat);
30 size_t getSymTabNum(const ELFFileFormat& pFormat) const;
31 size_t getGotSym(const ELFFileFormat& pFormat) const;
32 size_t getLocalGotNum(const ELFFileFormat& pFormat) const;
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64ELFDynamic.cpp 24 void AArch64ELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) {
27 if (pFormat.hasGOT())
30 if (pFormat.hasGOTPLT())
35 void AArch64ELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) {
38 if (pFormat.hasGOT())
39 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr());
41 if (pFormat.hasGOTPLT())
42 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr());
AArch64ELFDynamic.h 22 void reserveTargetEntries(const ELFFileFormat& pFormat);
23 void applyTargetEntries(const ELFFileFormat& pFormat);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcndr.h 366 PFORMAT_STRING pFormat;
521 RPCRTAPI unsigned char *RPC_ENTRY NdrPointerMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
522 RPCRTAPI unsigned char *RPC_ENTRY NdrCsArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
523 RPCRTAPI unsigned char *RPC_ENTRY NdrCsTagMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
524 RPCRTAPI unsigned char *RPC_ENTRY NdrSimpleStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
525 RPCRTAPI unsigned char *RPC_ENTRY NdrConformantStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
526 RPCRTAPI unsigned char *RPC_ENTRY NdrConformantVaryingStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
527 RPCRTAPI unsigned char *RPC_ENTRY NdrComplexStructMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
528 RPCRTAPI unsigned char *RPC_ENTRY NdrFixedArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
529 RPCRTAPI unsigned char *RPC_ENTRY NdrConformantArrayMarshall(PMIDL_STUB_MESSAGE pStubMsg,unsigned char *pMemory,PFORMAT_STRING pFormat);
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMELFDynamic.cpp 23 void ARMELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) {
25 if (pFormat.hasGOT())
29 void ARMELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) {
31 if (pFormat.hasGOT())
32 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr());
ARMELFDynamic.h 22 void reserveTargetEntries(const ELFFileFormat& pFormat);
23 void applyTargetEntries(const ELFFileFormat& pFormat);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonELFDynamic.cpp 23 void HexagonELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) {
25 if (pFormat.hasGOTPLT())
29 void HexagonELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) {
31 if (pFormat.hasGOTPLT())
32 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr());
HexagonELFDynamic.h 22 void reserveTargetEntries(const ELFFileFormat& pFormat);
23 void applyTargetEntries(const ELFFileFormat& pFormat);
  /frameworks/compile/mclinker/lib/Target/X86/
X86ELFDynamic.cpp 23 void X86ELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) {
25 if (pFormat.hasGOTPLT())
29 void X86ELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) {
31 if (pFormat.hasGOTPLT())
32 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr());
X86ELFDynamic.h 22 void reserveTargetEntries(const ELFFileFormat& pFormat);
23 void applyTargetEntries(const ELFFileFormat& pFormat);
  /frameworks/compile/mclinker/lib/Target/
ELFDynamic.cpp 91 void ELFDynamic::reserveEntries(const ELFFileFormat& pFormat) {
99 if (pFormat.hasInit())
102 if (pFormat.hasFini())
105 if (pFormat.hasPreInitArray()) {
110 if (pFormat.hasInitArray()) {
115 if (pFormat.hasFiniArray()) {
120 if (pFormat.hasHashTab())
123 if (pFormat.hasGNUHashTab())
126 if (pFormat.hasDynSymTab()) {
131 if (pFormat.hasDynStrTab())
    [all...]
  /frameworks/av/services/audiopolicy/service/
AudioPolicyClientImplLegacy.cpp 68 audio_format_t *pFormat,
80 if (pSamplingRate == NULL || pFormat == NULL || pChannelMask == NULL ||
86 config.format = *pFormat;
96 *pFormat = config.format;
109 audio_format_t *pFormat,
114 return open_output((audio_module_handle_t)0, pDevices, pSamplingRate, pFormat, pChannelMask,
122 audio_format_t *pFormat,
128 return open_output(module, pDevices, pSamplingRate, pFormat, pChannelMask,
179 audio_format_t *pFormat,
188 if (pSamplingRate == NULL || pFormat == NULL || pChannelMask == NULL || pDevices == NULL)
    [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...]
  /hardware/intel/common/wrs_omxil_core/base/src/
portbase.cpp 229 const OMX_AUDIO_PORTDEFINITIONTYPE *pformat = &p->format.audio; local
230 OMX_U32 mimetype_len = strlen(pformat->cMIMEType);
235 strncpy(format->cMIMEType, pformat->cMIMEType,
238 format->pNativeRender = pformat->pNativeRender;
239 format->bFlagErrorConcealment = pformat->bFlagErrorConcealment;
240 format->eEncoding = pformat->eEncoding;
246 const OMX_VIDEO_PORTDEFINITIONTYPE *pformat = &p->format.video; local
247 OMX_U32 mimetype_len = strlen(pformat->cMIMEType);
252 strncpy(format->cMIMEType, pformat->cMIMEType,
255 format->pNativeRender = pformat->pNativeRender
279 const OMX_IMAGE_PORTDEFINITIONTYPE *pformat = &p->format.image; local
303 const OMX_OTHER_PORTDEFINITIONTYPE *pformat = &p->format.other; local
    [all...]
  /frameworks/wilhelm/tests/sandbox/
xa.c 91 dataSrc.pFormat = &fmtMime;
97 audioSnk.pFormat = NULL;
104 imageVideoSink.pFormat = NULL;
  /cts/tests/tests/nativemedia/sl/src/
SLObjectCreationTest.cpp 134 audioSink.pFormat = NULL;
144 audioSource.pFormat = &formatMimeSrc;
156 audioSource.pFormat = &formatMimeSrc;
170 audioSink.pFormat = (void *) &formatPcmSnk;
221 audioSource.pFormat = &pcm;
237 audioSource.pFormat = (void *)&formatMimeSrc;
275 audioSource.pFormat = (void *) &formatMimeSrc;
292 audioSource.pFormat = NULL;
  /frameworks/wilhelm/src/
data.h 48 DataFormat *pFormat;
58 #define SL_DATAFORMAT_NULL 0 // application specified a NULL value for pFormat
  /frameworks/compile/mclinker/include/mcld/Target/
ELFDynamic.h 137 void reserveEntries(const ELFFileFormat& pFormat);
143 void applyEntries(const ELFFileFormat& pFormat);
158 virtual void reserveTargetEntries(const ELFFileFormat& pFormat) = 0;
161 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

Completed in 2898 milliseconds

1 2 3 4 5 6 7 8