HomeSort by relevance Sort by last modified time
    Searched refs:FrameSize (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
jitter_estimator_tests.cc 54 uint32_t FrameSize() { return 1000 + Delay(); }
68 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
70 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
85 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
87 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
102 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
104 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
119 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
121 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
134 regular_estimator_.UpdateEstimate(low_gen.Delay(), low_gen.FrameSize());
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 47 size_t FrameSize; // Size of the frame in bytes.
57 // The resulting FrameSize should be multiple of MinHeaderSize.
  /external/llvm/include/llvm/CodeGen/
GCMetadata.h 94 uint64_t FrameSize;
141 uint64_t getFrameSize() const { return FrameSize; }
142 void setFrameSize(uint64_t S) { FrameSize = S; }
  /external/llvm/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 83 /// uint16_t FrameSize;
90 /// (FrameSize and LiveOffsets would overflow). FrameTablePrinter will abort if
126 uint64_t FrameSize = FI.getFrameSize();
127 if (FrameSize >= 1<<16) {
131 "Frame size " + Twine(FrameSize) + ">= 65536.\n"
149 AP.EmitInt16(FrameSize);
  /external/llvm/lib/Transforms/Utils/
ASanStackFrameLayout.cpp 109 Layout->FrameSize = Offset;
110 assert((Layout->FrameSize % MinHeaderSize) == 0);
111 assert(Layout->FrameSize / Granularity == Layout->ShadowBytes.size());
  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.h 69 // Adjust SP by FrameSize bytes. Save RA, S0, S1
70 void makeFrame(unsigned SP, int64_t FrameSize, MachineBasicBlock &MBB,
73 // Adjust SP by FrameSize bytes. Restore RA, S0, S1
74 void restoreFrame(unsigned SP, int64_t FrameSize, MachineBasicBlock &MBB,
Mips16InstrInfo.cpp 196 // Adjust SP by FrameSize bytes. Save RA, S0, S1
197 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize,
206 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16;
212 if (isUInt<11>(FrameSize))
213 MIB.addImm(FrameSize);
217 int64_t Remainder = FrameSize - Base;
226 // Adjust SP by FrameSize bytes. Restore RA, S0, S1
227 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize,
236 unsigned Opc = ((FrameSize <= 128) && !SaveS2)?
239 if (!isUInt<11>(FrameSize)) {
    [all...]
  /art/compiler/jni/quick/arm/
calling_convention_arm.h 59 size_t FrameSize() OVERRIDE;
calling_convention_arm.cc 144 size_t ArmJniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.h 58 size_t FrameSize() OVERRIDE;
  /art/compiler/jni/quick/mips/
calling_convention_mips.h 59 size_t FrameSize() OVERRIDE;
calling_convention_mips.cc 148 size_t MipsJniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/x86/
calling_convention_x86.h 57 size_t FrameSize() OVERRIDE;
calling_convention_x86.cc 125 size_t X86JniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.h 57 size_t FrameSize() OVERRIDE;
  /external/chromium_org/third_party/webrtc/sound/
alsasoundsystem.h 65 static size_t FrameSize(const OpenParams &params);
alsasoundsystem.cc 609 inline size_t AlsaSoundSystem::FrameSize(const OpenParams &params) {
661 FrameSize(params);
691 FrameSize(params),
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 50 unsigned FrameSize = MFI->getStackSize();
66 FrameSize += maxCallFrameSize;
69 FrameSize = RoundUpToAlignment(FrameSize, TargetAlign);
72 MFI->setStackSize(FrameSize);
HexagonRegisterInfo.cpp 142 const unsigned FrameSize = MFI.getStackSize();
145 TII.isValidOffset(MI.getOpcode(), (FrameSize+Offset)) &&
150 MI.getOperand(FIOperandNum + 1).ChangeToImmediate(FrameSize+Offset);
232 TII.isValidOffset(MI.getOpcode(), (FrameSize+Offset))) {
235 MI.getOperand(FIOperandNum+1).ChangeToImmediate(FrameSize+Offset);
HexagonVLIWPacketizer.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 57 uint64_t FrameSize = StackSize - 2;
58 NumBytes = FrameSize - MSP430FI->getCalleeSavedFrameSize();
131 uint64_t FrameSize = StackSize - 2;
132 NumBytes = FrameSize - CSSize;
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 366 unsigned FrameSize =
387 FrameSize == 0) &&
388 FrameSize <= 224 && // Fits in red zone.
416 FrameSize += maxCallFrameSize;
419 FrameSize = (FrameSize + AlignMask) & ~AlignMask;
423 MFI->setStackSize(FrameSize);
425 return FrameSize;
532 unsigned FrameSize = determineFrameLayout(MF);
533 int NegFrameSize = -FrameSize;
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 100 int OffsetFromTop, int &Adjusted, int FrameSize,
103 assert(Adjusted < FrameSize && "OffsetFromTop is beyond FrameSize");
104 int remaining = FrameSize - Adjusted;
126 assert(RemainingAdj && "OffsetFromTop is beyond FrameSize");
245 // We will adjust the SP in stages towards the final FrameSize.
247 const int FrameSize = MFI->getStackSize() / 4;
251 bool UseENTSP = saveLR && FrameSize
260 Adjusted = (FrameSize > MaxImmU16) ? MaxImmU16 : FrameSize;
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 69 TEST_F(QuickTrampolineEntrypointsTest, FrameSize) {
  /external/llvm/lib/CodeGen/
GCMetadata.cpp 51 : F(F), S(S), FrameSize(~0LL) {}

Completed in 314 milliseconds

1 2