summaryrefslogtreecommitdiff
path: root/external/clBLAS/src/include/list.h
blob: 38ca7c6c6bd2a33bcec301f922e217113e252945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* ************************************************************************
 * Copyright 2013 Advanced Micro Devices, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ************************************************************************/


/*
 * Work with circular double linked lists
 */

#ifndef LIST_H_
#define LIST_H_

#include <defbool.h>

#if defined (_WIN64)
typedef unsigned long long prt_size_t;
#else
typedef unsigned long prt_size_t;
#endif

#ifdef __cplusplus
extern "C" {
#endif

#define offset_of(field, type)                                 \
    (prt_size_t)(&((type*)0)->field)

#define container_of(node, field, type)                        \
    (type*)((prt_size_t)(node) - offset_of(field, type))

typedef struct ListNode {
    struct ListNode *prev;
    struct ListNode *next;
} ListNode;

typedef ListNode ListHead;
typedef void (*ListAction)(ListNode *node);
typedef void (*ListPrivAction)(ListNode *node, void *priv);

/*
 *  Type of function comparing list node contents with a key.
 *  On equality such a function must return 0
 */
typedef int (*ListCmpFn)(const ListNode *node, const void *key);

static __inline
bool isListEmpty(ListHead *list)
{
    return (list->next == list);
}

static __inline ListNode
*listNodeFirst(const ListHead *head)
{
    return head->next;
}

static __inline ListNode
*listNodeLast(const ListHead *head)
{
    return head->prev;
}

static __inline void
listInitHead(ListHead *head)
{
    head->prev = head;
    head->next = head;
}

void
listAddToTail(ListHead *head, ListNode *node);

void
listAddToHead(ListHead *head, ListNode *node);

void listDel(ListNode *node);

ListNode
*listDelFromTail(ListHead *head);

void
listDoForEach(ListHead *head, ListAction act);

void
listDoForEachSafe(ListHead *head, ListAction act);

void
listDoForEachPriv(const ListHead *head, ListPrivAction act, void *actPriv);

void
listDoForEachPrivSafe(const ListHead *head, ListPrivAction act, void *actPriv);

ListNode
*listNodeSearch(const ListHead *head, const void *key, ListCmpFn cmp);

size_t
listLength(const ListHead *head);

#ifdef __cplusplus
}
#endif

#endif /* LIST_H_ */