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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/CodeGen/
ShrinkWrap.cpp 13 // (resp. Restore).
16 // between 2) two executions of the Save (resp. Restore) point there is an
17 // execution of the Restore (resp. Save) point.
23 // Restore
25 // Indeed, the execution looks like Save -> Restore -> Save -> Restore ...
33 // Restore
35 // Indeed, the execution looks like Save -> Save -> ... -> Restore -> Restore.
62 // For property #1 for Restore
    [all...]
  /device/google/marlin/health/
LearnedCapacityBackupRestore.h 33 void Restore();
CycleCountBackupRestore.h 35 void Restore();
HealthService.cpp 79 ccBackupRestore.Restore();
80 lcBackupRestore.Restore();
  /device/google/wahoo/health/
LearnedCapacityBackupRestore.h 33 void Restore();
CycleCountBackupRestore.h 35 void Restore();
HealthService.cpp 71 ccBackupRestore.Restore();
72 lcBackupRestore.Restore();
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86CompilationCallback_Win64.asm 47 ; Restore all XMM arg registers.
53 ; Restore RSP.
56 ; Restore all int arg registers
63 ; Restore RBP.
  /external/skia/src/core/
SkRecordOpts.cpp 75 // Turns the logical NoOp Save and Restore in Save-Draw*-Restore patterns into actual NoOps.
79 Is<Restore>>
84 record->replace<NoOp>(end-1); // Restore
146 // Turns logical no-op Save-[non-drawing command]*-Restore patterns into actual no-ops.
148 // Greedy matches greedily, so we also have to exclude Save and Restore.
149 // Nested SaveLayers need to be excluded, or we'll match their Restore!
153 Is<Restore>,
155 Is<Restore>>
159 // The entire span between Save and Restore (inclusively) does nothing
    [all...]
  /external/skqp/src/core/
SkRecordOpts.cpp 75 // Turns the logical NoOp Save and Restore in Save-Draw*-Restore patterns into actual NoOps.
79 Is<Restore>>
84 record->replace<NoOp>(end-1); // Restore
146 // Turns logical no-op Save-[non-drawing command]*-Restore patterns into actual no-ops.
148 // Greedy matches greedily, so we also have to exclude Save and Restore.
149 // Nested SaveLayers need to be excluded, or we'll match their Restore!
153 Is<Restore>,
155 Is<Restore>>
159 // The entire span between Save and Restore (inclusively) does nothing
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
lattice_armv7.S 43 ldr r9, [sp, #32] @ Restore the inner loop counter to order_coef
45 add r0, r9, asl #1 @ Restore r0 to &ar_g_Q0[order_coef]
46 add r2, r9, asl #1 @ Restore r2 to &cth_Q15[order_coef]
47 add r3, r9, asl #1 @ Restore r3 to &sth_Q15[order_coef]
  /external/chromium-trace/catapult/devil/devil/android/
flag_changer.py 44 changer.Restore()
51 tests should call Restore() to revert the flags to their original state
100 Saves the current flags state on the stack, so a call to Restore will
118 Saves the current flags state on the stack, so a call to Restore will
131 Saves the current flags state on the stack, so a call to Restore will
150 there. Saves the current flags state on the stack, so a call to Restore
184 """Restore SELinux policy if it had been previously made permissive."""
189 def Restore(self):
198 "Mismatch between calls to Add/RemoveFlags and Restore")
  /external/skia/tests/
RecordPatternTest.cpp 18 Is<Restore>>
29 // Build up a save-clip-restore block. The pattern will match only it's complete.
36 recorder.restore();
40 REPORTER_ASSERT(r, pattern.third<Restore>() != nullptr);
49 // There will be two save-clipRect-restore blocks [0,3) and [3,6).
53 recorder.restore();
75 recorder.restore();
81 Pattern<Is<Save>, Greedy<Is<ClipRect>>, Is<Restore>> pattern;
89 recorder.restore();
96 recorder.restore();
    [all...]
RecordTest.cpp 88 APPEND(record, SkRecords::Restore);
96 assert_type<SkRecords::Restore >(r, record, 3);
RecordOptsTest.cpp 44 recorder.restore();
58 // A simple pointless pair of save/restore.
60 recorder.restore();
66 recorder.restore();
67 recorder.restore();
82 recorder.restore();
83 recorder.restore();
90 assert_type<SkRecords::Restore> (r, record, 2);
91 assert_type<SkRecords::Restore> (r, record, 3);
95 assert_type<SkRecords::Restore> (r, record, 1)
    [all...]
  /external/skqp/tests/
RecordPatternTest.cpp 18 Is<Restore>>
29 // Build up a save-clip-restore block. The pattern will match only it's complete.
36 recorder.restore();
40 REPORTER_ASSERT(r, pattern.third<Restore>() != nullptr);
49 // There will be two save-clipRect-restore blocks [0,3) and [3,6).
53 recorder.restore();
75 recorder.restore();
81 Pattern<Is<Save>, Greedy<Is<ClipRect>>, Is<Restore>> pattern;
89 recorder.restore();
96 recorder.restore();
    [all...]
RecordTest.cpp 88 APPEND(record, SkRecords::Restore);
96 assert_type<SkRecords::Restore >(r, record, 3);
RecordOptsTest.cpp 44 recorder.restore();
58 // A simple pointless pair of save/restore.
60 recorder.restore();
66 recorder.restore();
67 recorder.restore();
82 recorder.restore();
83 recorder.restore();
90 assert_type<SkRecords::Restore> (r, record, 2);
91 assert_type<SkRecords::Restore> (r, record, 3);
95 assert_type<SkRecords::Restore> (r, record, 1)
    [all...]
  /external/llvm/include/llvm/CodeGen/
RegisterScavenging.h 45 ScavengedInfo(int FI = -1) : FrameIndex(FI), Reg(0), Restore(nullptr) {}
55 const MachineInstr *Restore;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-m68hc11/
far-hc11.s 85 ldab 4,x ; (4) Restore function parameter (low)
90 pula ; (3) Restore function parameter (high)
  /art/compiler/utils/arm64/
assembler_arm64.cc 118 cfi_.Restore(DWARFReg(dst0));
125 cfi_.Restore(DWARFReg(dst0));
126 cfi_.Restore(DWARFReg(dst1));
132 cfi_.Restore(DWARFReg(dst0));
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiSetMem.S 129 # Restore mm0
130 movq -8(%ebp), %mm0 # Restore MmxSave to mm0
EfiZeroMem.S 113 # Restore mm0
114 movq -8(%ebp), %mm0 # Restore mm0 from MmxSave
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCDwarf.h 232 enum OpType { SameValue, Remember, Restore, Move, RelMove };
242 assert(Op == Remember || Op == Restore);
  /art/runtime/arch/mips64/
jni_entrypoints_mips64.S 49 .cpreturn # Restore gp from t8 in branch delay slot. gp is not used
52 ld $a0, 0($sp) # restore registers from stack
71 daddiu $sp, $sp, 80 # restore the stack

Completed in 415 milliseconds

1 2 3 4 5 6 7 8 91011>>