HomeSort by relevance Sort by last modified time
    Searched defs:FrameSize (Results 1 - 22 of 22) sorted by null

  /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/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);
  /art/compiler/jni/quick/mips64/
calling_convention_mips64.cc 151 size_t Mips64JniCallingConvention::FrameSize() {
  /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...]
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 258 size_t ArmJniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 207 size_t Arm64JniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 185 size_t MipsJniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 181 size_t X86JniCallingConvention::FrameSize() {
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 149 size_t X86_64JniCallingConvention::FrameSize() {
  /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/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/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/PowerPC/
PPCRegisterInfo.cpp 316 /// addi R0, SP, \#frameSize ; get the address of the previous frame
339 unsigned FrameSize = MFI->getStackSize();
348 // Determine the previous frame's address. If FrameSize can't be
358 if (MaxAlign < TargetAlign && isInt<16>(FrameSize)) {
361 .addImm(FrameSize);
    [all...]
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...]
  /external/webrtc/webrtc/sound/
alsasoundsystem.cc 610 inline size_t AlsaSoundSystem::FrameSize(const OpenParams &params) {
659 FrameSize(params);
688 FrameSize(params),
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp     [all...]
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...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
video.h 566 ULONG FrameSize;
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ks.h     [all...]

Completed in 1386 milliseconds