| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/earcut/ |
| H A D | earcut.hpp | 56 struct Node { struct in qt_mapbox::detail::Earcut 57 Node(N index, double x_, double y_) : i(index), x(x_), y(y_) {} in Node() argument 58 Node(const Node&) = delete; 59 Node& operator=(const Node&) = delete; 60 Node(Node&&) = delete; 61 Node& operator=(Node&&) = delete; 68 Node* prev = nullptr; argument 69 Node* next = nullptr; argument 75 Node* prevZ = nullptr; argument 76 Node* nextZ = nullptr; argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/earcut/0.12.4/include/mapbox/ |
| H A D | earcut.hpp | 32 struct Node { struct in mapbox::detail::Earcut 33 Node(N index, double x_, double y_) : i(index), x(x_), y(y_) {} in Node() function 34 Node(const Node&) = delete; 35 Node& operator=(const Node&) = delete; 36 Node(Node&&) = delete; 37 Node& operator=(Node&&) = delete; 44 Node* prev = nullptr; argument 45 Node* next = nullptr; argument 51 Node* prevZ = nullptr; argument 52 Node* nextZ = nullptr; argument [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/info/ |
| H A D | libc.info | 2125 Node: Top79807 2126 Node: Introduction143783 2127 Node: Getting Started145132 2128 Node: Standards and Portability146613 2129 Node: ISO C148068 2130 Node: POSIX149620 2131 Node: POSIX Safety Concepts151721 2132 Node: Unsafe Features157502 2133 Node: Conditionally Safe Features162163 2134 Node: Other Safety Remarks173677 [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/info/ |
| H A D | libc.info | 2125 Node: Top79807 2126 Node: Introduction143783 2127 Node: Getting Started145132 2128 Node: Standards and Portability146613 2129 Node: ISO C148068 2130 Node: POSIX149620 2131 Node: POSIX Safety Concepts151721 2132 Node: Unsafe Features157502 2133 Node: Conditionally Safe Features162163 2134 Node: Other Safety Remarks173677 [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/poly2tri/sweep/ |
| H A D | advancing_front.h | 39 struct Node; 42 struct Node { struct 46 Node* next; argument 47 Node* prev; argument 51 Node(Point& p) : point(&p), triangle(NULL), next(NULL), prev(NULL), value(p.x) in Node() argument 55 Node(Point& p, Triangle& t) : point(&p), triangle(&t), next(NULL), prev(NULL), value(p.x) in Node() function 65 AdvancingFront(Node& head, Node& tail); 69 Node* head(); 70 void set_head(Node* node); 71 Node* tail(); [all …]
|
| H A D | sweep.h | 47 struct Node; 86 Node& PointEvent(SweepContext& tcx, Point& point); 95 void EdgeEvent(SweepContext& tcx, Edge* edge, Node* node); 107 Node& NewFrontTriangle(SweepContext& tcx, Point& point, Node& node); 114 void Fill(SweepContext& tcx, Node& node); 170 void FillAdvancingFront(SweepContext& tcx, Node& n); 174 bool LargeHole_DontFill(Node* node); 184 double HoleAngle(Node& node); 189 double BasinAngle(Node& node); 200 void FillBasin(SweepContext& tcx, Node& node); [all …]
|
| H A D | advancing_front.cpp | 35 AdvancingFront::AdvancingFront(Node& head, Node& tail) in AdvancingFront() 42 Node* AdvancingFront::LocateNode(const double& x) in LocateNode() 44 Node* node = search_node_; in LocateNode() 64 Node* AdvancingFront::FindSearchNode(const double& x) in FindSearchNode() 71 Node* AdvancingFront::LocatePoint(const Point* point) in LocatePoint() 74 Node* node = FindSearchNode(px); in LocatePoint()
|
| H A D | sweep_context.h | 47 struct Node; 69 Node& LocateNode(Point& point); 71 void RemoveNode(Node* node); 73 void CreateAdvancingFront(std::vector<Node*> nodes); 100 Node* left_node; 101 Node* bottom_node; 102 Node* right_node; 147 Node *af_head_, *af_middle_, *af_tail_;
|
| H A D | sweep.cpp | 55 Node* node = &PointEvent(tcx, point); in SweepPoints() 75 Node& Sweep::PointEvent(SweepContext& tcx, Point& point) in PointEvent() 77 Node& node = tcx.LocateNode(point); in PointEvent() 78 Node& new_node = NewFrontTriangle(tcx, point, node); in PointEvent() 92 void Sweep::EdgeEvent(SweepContext& tcx, Edge* edge, Node* node) in EdgeEvent() 178 Node& Sweep::NewFrontTriangle(SweepContext& tcx, Point& point, Node& node) in NewFrontTriangle() 185 Node* new_node = new Node(point); in NewFrontTriangle() 200 void Sweep::Fill(SweepContext& tcx, Node& node) in Fill() 222 void Sweep::FillAdvancingFront(SweepContext& tcx, Node& n) in FillAdvancingFront() 226 Node* node = n.next; in FillAdvancingFront() [all …]
|
| H A D | sweep_context.cpp | 122 Node& SweepContext::LocateNode(Point& point) in LocateNode() 128 void SweepContext::CreateAdvancingFront(std::vector<Node*> nodes) in CreateAdvancingFront() 137 af_head_ = new Node(*triangle->GetPoint(1), *triangle); in CreateAdvancingFront() 138 af_middle_ = new Node(*triangle->GetPoint(0), *triangle); in CreateAdvancingFront() 139 af_tail_ = new Node(*triangle->GetPoint(2)); in CreateAdvancingFront() 150 void SweepContext::RemoveNode(Node* node) in RemoveNode() 159 Node* n = front_->LocatePoint(t.PointCW(*t.GetPoint(i))); in MapTriangleToNodes()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/list/aux_/ |
| H A D | iterator.hpp | 29 template< typename Node > 36 template< typename Node > 37 struct deref< l_iter<Node> > 39 typedef typename Node::item type; 42 template< typename Node > 43 struct next< l_iter<Node> > 45 typedef l_iter< typename Node::next > type; 50 template< typename Node > 55 typedef typename Node::item type; 56 typedef l_iter< typename mpl::next<Node>::type > next;
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/ |
| H A D | jquery.treetable.js | 9 var $, Node, Tree, methods; 13 Node = (function() { class 14 function Node(row, tree, settings) { class in anonymousFunction75f42a160100.Node 38 Node.prototype.addChild = function(child) { class 42 Node.prototype.ancestors = function() { 52 Node.prototype.collapse = function() { 69 Node.prototype.collapsed = function() { 75 Node.prototype.expand = function() { 95 Node.prototype.expanded = function() { 99 Node.prototype.hide = function() { [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qcache3q_p.h | 115 class Node 118 inline explicit Node() : q(0), n(0), p(0), pop(0), cost(0) {} in Node() function 121 Node *n; 122 Node *p; 134 Node *f; 135 Node *l; 145 QHash<Key, Node *> lookup_; 179 void unlink(Node *n); 180 void link_front(Node *n, Queue *q); 222 for (Node *node = queue->f; node; node = node->n) in serializeQueue() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/bin_search_tree_/ |
| H A D | traits.hpp | 61 class Node, 67 typedef rebind_traits<_Alloc, Node> node_alloc_traits; 70 typedef Node node; 124 Node, 132 Node, 164 class Node, 167 bin_search_tree_traits<Key, null_type, Cmp_Fn, Node_Update, Node, _Alloc> 171 typedef rebind_traits<_Alloc, Node> node_alloc_traits; 174 typedef Node node; 208 Node,
|
| H A D | node_iterators.hpp | 51 bin_search_tree_const_node_it_<Node, Const_Iterator, Iterator, _Alloc> 54 template<typename Node, 61 typedef typename rebind_traits<_Alloc, Node>::pointer node_pointer; 80 typedef typename Node::metadata_type metadata_type; 125 bin_search_tree_node_it_<Node, Const_Iterator, Iterator, _Alloc> 128 template<typename Node, 136 typedef typename rebind_traits<_Alloc, Node>::pointer node_pointer;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/bin_search_tree_/ |
| H A D | traits.hpp | 61 class Node, 67 typedef rebind_traits<_Alloc, Node> node_alloc_traits; 70 typedef Node node; 124 Node, 132 Node, 164 class Node, 167 bin_search_tree_traits<Key, null_type, Cmp_Fn, Node_Update, Node, _Alloc> 171 typedef rebind_traits<_Alloc, Node> node_alloc_traits; 174 typedef Node node; 208 Node,
|
| H A D | node_iterators.hpp | 51 bin_search_tree_const_node_it_<Node, Const_Iterator, Iterator, _Alloc> 54 template<typename Node, 61 typedef typename rebind_traits<_Alloc, Node>::pointer node_pointer; 80 typedef typename Node::metadata_type metadata_type; 125 bin_search_tree_node_it_<Node, Const_Iterator, Iterator, _Alloc> 128 template<typename Node, 136 typedef typename rebind_traits<_Alloc, Node>::pointer node_pointer;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/rtree/node/ |
| H A D | node_elements.hpp | 72 template <typename Node> 75 typedef typename Node::elements_type type; 78 template <typename Node> 79 inline typename elements_type<Node>::type & 80 elements(Node & n) in elements() 85 template <typename Node> 86 inline typename elements_type<Node>::type const& 87 elements(Node const& n) in elements()
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | binfmt_misc.c | 63 } Node; typedef 90 static Node *check_file(struct linux_binprm *bprm) in check_file() 97 Node *e = list_entry(l, Node, list); in check_file() 134 Node *fmt; in load_misc_binary() 228 static char *check_special_flags(char *sfs, Node *e) in check_special_flags() 272 static Node *create_entry(const char __user *buffer, size_t count) in create_entry() 274 Node *e; in create_entry() 287 memsize = sizeof(Node) + count + 8; in create_entry() 292 p = buf = (char *)e + sizeof(Node); in create_entry() 294 memset(e, 0, sizeof(Node)); in create_entry() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
| H A D | point_const_iterator.hpp | 54 template<typename Node, typename _Alloc> 57 left_child_next_sibling_heap_node_point_const_iterator_<Node, _Alloc> 60 template<typename Node, typename _Alloc> 64 typedef typename rebind_traits<_Alloc, Node>::pointer node_pointer; 74 typedef typename Node::value_type value_type;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
| H A D | point_const_iterator.hpp | 54 template<typename Node, typename _Alloc> 57 left_child_next_sibling_heap_node_point_const_iterator_<Node, _Alloc> 60 template<typename Node, typename _Alloc> 64 typedef typename rebind_traits<_Alloc, Node>::pointer node_pointer; 74 typedef typename Node::value_type value_type;
|
| /OK3568_Linux_fs/buildroot/package/llvm/ |
| H A D | 0002-No-longer-generate-calls-to-_finite.patch | 60 @@ -3731,7 +3731,6 @@ void SelectionDAGLegalize::ConvertNodeToLibcall(SDNode *Node) { 62 SDLoc dl(Node); 65 unsigned Opc = Node->getOpcode(); 68 @@ -3834,68 +3833,33 @@ void SelectionDAGLegalize::ConvertNodeToLibcall(SDNode *Node) { 73 - Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_FINITE_F32, 79 - Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64, 82 + Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64, 89 - Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_FINITE_F32, 95 - Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64, 98 + Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64, [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aorb/ |
| H A D | orb_algos.h | 23 typedef struct Node { struct 24 struct Node* next; argument 26 } Node; typedef 29 struct Node* start; 30 struct Node* end;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/ |
| H A D | libgomp.info | 57 File: libgomp.info, Node: Top, Next: Enabling OpenMP, Up: (dir) 107 File: libgomp.info, Node: Enabling OpenMP, Next: Runtime Library Routines, Prev: Top, Up: Top 125 File: libgomp.info, Node: Runtime Library Routines, Next: Environment Variables, Prev: Enabling … 188 File: libgomp.info, Node: omp_get_active_level, Next: omp_get_ancestor_thread_num, Up: Runtime L… 211 File: libgomp.info, Node: omp_get_ancestor_thread_num, Next: omp_get_cancellation, Prev: omp_get… 237 File: libgomp.info, Node: omp_get_cancellation, Next: omp_get_default_device, Prev: omp_get_ance… 261 File: libgomp.info, Node: omp_get_default_device, Next: omp_get_dynamic, Prev: omp_get_cancellat… 282 File: libgomp.info, Node: omp_get_dynamic, Next: omp_get_level, Prev: omp_get_default_device, U… 309 File: libgomp.info, Node: omp_get_level, Next: omp_get_max_active_levels, Prev: omp_get_dynamic,… 331 File: libgomp.info, Node: omp_get_max_active_levels, Next: omp_get_max_task_priority, Prev: omp_… [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/ |
| H A D | libgomp.info | 57 File: libgomp.info, Node: Top, Next: Enabling OpenMP, Up: (dir) 107 File: libgomp.info, Node: Enabling OpenMP, Next: Runtime Library Routines, Prev: Top, Up: Top 125 File: libgomp.info, Node: Runtime Library Routines, Next: Environment Variables, Prev: Enabling … 188 File: libgomp.info, Node: omp_get_active_level, Next: omp_get_ancestor_thread_num, Up: Runtime L… 211 File: libgomp.info, Node: omp_get_ancestor_thread_num, Next: omp_get_cancellation, Prev: omp_get… 237 File: libgomp.info, Node: omp_get_cancellation, Next: omp_get_default_device, Prev: omp_get_ance… 261 File: libgomp.info, Node: omp_get_default_device, Next: omp_get_dynamic, Prev: omp_get_cancellat… 282 File: libgomp.info, Node: omp_get_dynamic, Next: omp_get_level, Prev: omp_get_default_device, U… 309 File: libgomp.info, Node: omp_get_level, Next: omp_get_max_active_levels, Prev: omp_get_dynamic,… 331 File: libgomp.info, Node: omp_get_max_active_levels, Next: omp_get_max_task_priority, Prev: omp_… [all …]
|