Home
last modified time | relevance | path

Searched defs:NodeBase (Results 1 – 19 of 19) sorted by relevance

/aosp_15_r20/external/llvm/lib/Target/Hexagon/
H A DRDFGraph.h413 struct NodeBase { struct
427 void append(NodeAddr<NodeBase*> NA); argument
429 void init() { memset(this, 0, sizeof *this); } in init()
430 void setNext(NodeId N) { Next = N; } in setNext()
434 uint16_t Reserved;
435 NodeId Next; // Id of the next node in the circular chain.
439 struct Def_struct {
442 struct PhiU_struct {
445 struct Code_struct {
470 static_assert(sizeof(NodeBase) <= NodeAllocator::NodeMemSize, argument
H A DRDFGraph.cpp498 static auto True = [] (NodeAddr<NodeBase*>) -> bool { return true; }; in members()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DRDFGraph.h449 struct NodeBase { struct
464 void append(NodeAddr<NodeBase*> NA); argument
467 void init() { memset(this, 0, sizeof *this); } in init()
469 void setNext(NodeId N) { Next = N; } in setNext()
473 uint16_t Reserved;
474 NodeId Next; // Id of the next node in the circular chain.
478 struct Def_struct {
481 struct PhiU_struct {
484 struct Code_struct {
509 static_assert(sizeof(NodeBase) <= NodeAllocator::NodeMemSize, argument
H A DRDFGraph.cpp528 static auto True = [] (NodeAddr<NodeBase*>) -> bool { return true; }; in members()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/
H A DRDFGraph.h450 struct NodeBase { struct
465 void append(NodeAddr<NodeBase*> NA); argument
468 void init() { memset(this, 0, sizeof *this); } in init()
470 void setNext(NodeId N) { Next = N; } in setNext()
474 uint16_t Reserved;
475 NodeId Next; // Id of the next node in the circular chain.
479 struct Def_struct {
482 struct PhiU_struct {
485 struct Code_struct {
510 static_assert(sizeof(NodeBase) <= NodeAllocator::NodeMemSize, argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/CodeGen/
DRDFGraph.h487 struct NodeBase { struct
492 uint16_t getType() const { return NodeAttrs::type(Attrs); } in getType()
493 uint16_t getKind() const { return NodeAttrs::kind(Attrs); } in getKind()
494 uint16_t getFlags() const { return NodeAttrs::flags(Attrs); } in getFlags()
495 NodeId getNext() const { return Next; } in getNext()
497 uint16_t getAttrs() const { return Attrs; } in getAttrs()
498 void setAttrs(uint16_t A) { Attrs = A; } in setAttrs()
499 void setFlags(uint16_t F) { setAttrs(NodeAttrs::set_flags(getAttrs(), F)); } in setFlags()
505 void init() { memset(this, 0, sizeof *this); } in init()
507 void setNext(NodeId N) { Next = N; } in setNext()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/CodeGen/
DRDFGraph.h487 struct NodeBase { struct
492 uint16_t getType() const { return NodeAttrs::type(Attrs); } in getType()
493 uint16_t getKind() const { return NodeAttrs::kind(Attrs); } in getKind()
494 uint16_t getFlags() const { return NodeAttrs::flags(Attrs); } in getFlags()
495 NodeId getNext() const { return Next; } in getNext()
497 uint16_t getAttrs() const { return Attrs; } in getAttrs()
498 void setAttrs(uint16_t A) { Attrs = A; } in setAttrs()
499 void setFlags(uint16_t F) { setAttrs(NodeAttrs::set_flags(getAttrs(), F)); } in setFlags()
505 void init() { memset(this, 0, sizeof *this); } in init()
507 void setNext(NodeId N) { Next = N; } in setNext()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/CodeGen/
DRDFGraph.h487 struct NodeBase { struct
492 uint16_t getType() const { return NodeAttrs::type(Attrs); } in getType()
493 uint16_t getKind() const { return NodeAttrs::kind(Attrs); } in getKind()
494 uint16_t getFlags() const { return NodeAttrs::flags(Attrs); } in getFlags()
495 NodeId getNext() const { return Next; } in getNext()
497 uint16_t getAttrs() const { return Attrs; } in getAttrs()
498 void setAttrs(uint16_t A) { Attrs = A; } in setAttrs()
499 void setFlags(uint16_t F) { setAttrs(NodeAttrs::set_flags(getAttrs(), F)); } in setFlags()
505 void init() { memset(this, 0, sizeof *this); } in init()
507 void setNext(NodeId N) { Next = N; } in setNext()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/CodeGen/
DRDFGraph.h487 struct NodeBase { struct
492 uint16_t getType() const { return NodeAttrs::type(Attrs); } in getType()
493 uint16_t getKind() const { return NodeAttrs::kind(Attrs); } in getKind()
494 uint16_t getFlags() const { return NodeAttrs::flags(Attrs); } in getFlags()
495 NodeId getNext() const { return Next; } in getNext()
497 uint16_t getAttrs() const { return Attrs; } in getAttrs()
498 void setAttrs(uint16_t A) { Attrs = A; } in setAttrs()
499 void setFlags(uint16_t F) { setAttrs(NodeAttrs::set_flags(getAttrs(), F)); } in setFlags()
505 void init() { memset(this, 0, sizeof *this); } in init()
507 void setNext(NodeId N) { Next = N; } in setNext()
[all …]
/aosp_15_r20/external/pytorch/torch/csrc/fx/
H A Dnode.cpp10 struct NodeBase { struct
12 NodeBase* _prev; argument
13 NodeBase* _next; argument
/aosp_15_r20/frameworks/compile/mclinker/include/mcld/ADT/
DTreeBase.h26 NodeBase() : left(NULL), right(NULL) {} in NodeBase() function
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
H A DRegexLookup.java772 private static class NodeBase<T> { class in RegexLookup
777 public NodeBase(Finder finder, T value) { in NodeBase() method in RegexLookup.NodeBase
/aosp_15_r20/external/pytorch/torch/utils/tensorboard/
H A D_pytorch_graph.py36 class NodeBase: class
/aosp_15_r20/external/libchrome/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dast.py13 class NodeBase(object): class
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
H A DRDFGraph.cpp526 static auto True = [] (NodeAddr<NodeBase*>) -> bool { return true; }; in members()
/aosp_15_r20/external/angle/third_party/r8/d8/lib/
HDr8.jarresources/new_api_database.ser LICENSE META-INF/MANIFEST.MF META-INF/services/ ...
/aosp_15_r20/external/angle/third_party/r8/cipd/lib/
HDr8.jarresources/new_api_database.ser LICENSE META-INF/services/com.android.tools.r8 ...
/aosp_15_r20/external/angle/third_party/r8/lib/
HDr8.jarresources/new_api_database.ser LICENSE META-INF/MANIFEST.MF META-INF/services/ ...
/aosp_15_r20/external/angle/third_party/r8/d8/cipd/lib/
HDr8.jarresources/new_api_database.ser LICENSE META-INF/services/com.android.tools.r8 ...