Searched defs:head (Results 1 - 25 of 41) sorted by relevance

12

/device/generic/car/emulator/audio/driver/
H A Daudio_vbuffer.h27 size_t head; member in struct:audio_vbuffer
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/sym/
H A Dtemplate.h11 struct _sym *next, *prev, **head, *scope; member in struct:_sym
/device/google/marlin/camera/QCamera2/stack/common/
H A Dcam_list.h54 struct cam_list *head)
56 struct cam_list *prev = head->prev;
58 head->prev = item;
59 item->next = head;
53 cam_list_add_tail_node(struct cam_list *item, struct cam_list *head) argument
H A Dcam_queue.h42 cam_node_t head; /* dummy head */ member in struct:__anon505
50 cam_list_init(&queue->head.list);
67 cam_list_add_tail_node(&node->list, &queue->head.list);
78 struct cam_list *head = NULL; local
82 head = &queue->head.list;
83 pos = head->next;
84 if (pos != head) {
102 struct cam_list *head local
[all...]
/device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
H A Dmm_qcamera_queue.c111 struct cam_list *head = NULL; local
115 head = &queue->m_head.list;
117 pos = head->next;
119 pos = head->prev;
121 if (pos != head) {
139 struct cam_list *head = NULL; local
147 head = &queue->m_head.list;
148 pos = head->next;
150 while(pos != head) {
/device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/src/
H A Dmm_jpeg_queue.c40 cam_list_init(&queue->head.list);
58 cam_list_add_tail_node(&node->list, &queue->head.list);
68 struct cam_list *head = NULL; local
80 head = &queue->head.list;
81 pos = head->next;
95 struct cam_list *head = NULL; local
101 head = &queue->head.list;
102 pos = head
140 struct cam_list *head = NULL; local
169 struct cam_list *head = NULL; local
[all...]
/device/google/marlin/power/
H A Dlist.c37 int init_list_head(struct list_node *head) argument
39 if (head == NULL)
42 memset(head, 0, sizeof(*head));
47 struct list_node *add_list_node(struct list_node *head, void *data) argument
52 if (head == NULL) {
61 new_node->next = head->next;
62 new_node->compare = head->compare;
63 new_node->dump = head->dump;
64 head
69 is_list_empty(struct list_node *head) argument
77 remove_list_node(struct list_node *head, struct list_node *del_node) argument
110 dump_list(struct list_node *head) argument
126 find_node(struct list_node *head, void *comparison_data) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dweakrefobject.h62 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head); variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dweakrefobject.h65 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head); variable
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DSList.h59 SListNode *head, *tail; member in class:SList
61 SList() {head=tail=NULL;}
62 virtual ~SList() {head=tail=NULL;}
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
H A DSList.h59 SListNode *head, *tail; member in class:SList
61 SList() {head=tail=NULL;}
62 virtual ~SList() {head=tail=NULL;}
/device/google/marlin/camera/QCamera2/util/
H A DQCameraQueue.cpp174 * head of the queue
216 * DESCRIPTION: return the head element without removing it
226 struct cam_list *head = NULL; local
231 head = &m_head.list;
232 pos = head->next;
233 if (pos != head) {
252 * @bFromHead : if true, dequeue from the head
261 struct cam_list *head = NULL; local
266 head = &m_head.list;
268 pos = head
301 struct cam_list *head = NULL; local
345 struct cam_list *head = NULL; local
387 struct cam_list *head = NULL; local
432 struct cam_list *head = NULL; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
H A Drrcs.py18 cmd = 'head'
32 print " head # print revision of head branch"
81 def head(x, copts, fn): function
82 head = x.head(fn)
83 print fn, head
108 print 'diff %s -r%s %s' % (flags, x.head(fn), fn)
151 'head': ('', head),
[all...]
H A Drcslib.py63 def head(self, name_rev): member in class:RCS
64 """Return the head revision for NAME_REV"""
66 return dict['head']
72 (e.g. 'head' and its values are the corresponding data
/device/google/contexthub/firmware/os/core/
H A DeventQ.c29 #define for_each_item_safe(head, pos, tmp) \
30 for (pos = (head)->next; tmp = (pos)->next, (pos) != (head); pos = (tmp))
46 struct EvtList head; member in struct:EvtQueue
72 q->head.next = &q->head;
73 q->head.prev = &q->head;
89 for_each_item_safe (&q->head, pos, tmp) {
116 for (pos = q->head
[all...]
H A DsimpleQ.c32 uint32_t head, tail, num, freeHead, entrySz; member in struct:SimpleQueue
64 sq->head = SIMPLE_QUEUE_IDX_NONE;
85 for (i = sq->head; i != SIMPLE_QUEUE_IDX_NONE; i = cur->nextIdx) {
96 uint32_t head; local
98 if (!sq || sq->head == SIMPLE_QUEUE_IDX_NONE)
101 head = sq->head;
102 e = simpleQueueGetNth(sq, head);
104 sq->head = e->nextIdx;
105 if (sq->tail == head)
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dpred.c158 Predicate *a, *head=NULL, *tail=NULL, *root=NULL; local
174 if ( head==NULL )
178 head = tail = a;
179 root->down = head;
/device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/hikey/
H A Dhisi_mcu.c70 static int is_binary_header_invalid(struct mcu_image_head *head, argument
74 if ((head->image_size == 0) ||
75 (head->image_size > length) ||
76 (head->secs_num > MCU_SECTION_MAX) ||
77 (head->secs_num == 0))
84 struct mcu_image_head *head)
88 if ((sec->serial >= head->secs_num) ||
89 (sec->src_offset + sec->size > head->image_size))
157 struct mcu_image_head *head; local
160 head
83 is_binary_section_invalid(struct mcu_image_sec *sec, struct mcu_image_head *head) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dnntplib.py411 def head(self, id): member in class:NNTP
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Dinflate.h86 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
/device/linaro/bootloader/arm-trusted-firmware/include/common/
H A Dbl_common.h148 /* BL image head node in the BL image loading sequence */
151 bl_load_info_node_t *head; member in struct:bl_load_info
163 * BL image head node in the BL image execution sequence
168 bl_params_node_t *head; member in struct:bl_params
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dinflate.h90 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
H A Ddeflate.h137 Posf *head; /* Heads of the hash chains or NIL. */ member in struct:internal_state
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
H A Dinflate.h93 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dweakrefobject.c10 _PyWeakref_GetWeakrefCount(PyWeakReference *head) argument
14 while (head != NULL) {
16 head = head->wr_next;
215 /* Given the head of an object's list of weak references, extract the
221 get_basic_refs(PyWeakReference *head, argument
227 if (head != NULL && head->wr_callback == NULL) {
231 if (PyWeakref_CheckRefExact(head)) {
232 *refp = head;
[all...]

Completed in 327 milliseconds

12