HomeSort by relevance Sort by last modified time
    Searched refs:head (Results 376 - 400 of 3044) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/r300/compiler/
memory_pool.c 65 pool->head = (unsigned char*)(newblock + 1);
76 if (pool->head + bytes > pool->end)
79 assert(pool->head + bytes <= pool->end);
81 ptr = pool->head;
83 pool->head += bytes;
84 pool->head = (unsigned char*)(((unsigned long)pool->head + POOL_ALIGN - 1) & ~(POOL_ALIGN - 1));
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
queue.c 45 Node *head; member in struct:Queue
55 q->head = q->tail = NULL;
91 q->head = new_node;
112 temp = q->head;
117 q->head = q->tail = NULL;
121 q->head = q->head->next;
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
queue.c 43 Node *head; member in struct:Queue
53 q->head = q->tail = NULL;
88 q->head = new_node;
107 temp = q->head;
111 q->head = q->tail = NULL;
113 q->head = q->head->next;
  /external/libcap/libcap/
cap_proc.c 21 if (capget(&result->head, &result->u[0].set)) {
40 retval = capset(&cap_d->head, &cap_d->u[0].set);
60 cap_d->head.pid = pid;
61 error = capget(&cap_d->head, &cap_d->u[0].set);
62 cap_d->head.pid = 0;
100 cap_d->head.pid = pid;
101 error = capset(&cap_d->head, &cap_d->u[0].set);
102 cap_d->head.version = _LIBCAP_CAPABILITY_VERSION;
103 cap_d->head.pid = 0;
  /external/mesa3d/src/util/
u_vector.c 31 vector->head = 0;
46 if (vector->head - vector->tail == vector->size) {
65 assert(vector->tail <= split && split < vector->head);
69 vector->head - split);
76 assert(vector->head - vector->tail < vector->size);
78 offset = vector->head & (vector->size - 1);
79 vector->head += vector->element_size;
89 if (vector->head == vector->tail)
92 assert(vector->head - vector->tail <= vector->size);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
TemplateList.java 140 TemplateSubPatternAssociation head = local
143 while (null != head)
145 System.out.print("(" + head.getTargetString() + ", "
146 + head.getPattern() + ")");
148 head = head.getNext();
154 TemplateSubPatternAssociation head = m_wildCardPatterns; local
158 while (null != head)
160 System.out.print("(" + head.getTargetString() + ", "
161 + head.getPattern() + ")")
188 TemplateSubPatternAssociation head = local
356 TemplateSubPatternAssociation head = isWildCard local
434 TemplateSubPatternAssociation head; local
502 TemplateSubPatternAssociation head; local
601 TemplateSubPatternAssociation head = getHead(xctxt, targetNode, dtm); local
666 TemplateSubPatternAssociation head = getHead(xctxt, targetNode, dtm); local
    [all...]
  /external/clang/test/CoverageMapping/
loopmacro.c 14 prev[(s) & WMASK] = match_head = head[ins_h], \
15 head[ins_h] = (s))
41 int head[32<<10] = { 0 }; local
  /external/fio/lib/
flist_sort.c 11 * sentinel head node, "prev" links not maintained.
18 struct flist_head head, *tail = &head; local
32 return head.next;
45 struct flist_head *head,
48 struct flist_head *tail = head;
78 tail->next = head;
79 head->prev = tail;
85 * @head: the list to sort
96 void flist_sort(void *priv, struct flist_head *head,
    [all...]
  /external/fsck_msdos/
fat.c 420 clearchain(struct bootblock *boot, struct fatEntry *fat, cl_t head)
424 for (p = head; p >= CLUST_FIRST && p < boot->NumClusters; p = q) {
425 if (fat[p].head != head)
428 fat[p].next = fat[p].head = CLUST_FREE;
434 tryclear(struct bootblock *boot, struct fatEntry *fat, cl_t head, cl_t *trunc)
436 if (ask(1, "Clear chain starting at %u", head)) {
437 clearchain(boot, fat, head);
452 cl_t head, p, h, n, wdk; local
460 for (head = CLUST_FIRST; head < boot->NumClusters; head++)
663 cl_t head; local
    [all...]
  /hardware/intel/common/wrs_omxil_core/utils/src/
queue.c 25 queue->head = NULL;
48 struct list *list = queue->head;
56 queue->head = __list_add_head(queue->head, entry);
58 queue->tail = queue->head;
70 queue->head = __list_add_head(queue->head, entry);
73 queue->tail = queue->head;
88 queue->head = queue->tail;
105 queue->head = queue->tail
    [all...]
  /external/toybox/toys/pending/
tcpsvd.c 66 struct list *head; member in struct:hashed
125 struct list_pid *prev, *free_node, *head = *pids; local
128 if (!head) return NULL;
130 while (head) {
131 if (head->pid == pid) {
132 ip = head->ip;
133 free_node = head;
134 if (!prev) *pids = head->next;
135 else prev->next = head->next;
139 prev = head;
148 struct list *head, *prev = NULL, *free_node = NULL; local
270 struct list *head, *newnode; local
    [all...]
  /device/google/marlin/camera/QCamera2/util/
QCameraQueue.cpp 174 * 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->next
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...]
  /external/curl/lib/
llist.c 41 l->head = NULL;
80 list->head = ne;
81 list->head->prev = NULL;
82 list->head->next = NULL;
87 ne->next = e?e->next:list->head;
90 list->head->prev = ne;
91 list->head = ne;
118 if(e == list->head) {
119 list->head = e->next;
121 if(list->head == NULL
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
MethodDecl.java 34 public Declarator getReturn() { return (Declarator)tail().head(); }
36 public ASTList getParams() { return (ASTList)sublist(2).head(); }
38 public ASTList getThrows() { return (ASTList)sublist(3).head(); }
40 public Stmnt getBody() { return (Stmnt)sublist(4).head(); }
FieldDecl.java 27 public Declarator getDeclarator() { return (Declarator)tail().head(); }
29 public ASTree getInit() { return (ASTree)sublist(2).head(); }
  /hardware/qcom/camera/msm8998/QCamera2/util/
QCameraQueue.cpp 174 * 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->next
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...]
  /toolchain/binutils/binutils-2.25/gprof/
search_list.h 43 struct search_list_elem *head;
42 struct search_list_elem *head; member in struct:__anon115910
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
IPACM_EvtDispatcher.cpp 50 cmd_evts *IPACM_EvtDispatcher::head = NULL; member in class:IPACM_EvtDispatcher
121 cmd_evts *tmp = head, tmp1;
123 if(head == NULL)
152 cmd_evts *tmp = head,*nw;
166 if(head == NULL)
168 head = nw;
184 cmd_evts *tmp = head,*tmp1,*prev = head;
191 if(tmp == head)
193 head = head->next
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
makedir.py 16 head, tail = os.path.split(p)
17 makedirs(head)
  /external/e2fsprogs/contrib/android/
block_range.h 13 void add_blocks_to_range(struct block_range **head, struct block_range **tail,
15 void delete_block_ranges(struct block_range *head);
  /external/python/cpython2/Demo/scripts/
makedir.py 16 head, tail = os.path.split(p)
17 makedirs(head)
  /prebuilts/go/darwin-x86/test/
inline_variadic.go 12 func head(xs ...string) string { // ERROR "can inline head" "leaking param: xs to result" func
17 x := head("hello", "world") // ERROR "inlining call to head" "\[\]string literal does not escape"
  /prebuilts/go/linux-x86/test/
inline_variadic.go 12 func head(xs ...string) string { // ERROR "can inline head" "leaking param: xs to result" func
17 x := head("hello", "world") // ERROR "inlining call to head" "\[\]string literal does not escape"
  /frameworks/base/obex/javax/obex/
ClientSession.java 108 byte[] head = null;
116 head = ObexHelper.createHeader(header, false);
117 totalLength += head.length;
136 if (head != null) {
137 System.arraycopy(head, 0, requestPacket, 4, head.length);
175 HeaderSet head; local
177 head = new HeaderSet();
179 head = header;
180 if (head.nonce != null)
294 HeaderSet head; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
slist.cpp 53 if ( head == *cursor ) { *cursor = (*cursor)->next(); }
69 if ( head == NULL )
71 head = tail = p;
85 if ( head==NULL ) return; /* empty list */
86 for (p = head; p!=NULL; p=q)
99 for (p = head; p!=NULL; p=p->next())

Completed in 3435 milliseconds

<<11121314151617181920>>