/external/webrtc/webrtc/modules/video_coding/ |
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 | 82 uint64_t FrameSize; 129 uint64_t getFrameSize() const { return FrameSize; } 130 void setFrameSize(uint64_t S) { FrameSize = S; }
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
OcamlGCPrinter.cpp | 84 /// uint16_t FrameSize; 91 /// (FrameSize and LiveOffsets would overflow). FrameTablePrinter will abort if 138 uint64_t FrameSize = FI.getFrameSize(); 139 if (FrameSize >= 1 << 16) { 144 Twine(FrameSize) + ">= 65536.\n" 164 AP.EmitInt16(FrameSize);
|
/external/llvm/lib/Transforms/Utils/ |
ASanStackFrameLayout.cpp | 105 Layout->FrameSize = Offset; 106 assert((Layout->FrameSize % MinHeaderSize) == 0); 107 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 | 195 // Adjust SP by FrameSize bytes. Save RA, S0, S1 196 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize, 205 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16; 211 if (isUInt<11>(FrameSize)) 212 MIB.addImm(FrameSize); 216 int64_t Remainder = FrameSize - Base; 225 // Adjust SP by FrameSize bytes. Restore RA, S0, S1 226 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize, 235 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? 238 if (!isUInt<11>(FrameSize)) { [all...] |
/art/compiler/jni/quick/arm/ |
calling_convention_arm.h | 59 size_t FrameSize() OVERRIDE;
|
/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;
|
/art/compiler/jni/quick/mips64/ |
calling_convention_mips64.h | 58 size_t FrameSize() OVERRIDE;
|
calling_convention_mips64.cc | 151 size_t Mips64JniCallingConvention::FrameSize() {
|
/art/compiler/jni/quick/x86/ |
calling_convention_x86.h | 60 size_t FrameSize() OVERRIDE;
|
calling_convention_x86.cc | 181 size_t X86JniCallingConvention::FrameSize() {
|
/art/compiler/jni/quick/x86_64/ |
calling_convention_x86_64.h | 56 size_t FrameSize() OVERRIDE;
|
/external/webrtc/webrtc/sound/ |
alsasoundsystem.h | 65 static size_t FrameSize(const OpenParams ¶ms);
|
alsasoundsystem.cc | 610 inline size_t AlsaSoundSystem::FrameSize(const OpenParams ¶ms) { 659 FrameSize(params); 688 FrameSize(params),
|
/external/opencv3/modules/videoio/test/ |
test_ffmpeg.cpp | 225 const static Size FrameSize; 242 writers->operator[](i) = new VideoWriter(fileName, VideoWriter::fourcc('X','V','I','D'), 25.0f, FrameSize); 254 const Size CreateVideoWriterInvoker::FrameSize(1020, 900); 287 Mat frame(CreateVideoWriterInvoker::FrameSize, CV_8UC3); 309 const Point WriteVideo_Invoker::Center(CreateVideoWriterInvoker::FrameSize.height / 2, 310 CreateVideoWriterInvoker::FrameSize.width / 2); 354 Mat reference(CreateVideoWriterInvoker::FrameSize, CV_8UC3);
|
/external/llvm/lib/Target/MSP430/ |
MSP430FrameLowering.cpp | 59 uint64_t FrameSize = StackSize - 2; 60 NumBytes = FrameSize - MSP430FI->getCalleeSavedFrameSize(); 133 uint64_t FrameSize = StackSize - 2; 134 NumBytes = FrameSize - CSSize;
|
/external/llvm/lib/Target/PowerPC/ |
PPCFrameLowering.cpp | 430 unsigned FrameSize = 451 FrameSize == 0) && 452 FrameSize <= 224 && // Fits in red zone. 480 FrameSize += maxCallFrameSize; 483 FrameSize = (FrameSize + AlignMask) & ~AlignMask; 487 MFI->setStackSize(FrameSize); 489 return FrameSize; 655 unsigned FrameSize = determineFrameLayout(MF); 656 int NegFrameSize = -FrameSize; [all...] |
/external/llvm/lib/Target/XCore/ |
XCoreFrameLowering.cpp | 101 int OffsetFromTop, int &Adjusted, int FrameSize, 104 assert(Adjusted < FrameSize && "OffsetFromTop is beyond FrameSize"); 105 int remaining = FrameSize - Adjusted; 127 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/compiler/jni/ |
jni_cfi_test.cc | 54 const int frame_size(jni_conv->FrameSize());
|
/art/runtime/entrypoints/quick/ |
quick_trampoline_entrypoints_test.cc | 81 TEST_F(QuickTrampolineEntrypointsTest, FrameSize) {
|
/external/llvm/lib/CodeGen/ |
GCMetadata.cpp | 49 : F(F), S(S), FrameSize(~0LL) {}
|
/external/llvm/lib/Target/Hexagon/ |
HexagonFrameLowering.cpp | 437 unsigned FrameSize = MFI->getStackSize(); 442 FrameSize = MaxCFA + RoundUpToAlignment(FrameSize, MaxAlign); 443 MFI->setStackSize(FrameSize); 843 unsigned FrameSize = MFI.getStackSize(); 905 // there will be no SP -= FrameSize), so the frame size should not be [all...] |