Searched defs:Save (Results 1 - 25 of 40) sorted by relevance

12

/external/libbrillo/brillo/
H A Dkey_value_store.cc81 bool KeyValueStore::Save(const base::FilePath& path) const { function in class:brillo::KeyValueStore
/external/tensorflow/tensorflow/core/distributed_runtime/
H A Dworker_cache_logger.cc71 void WorkerCacheLogger::Save(const string& device, int64 step_id, function in class:tensorflow::WorkerCacheLogger
78 sl->collector->Save(device, ns);
128 Save(dst_device, step_id, ns);
/external/webrtc/webrtc/base/
H A Doptionsfile.cc64 bool OptionsFile::Save() { function in class:rtc::OptionsFile
H A Dwin32regkey.cc308 HRESULT RegKey::Save(const wchar_t* full_key_name, const wchar_t* file_name) { function in class:rtc::RegKey
/external/opencv/otherlibs/highgui/
H A Dimage.cpp194 bool CvvImage::Save( const char* filename ) function in class:CvvImage
/external/pdfium/core/fxge/skia/
H A Dfx_skia_device_unittest.cpp20 enum class Save { kNo, kYes }; class in struct:__anon17844::State
25 Save m_save;
58 if (state.m_save == State::Save::kYes)
69 if (state.m_save == State::Save::kYes)
92 if (state.m_save == State::Save::kYes)
149 Harness(&CommonTest, {State::Change::kNo, State::Save::kYes,
152 {State::Change::kNo, State::Save::kYes, State::Clip::kDifferentPath,
154 Harness(&CommonTest, {State::Change::kNo, State::Save::kYes, State::Clip::kNo,
156 Harness(&CommonTest, {State::Change::kYes, State::Save::kNo, State::Clip::kNo,
158 Harness(&CommonTest, {State::Change::kNo, State::Save
[all...]
/external/llvm/lib/CodeGen/
H A DShrinkWrap.cpp12 // The safe point for the prologue (resp. epilogue) is called Save
16 // between 2) two executions of the Save (resp. Restore) point there is an
17 // execution of the Restore (resp. Save) point.
21 // Save
25 // Indeed, the execution looks like Save -> Restore -> Save -> Restore ...
28 // Save
35 // Indeed, the execution looks like Save -> Save -> ... -> Restore -> Restore.
55 // For property #1 for Save
107 MachineBasicBlock *Save; member in class:__anon13998::ShrinkWrap
[all...]
/external/python/cpython2/Lib/idlelib/
H A DconfigHandler.py125 def Save(self): member in class:IdleUserConfParser
738 self.userCfg[key].Save()
/external/python/cpython3/Lib/idlelib/
H A Dconfig.py130 def Save(self): member in class:IdleUserConfParser
764 self.userCfg[key].Save()
/external/swiftshader/third_party/LLVM/lib/Archive/
H A DArchiveReader.cpp270 const char* Save = At; local
317 firstFileOffset = Save - base;
/external/v8/src/arm/
H A Dcode-stubs-arm.h142 void Save(MacroAssembler* masm) { function in class:v8::internal::RecordWriteStub::RegisterAllocation
/external/v8/src/mips/
H A Dcode-stubs-mips.h173 void Save(MacroAssembler* masm) { function in class:v8::internal::RecordWriteStub::RegisterAllocation
/external/v8/src/mips64/
H A Dcode-stubs-mips64.h174 void Save(MacroAssembler* masm) { function in class:v8::internal::RecordWriteStub::RegisterAllocation
/external/v8/src/ppc/
H A Dcode-stubs-ppc.h160 void Save(MacroAssembler* masm) { function in class:v8::internal::RecordWriteStub::RegisterAllocation
177 // Save all volatile FP registers except d0.
/external/v8/tools/
H A Dpresubmit.py125 def Save(self): member in class:FileContentsCache
276 good_files_cache.Save()
/external/llvm/lib/Target/AMDGPU/
H A DSILowerControlFlow.cpp33 /// %SGPR0 = S_AND_SAVEEXEC_B64 %VCC // Save and update the exec mask
550 unsigned Save = SaveOp->getReg(); local
553 assert(AMDGPU::SReg_64RegClass.contains(Save) &&
556 // Save the EXEC mask
557 BuildMI(MBB, I, DL, TII->get(AMDGPU::S_MOV_B64), Save)
577 *RemainderBB, Save, *Idx);
583 .addReg(Save);
/external/tensorflow/tensorflow/core/common_runtime/
H A Dstep_stats_collector.cc258 void StepStatsCollector::Save(const string& device, NodeExecStats* nt) { function in class:tensorflow::StepStatsCollector
259 Save(device, new NodeExecStatsWrapper(nt));
262 void StepStatsCollector::Save(const string& device, function in class:tensorflow::StepStatsCollector
265 VLOG(1) << "Save dev " << device << " nt " << stats->stats();
/external/tensorflow/tensorflow/core/framework/
H A Ddataset.h347 virtual Status Save(OpKernelContext* ctx, IteratorStateWriter* writer) { function in class:tensorflow::IteratorBase
418 virtual Status Save(OpKernelContext* ctx, IteratorStateWriter* writer) const { function in class:tensorflow::DatasetBase
419 return errors::Unimplemented("DatasetBase::Save");
456 Status Save(OpKernelContext* ctx,
529 Status Save(OpKernelContext* ctx, IteratorStateWriter* writer) final {
530 TF_RETURN_IF_ERROR(dataset()->Save(ctx, writer));
531 return IteratorBase::Save(ctx, writer);
/external/v8/src/arm64/
H A Dcode-stubs-arm64.h207 void Save(MacroAssembler* masm) { function in class:v8::internal::RecordWriteStub::RegisterAllocation
/external/v8/src/ia32/
H A Dcode-stubs-ia32.h207 void Save(MacroAssembler* masm) { function in class:v8::internal::RecordWriteStub::RegisterAllocation
/external/v8/src/s390/
H A Dcode-stubs-s390.h188 void Save(MacroAssembler* masm) { function in class:v8::internal::RecordWriteStub::RegisterAllocation
204 // Save all volatile FP registers except d0.
/external/v8/src/x64/
H A Dcode-stubs-x64.h200 void Save(MacroAssembler* masm) { function in class:v8::internal::RecordWriteStub::RegisterAllocation
/external/v8/src/x87/
H A Dcode-stubs-x87.h204 void Save(MacroAssembler* masm) { function in class:v8::internal::RecordWriteStub::RegisterAllocation
/external/python/cpython3/PC/
H A Dpyshellext.cpp472 STDMETHODIMP Save(LPCOLESTR pszFileName, BOOL fRemember) { function in class:PyShellExt
/external/skia/src/core/
H A DSkRecordDraw.cpp78 DRAW(Save, save());
148 // have intrinsic bounds. What is the bounds of a Save or a Translate?
152 // the bounds of a Save, a Translate, a Restore, etc. are the union of the
154 // Save/Restore block, the bounds of the Save, the Restore, and any other
158 // To implement this, we keep a stack of active Save blocks. As we consume ops
159 // inside the Save/Restore block, drawing ops are unioned with the bounds of
175 // sure all ops in those Save blocks have their bounds calculated.
180 // Any control ops not part of any Save/Restore block draw everywhere.
232 int controlOps; // Number of control ops in this Save bloc
291 trackBounds(const Save&) argument
[all...]

Completed in 9558 milliseconds

12