Home
last modified time | relevance | path

Searched refs:p_nodes (Results 1 – 25 of 42) sorted by relevance

12

/dports/ftp/vsftpd-ext/vsFTPd-3.0.3-ext.1/
H A Dstrlist.c11 #define PRIVATE_HANDS_OFF_p_nodes p_nodes
39 str_free(&p_list->p_nodes[i].str); in str_list_free()
40 str_free(&p_list->p_nodes[i].sort_key_str); in str_list_free()
44 if (p_list->p_nodes) in str_list_free()
46 vsf_sysutil_free(p_list->p_nodes); in str_list_free()
47 p_list->p_nodes = 0; in str_list_free()
83 p_list->p_nodes = vsf_sysutil_malloc( in str_list_add()
93 p_list->p_nodes = vsf_sysutil_realloc( in str_list_add()
94 p_list->p_nodes, in str_list_add()
98 p_node = &p_list->p_nodes[p_list->list_len]; in str_list_add()
[all …]
H A Dhash.c28 struct hash_node** p_nodes; member
46 p_hash->p_nodes = vsf_sysutil_malloc(size); in hash_alloc()
47 vsf_sysutil_memclr(p_hash->p_nodes, size); in hash_alloc()
128 return &(p_hash->p_nodes[bucket]); in hash_get_bucket()
/dports/ftp/vsftpd/vsftpd-3.0.5/
H A Dstrlist.c11 #define PRIVATE_HANDS_OFF_p_nodes p_nodes
39 str_free(&p_list->p_nodes[i].str); in str_list_free()
40 str_free(&p_list->p_nodes[i].sort_key_str); in str_list_free()
44 if (p_list->p_nodes) in str_list_free()
46 vsf_sysutil_free(p_list->p_nodes); in str_list_free()
47 p_list->p_nodes = 0; in str_list_free()
83 p_list->p_nodes = vsf_sysutil_malloc( in str_list_add()
93 p_list->p_nodes = vsf_sysutil_realloc( in str_list_add()
94 p_list->p_nodes, in str_list_add()
98 p_node = &p_list->p_nodes[p_list->list_len]; in str_list_add()
[all …]
H A Dhash.c28 struct hash_node** p_nodes; member
46 p_hash->p_nodes = vsf_sysutil_malloc(size); in hash_alloc()
47 vsf_sysutil_memclr(p_hash->p_nodes, size); in hash_alloc()
128 return &(p_hash->p_nodes[bucket]); in hash_get_bucket()
/dports/devel/godot/godot-3.2.3-stable/core/math/
H A Dbsp_tree.h72 …bool _test_convex(const Node *p_nodes, const Plane *p_planes, int p_current, const T &p_convex) co…
92 …BSP_Tree(const Vector<Node> &p_nodes, const Vector<Plane> &p_planes, const AABB &p_aabb, real_t p_…
97 bool BSP_Tree::_test_convex(const Node *p_nodes, const Plane *p_planes, int p_current, const T &p_c… in _test_convex() argument
105 const Node &n = p_nodes[p_current]; in _test_convex()
115 if (go_under && _test_convex(p_nodes, p_planes, n.under, p_convex)) in _test_convex()
117 if (go_over && _test_convex(p_nodes, p_planes, n.over, p_convex)) in _test_convex()
H A Dbsp_tree.cpp339 …Vector<int> &p_indices, Vector<Plane> &p_planes, Vector<BSP_Tree::Node> &p_nodes, real_t p_toleran… in _bsp_create_node() argument
341 ERR_FAIL_COND_V(p_nodes.size() == BSP_Tree::MAX_NODES, -1); in _bsp_create_node()
396 int idx = _bsp_create_node(p_faces, faces_over, p_planes, p_nodes, p_tolerance); in _bsp_create_node()
403 int idx = _bsp_create_node(p_faces, faces_under, p_planes, p_nodes, p_tolerance); in _bsp_create_node()
433 p_nodes.push_back(node); in _bsp_create_node()
435 return p_nodes.size() - 1; in _bsp_create_node()
573 BSP_Tree::BSP_Tree(const Vector<Node> &p_nodes, const Vector<Plane> &p_planes, const AABB &p_aabb, … in BSP_Tree() argument
574 nodes(p_nodes), in BSP_Tree()
/dports/devel/godot-tools/godot-3.2.3-stable/core/math/
H A Dbsp_tree.h72 …bool _test_convex(const Node *p_nodes, const Plane *p_planes, int p_current, const T &p_convex) co…
92 …BSP_Tree(const Vector<Node> &p_nodes, const Vector<Plane> &p_planes, const AABB &p_aabb, real_t p_…
97 bool BSP_Tree::_test_convex(const Node *p_nodes, const Plane *p_planes, int p_current, const T &p_c… in _test_convex() argument
105 const Node &n = p_nodes[p_current]; in _test_convex()
115 if (go_under && _test_convex(p_nodes, p_planes, n.under, p_convex)) in _test_convex()
117 if (go_over && _test_convex(p_nodes, p_planes, n.over, p_convex)) in _test_convex()
H A Dbsp_tree.cpp339 …Vector<int> &p_indices, Vector<Plane> &p_planes, Vector<BSP_Tree::Node> &p_nodes, real_t p_toleran… in _bsp_create_node() argument
341 ERR_FAIL_COND_V(p_nodes.size() == BSP_Tree::MAX_NODES, -1); in _bsp_create_node()
396 int idx = _bsp_create_node(p_faces, faces_over, p_planes, p_nodes, p_tolerance); in _bsp_create_node()
403 int idx = _bsp_create_node(p_faces, faces_under, p_planes, p_nodes, p_tolerance); in _bsp_create_node()
433 p_nodes.push_back(node); in _bsp_create_node()
435 return p_nodes.size() - 1; in _bsp_create_node()
573 BSP_Tree::BSP_Tree(const Vector<Node> &p_nodes, const Vector<Plane> &p_planes, const AABB &p_aabb, … in BSP_Tree() argument
574 nodes(p_nodes), in BSP_Tree()
/dports/devel/godot2-tools/godot-2.1.6-stable/core/math/
H A Dbsp_tree.h73 …bool _test_convex(const Node *p_nodes, const Plane *p_planes, int p_current, const T &p_convex) co…
93 …BSP_Tree(const Vector<Node> &p_nodes, const Vector<Plane> &p_planes, const AABB &p_aabb, float p_e…
98 bool BSP_Tree::_test_convex(const Node *p_nodes, const Plane *p_planes, int p_current, const T &p_c… in _test_convex() argument
106 const Node &n = p_nodes[p_current]; in _test_convex()
116 if (go_under && _test_convex(p_nodes, p_planes, n.under, p_convex)) in _test_convex()
118 if (go_over && _test_convex(p_nodes, p_planes, n.over, p_convex)) in _test_convex()
H A Dbsp_tree.cpp346 …Vector<int> &p_indices, Vector<Plane> &p_planes, Vector<BSP_Tree::Node> &p_nodes, float p_toleranc… in _bsp_create_node() argument
348 ERR_FAIL_COND_V(p_nodes.size() == BSP_Tree::MAX_NODES, -1); in _bsp_create_node()
401 int idx = _bsp_create_node(p_faces, faces_over, p_planes, p_nodes, p_tolerance); in _bsp_create_node()
408 int idx = _bsp_create_node(p_faces, faces_under, p_planes, p_nodes, p_tolerance); in _bsp_create_node()
438 p_nodes.push_back(node); in _bsp_create_node()
440 return p_nodes.size() - 1; in _bsp_create_node()
578 BSP_Tree::BSP_Tree(const Vector<Node> &p_nodes, const Vector<Plane> &p_planes, const AABB &p_aabb, … in BSP_Tree() argument
580 nodes = p_nodes; in BSP_Tree()
/dports/devel/godot2/godot-2.1.6-stable/core/math/
H A Dbsp_tree.h73 …bool _test_convex(const Node *p_nodes, const Plane *p_planes, int p_current, const T &p_convex) co…
93 …BSP_Tree(const Vector<Node> &p_nodes, const Vector<Plane> &p_planes, const AABB &p_aabb, float p_e…
98 bool BSP_Tree::_test_convex(const Node *p_nodes, const Plane *p_planes, int p_current, const T &p_c… in _test_convex() argument
106 const Node &n = p_nodes[p_current]; in _test_convex()
116 if (go_under && _test_convex(p_nodes, p_planes, n.under, p_convex)) in _test_convex()
118 if (go_over && _test_convex(p_nodes, p_planes, n.over, p_convex)) in _test_convex()
H A Dbsp_tree.cpp346 …Vector<int> &p_indices, Vector<Plane> &p_planes, Vector<BSP_Tree::Node> &p_nodes, float p_toleranc… in _bsp_create_node() argument
348 ERR_FAIL_COND_V(p_nodes.size() == BSP_Tree::MAX_NODES, -1); in _bsp_create_node()
401 int idx = _bsp_create_node(p_faces, faces_over, p_planes, p_nodes, p_tolerance); in _bsp_create_node()
408 int idx = _bsp_create_node(p_faces, faces_under, p_planes, p_nodes, p_tolerance); in _bsp_create_node()
438 p_nodes.push_back(node); in _bsp_create_node()
440 return p_nodes.size() - 1; in _bsp_create_node()
578 BSP_Tree::BSP_Tree(const Vector<Node> &p_nodes, const Vector<Plane> &p_planes, const AABB &p_aabb, … in BSP_Tree() argument
580 nodes = p_nodes; in BSP_Tree()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/acpi/numa/
H A Dhmat.c566 unsigned long *p_nodes = priv; in initiator_cmp() local
571 set_bit(ia->processor_pxm, p_nodes); in initiator_cmp()
572 set_bit(ib->processor_pxm, p_nodes); in initiator_cmp()
579 static DECLARE_BITMAP(p_nodes, MAX_NUMNODES); in hmat_register_target_initiators()
612 bitmap_zero(p_nodes, MAX_NUMNODES); in hmat_register_target_initiators()
613 list_sort(p_nodes, &initiators, initiator_cmp); in hmat_register_target_initiators()
639 for_each_set_bit(i, p_nodes, MAX_NUMNODES) { in hmat_register_target_initiators()
646 bitmap_zero(p_nodes, MAX_NUMNODES); in hmat_register_target_initiators()
647 list_sort(p_nodes, &initiators, initiator_cmp); in hmat_register_target_initiators()
659 clear_bit(initiator->processor_pxm, p_nodes); in hmat_register_target_initiators()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/acpi/numa/
H A Dhmat.c566 unsigned long *p_nodes = priv; in initiator_cmp() local
571 set_bit(ia->processor_pxm, p_nodes); in initiator_cmp()
572 set_bit(ib->processor_pxm, p_nodes); in initiator_cmp()
579 static DECLARE_BITMAP(p_nodes, MAX_NUMNODES); in hmat_register_target_initiators()
612 bitmap_zero(p_nodes, MAX_NUMNODES); in hmat_register_target_initiators()
613 list_sort(p_nodes, &initiators, initiator_cmp); in hmat_register_target_initiators()
639 for_each_set_bit(i, p_nodes, MAX_NUMNODES) { in hmat_register_target_initiators()
646 bitmap_zero(p_nodes, MAX_NUMNODES); in hmat_register_target_initiators()
647 list_sort(p_nodes, &initiators, initiator_cmp); in hmat_register_target_initiators()
659 clear_bit(initiator->processor_pxm, p_nodes); in hmat_register_target_initiators()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/acpi/numa/
H A Dhmat.c566 unsigned long *p_nodes = priv; in initiator_cmp() local
571 set_bit(ia->processor_pxm, p_nodes); in initiator_cmp()
572 set_bit(ib->processor_pxm, p_nodes); in initiator_cmp()
579 static DECLARE_BITMAP(p_nodes, MAX_NUMNODES); in hmat_register_target_initiators()
612 bitmap_zero(p_nodes, MAX_NUMNODES); in hmat_register_target_initiators()
613 list_sort(p_nodes, &initiators, initiator_cmp); in hmat_register_target_initiators()
639 for_each_set_bit(i, p_nodes, MAX_NUMNODES) { in hmat_register_target_initiators()
646 bitmap_zero(p_nodes, MAX_NUMNODES); in hmat_register_target_initiators()
647 list_sort(p_nodes, &initiators, initiator_cmp); in hmat_register_target_initiators()
659 clear_bit(initiator->processor_pxm, p_nodes); in hmat_register_target_initiators()
[all …]
/dports/devel/godot2/godot-2.1.6-stable/editor/io_plugins/
H A Deditor_scene_importer_fbxconv.h84 void _detect_bones_in_nodes(State &state, const Array &p_nodes);
88 …void _parse_skeletons(const String &p_name, State &state, const Array &p_nodes, Skeleton *p_skelet…
91 Error _parse_nodes(State &state, const Array &p_nodes, Node *p_base);
H A Deditor_scene_importer_fbxconv.cpp170 void EditorSceneImporterFBXConv::_detect_bones_in_nodes(State &state, const Array &p_nodes) { in _detect_bones_in_nodes() argument
172 for (int i = 0; i < p_nodes.size(); i++) { in _detect_bones_in_nodes()
174 Dictionary d = p_nodes[i]; in _detect_bones_in_nodes()
226 …XConv::_parse_skeletons(const String &p_name, State &state, const Array &p_nodes, Skeleton *p_skel… in _parse_skeletons() argument
228 for (int i = 0; i < p_nodes.size(); i++) { in _parse_skeletons()
230 Dictionary d = p_nodes[i]; in _parse_skeletons()
354 Error EditorSceneImporterFBXConv::_parse_nodes(State &state, const Array &p_nodes, Node *p_base) { in _parse_nodes() argument
356 for (int i = 0; i < p_nodes.size(); i++) { in _parse_nodes()
358 Dictionary n = p_nodes[i]; in _parse_nodes()
/dports/devel/godot2-tools/godot-2.1.6-stable/editor/io_plugins/
H A Deditor_scene_importer_fbxconv.h84 void _detect_bones_in_nodes(State &state, const Array &p_nodes);
88 …void _parse_skeletons(const String &p_name, State &state, const Array &p_nodes, Skeleton *p_skelet…
91 Error _parse_nodes(State &state, const Array &p_nodes, Node *p_base);
H A Deditor_scene_importer_fbxconv.cpp170 void EditorSceneImporterFBXConv::_detect_bones_in_nodes(State &state, const Array &p_nodes) { in _detect_bones_in_nodes() argument
172 for (int i = 0; i < p_nodes.size(); i++) { in _detect_bones_in_nodes()
174 Dictionary d = p_nodes[i]; in _detect_bones_in_nodes()
226 …XConv::_parse_skeletons(const String &p_name, State &state, const Array &p_nodes, Skeleton *p_skel… in _parse_skeletons() argument
228 for (int i = 0; i < p_nodes.size(); i++) { in _parse_skeletons()
230 Dictionary d = p_nodes[i]; in _parse_skeletons()
354 Error EditorSceneImporterFBXConv::_parse_nodes(State &state, const Array &p_nodes, Node *p_base) { in _parse_nodes() argument
356 for (int i = 0; i < p_nodes.size(); i++) { in _parse_nodes()
358 Dictionary n = p_nodes[i]; in _parse_nodes()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/requests/api/graphql/project/merge_request/
H A Dpipelines_spec.rb53 p_nodes = graphql_data_at(:project, :merge_requests, :nodes)
55 expect(p_nodes).to all(match('iid' => be_present, 'pipelines' => match('count' => 1)))
/dports/devel/godot2-tools/godot-2.1.6-stable/editor/
H A Dscene_tree_dock.h117 …void _do_reparent(Node *p_new_parent, int p_position_in_parent, Vector<Node *> p_nodes, bool p_kee…
119 void _set_owners(Node *p_owner, const Array &p_nodes);
146 void _nodes_dragged(Array p_nodes, NodePath p_to, int p_type);
H A Dscene_tree_dock.cpp803 for (int i = 0; i < p_nodes.size(); i++) { in _set_owners()
805 Object *obj = p_nodes[i]; in _set_owners()
1067 if (p_nodes.find(validate) != -1) { in _do_reparent()
1079 if (p_nodes.size() == 0) in _do_reparent()
1083 p_nodes.sort_custom<Node::Comparator>(); in _do_reparent()
1092 for (int ni = 0; ni < p_nodes.size(); ni++) { in _do_reparent()
1095 Node *node = p_nodes[ni]; in _do_reparent()
1146 for (int ni = 0; ni < p_nodes.size(); ni++) { in _do_reparent()
1148 Node *node = p_nodes[ni]; in _do_reparent()
1659 for (int i = 0; i < p_nodes.size(); i++) { in _nodes_dragged()
[all …]
/dports/devel/godot2/godot-2.1.6-stable/editor/
H A Dscene_tree_dock.h117 …void _do_reparent(Node *p_new_parent, int p_position_in_parent, Vector<Node *> p_nodes, bool p_kee…
119 void _set_owners(Node *p_owner, const Array &p_nodes);
146 void _nodes_dragged(Array p_nodes, NodePath p_to, int p_type);
/dports/devel/godot/godot-3.2.3-stable/editor/
H A Dscene_tree_dock.h161 …void _do_reparent(Node *p_new_parent, int p_position_in_parent, Vector<Node *> p_nodes, bool p_kee…
166 void _set_owners(Node *p_owner, const Array &p_nodes);
212 void _nodes_dragged(Array p_nodes, NodePath p_to, int p_type);
/dports/devel/godot-tools/godot-3.2.3-stable/editor/
H A Dscene_tree_dock.h161 …void _do_reparent(Node *p_new_parent, int p_position_in_parent, Vector<Node *> p_nodes, bool p_kee…
166 void _set_owners(Node *p_owner, const Array &p_nodes);
212 void _nodes_dragged(Array p_nodes, NodePath p_to, int p_type);

12