/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | loop_optimizer_test.cc | 120 ASSERT_EQ(frames.Frames(*invariant_add_node_def).size(), 1); in TEST_F() 121 EXPECT_EQ(frames.Frames(*invariant_add_node_def).back(), 0); in TEST_F() 125 ASSERT_EQ(frames.Frames(*variant_add_node_def).size(), 1); in TEST_F() 126 EXPECT_EQ(frames.Frames(*variant_add_node_def).back(), 0); in TEST_F() 140 ASSERT_EQ(frames.Frames(*invariant_add_node_def).size(), 0); in TEST_F() 144 ASSERT_EQ(frames.Frames(*variant_add_node_def).size(), 1); in TEST_F() 145 EXPECT_EQ(frames.Frames(*variant_add_node_def).back(), 0); in TEST_F() 187 ASSERT_EQ(frames.Frames(*invariant_add_node_def).size(), 1); in TEST_F() 188 EXPECT_EQ(frames.Frames(*invariant_add_node_def).back(), 0); in TEST_F() 192 ASSERT_EQ(frames.Frames(*const_node_node_def).size(), 1); in TEST_F() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | DebugFrameDataSubsection.h | 31 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); } in begin() 32 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); } in end() 38 FixedStreamArray<FrameData> Frames; variable 54 void setFrames(ArrayRef<FrameData> Frames); 58 std::vector<FrameData> Frames; variable
|
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
D | DebugFrameDataSubsection.h | 31 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); } in begin() 32 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); } in end() 38 FixedStreamArray<FrameData> Frames; variable 54 void setFrames(ArrayRef<FrameData> Frames); 58 std::vector<FrameData> Frames; variable
|
/external/llvm/include/llvm/DebugInfo/ |
D | DIContext.h | 51 SmallVector<DILineInfo, 4> Frames; variable 55 assert(Index < Frames.size()); in getFrame() 56 return Frames[Index]; in getFrame() 59 assert(Index < Frames.size()); in getMutableFrame() 60 return &Frames[Index]; in getMutableFrame() 63 return Frames.size(); in getNumberOfFrames() 66 Frames.push_back(Frame); in addFrame()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | DebugFrameDataSubsection.cpp | 26 if (auto EC = Reader.readArray(Frames, Count)) in initialize() 37 uint32_t Size = sizeof(FrameData) * Frames.size(); in calculateSerializedSize() 49 std::vector<FrameData> SortedFrames(Frames.begin(), Frames.end()); in commit() 60 Frames.push_back(Frame); in addFrameData()
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | DebugFrameDataSubsection.cpp | 26 if (auto EC = Reader.readArray(Frames, Count)) in initialize() 37 uint32_t Size = sizeof(FrameData) * Frames.size(); in calculateSerializedSize() 49 std::vector<FrameData> SortedFrames(Frames.begin(), Frames.end()); in commit() 60 Frames.push_back(Frame); in addFrameData()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/ |
D | DIContext.h | 82 SmallVector<DILineInfo, 4> Frames; variable 88 assert(Index < Frames.size()); in getFrame() 89 return Frames[Index]; in getFrame() 93 assert(Index < Frames.size()); in getMutableFrame() 94 return &Frames[Index]; in getMutableFrame() 98 return Frames.size(); in getNumberOfFrames() 102 Frames.push_back(Frame); in addFrame() 106 Frames.resize(i); in resize()
|
/external/llvm-project/llvm/include/llvm/DebugInfo/ |
D | DIContext.h | 89 SmallVector<DILineInfo, 4> Frames; variable 95 assert(Index < Frames.size()); in getFrame() 96 return Frames[Index]; in getFrame() 100 assert(Index < Frames.size()); in getMutableFrame() 101 return &Frames[Index]; in getMutableFrame() 105 return Frames.size(); in getNumberOfFrames() 109 Frames.push_back(Frame); in addFrame() 113 Frames.resize(i); in resize()
|
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeFunctionSymbol.cpp | 107 std::vector<SymIndexId> Frames; in findInlineFramesByVA() local 124 Frames.insert(Frames.begin(), Id); in findInlineFramesByVA() 142 return std::make_unique<NativeEnumSymbols>(Session, std::move(Frames)); in findInlineFramesByVA()
|
/external/llvm-project/llvm/lib/DebugInfo/PDB/ |
D | PDBContext.cpp | 99 auto Frames = ParentFunc->findInlineFramesByVA(Address.Address); in getInliningInfoForAddress() local 100 if (!Frames || Frames->getChildCount() == 0) { in getInliningInfoForAddress() 105 while (auto Frame = Frames->getNext()) { in getInliningInfoForAddress()
|
/external/llvm-project/lldb/examples/interposing/darwin/fd_interposing/ |
D | FDInterposing.cpp | 136 typedef std::vector<void *> Frames; typedef 138 typedef std::vector<void *> Frames; typedef 151 const Frames &frames) in FDEvent() 161 Frames &GetFrames() { return m_frames; } in GetFrames() 163 const Frames &GetFrames() const { return m_frames; } in GetFrames() 180 Frames m_frames; 287 static inline size_t get_backtrace(Frames &frame_buffer, in get_backtrace() 441 Frames frames; in backtrace_log() 461 Frames frames; in backtrace_error() 470 Frames frames; in save_backtrace()
|
/external/tensorflow/tensorflow/core/grappler/utils/ |
D | frame_test.cc | 124 std::vector<int> node_frames = frame_view.Frames(node); in TYPED_TEST() 146 std::vector<int> node_frames = frame_view.Frames(node); in TYPED_TEST() 168 std::vector<int> node_frames = frame_view.Frames(node); in TYPED_TEST() 196 std::vector<int> node_frames = frame_view.Frames(node); in TYPED_TEST()
|
D | frame.cc | 160 const std::vector<int>& FrameView::Frames(const NodeDef& node) const { in Frames() function in tensorflow::grappler::FrameView 173 return !Frames(node).empty(); in IsInFrame()
|
D | frame.h | 52 const std::vector<int>& Frames(const NodeDef& node) const;
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | traceback.cc | 43 for (const Frame& frame : Frames()) { in ToString() 49 std::vector<Traceback::Frame> Traceback::Frames() const { in Frames() function in xla::Traceback
|
D | traceback.h | 58 std::vector<Frame> Frames() const;
|
D | py_traceback.cc | 56 traceback.def_property_readonly("frames", &Traceback::Frames); in BuildTracebackSubmodule()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLDebugSections.cpp | 217 const DebugFrameDataSubsectionRef &Frames); 219 std::vector<YAMLFrameData> Frames; member 362 IO.mapRequired("Frames", Frames); in map() 514 for (const auto &YF : Frames) { in toCodeViewSubsection() 710 const DebugFrameDataSubsectionRef &Frames) { in fromCodeViewSubsection() argument 712 for (const auto &F : Frames) { in fromCodeViewSubsection() 731 Result->Frames.push_back(YF); in fromCodeViewSubsection() 872 DebugFrameDataSubsectionRef &Frames, const StringsAndChecksumsRef &State) { in visitFrameData() argument 874 YAMLFrameDataSubsection::fromCodeViewSubsection(State.strings(), Frames); in visitFrameData()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLDebugSections.cpp | 217 const DebugFrameDataSubsectionRef &Frames); 219 std::vector<YAMLFrameData> Frames; member 362 IO.mapRequired("Frames", Frames); in map() 514 for (const auto &YF : Frames) { in toCodeViewSubsection() 710 const DebugFrameDataSubsectionRef &Frames) { in fromCodeViewSubsection() argument 712 for (const auto &F : Frames) { in fromCodeViewSubsection() 731 Result->Frames.push_back(YF); in fromCodeViewSubsection() 872 DebugFrameDataSubsectionRef &Frames, const StringsAndChecksumsRef &State) { in visitFrameData() argument 874 YAMLFrameDataSubsection::fromCodeViewSubsection(State.strings(), Frames); in visitFrameData()
|
/external/ImageMagick/coders/ |
D | mat.c | 890 unsigned Frames; in ReadMATImage() local 975 Frames = 1; in ReadMATImage() 1055 Frames = ReadBlobXXXLong(image2); in ReadMATImage() 1056 if (Frames == 0) in ReadMATImage() 1064 if (AcquireMagickResource(ListLengthResource,Frames) == MagickFalse) in ReadMATImage() 1422 if(--Frames>0) in ReadMATImage()
|
/external/skia/experimental/xps_to_png/ |
D | xps_to_png.cs | 58 encoder.Frames.Add( in convert()
|
/external/skqp/experimental/xps_to_png/ |
D | xps_to_png.cs | 58 encoder.Frames.Add( in convert()
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | ThreadReferenceImpl.java | 403 JDWP.ThreadReference.Frames.Frame[] jdwpFrames in privateFrames() 404 = JDWP.ThreadReference.Frames. in privateFrames()
|
/external/autotest/docs/ |
D | wifi-basics-codelab.md | 269 operations of 802.11 connections. Class 1 frames are called *Management Frames* 291 *Control Frames*, and their purpose is to allow authenticated devices to 299 *Data Frames* and they make up all of the actual bulk of wireless 368 ### Management Frames (Class 1) 385 ### Control Frames (Class 2) 398 ### Data Frames (Class 3)
|
/external/pigweed/pw_hdlc/ |
D | docs.rst | 38 Frames section in Protocol Description 77 Frames may be received in multiple parts, so we need to store the received data
|