/external/clang/test/CodeGen/ |
union-init.c | 16 PyGC_Head head; member in struct:gc_generation 23 #define GEN_HEAD(n) (&generations[n].head)
|
/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/curl/lib/ |
llist.h | 37 struct curl_llist_element *head; member in struct:curl_llist
|
/external/deqp/framework/qphelper/ |
gen_release_info.py | 53 curFile = os.path.join(gitDir, "HEAD") 77 parser.add_argument('--git', dest='git', action='store_true', default=False, help="Development build, use git HEAD to identify") 104 head = getHead(gitDir) variable 105 releaseName = "git-%s" % head 106 releaseId = "0x%s" % head[0:8]
|
/external/e2fsprogs/contrib/android/ |
block_list.c | 14 struct block_range *head; member in struct:block_list::__anon19010 40 params->entry.head = params->entry.tail = NULL; 51 add_blocks_to_range(¶ms->entry.head, ¶ms->entry.tail, 66 if (!params->entry.filename || !params->entry.head) 70 || write_block_ranges(params->f, params->entry.head, " ") 74 delete_block_ranges(params->entry.head);
|
/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/guava/guava-tests/benchmark/com/google/common/cache/ |
ChainBenchmark.java | 35 private ReferenceEntry<Object, Object> head; field in class:ChainBenchmark 49 head = chain; 57 segment.removeEntryFromChain(chain, head);
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/ |
HTMLDocument.java | 76 * Creates a 'head' element. 78 * @return 'head' element 82 public HTMLElement head() throws IOException { method in class:HTMLDocument 83 return element("head");
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/ |
TablePage.java | 65 protected void head(final HTMLElement head) throws IOException { method in class:TablePage 66 super.head(head); 67 head.script("text/javascript",
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
IntQueue.java | 27 private IntQueue.Entry head; field in class:IntQueue 37 if (head == null) 38 head = entry; 42 return head == null; 46 if (head == null) 49 int value = head.value; 50 head = head.next; 51 if (head == null)
|
/external/kernel-headers/original/uapi/linux/ |
seg6_iptunnel.h | 44 int head = 0; local 50 head = sizeof(struct ipv6hdr); 56 return ((tuninfo->srh->hdrlen + 1) << 3) + head;
|
/external/libcap-ng/libcap-ng-0.7/utils/ |
proc-llist.h | 43 /* This is the linked list head. Only data elements that are 1 per 46 lnode *head; // List head member in struct:__anon24128
|
/external/ltp/testcases/kernel/syscalls/get_robust_list/ |
get_robust_list01.c | 77 struct robust_list_head head; local 92 * specified by len_ptr argument, or the head of the robust list can't 98 (struct robust_list_head *)&head, 135 (struct robust_list_head *)&head, 151 (struct robust_list_head **)&head, 163 (struct robust_list_head *)&head,
|
/external/ltp/testcases/kernel/syscalls/set_robust_list/ |
set_robust_list01.c | 82 struct robust_list_head head; local 103 TEST(retval = syscall(__NR_set_robust_list, &head, -1)); 127 TEST(retval = syscall(__NR_set_robust_list, &head, len));
|
/external/lz4/tests/ |
test-lz4-versions.py | 24 head = 'v999' variable 72 tags = [head] + get_git_tags() 80 if not os.path.isfile(dst_lz4c) or not os.path.isfile(dst_lz4c32) or tag == head: 81 if tag != head:
|
/external/mesa3d/src/compiler/nir/ |
nir_worklist.c | 91 unsigned head = w->start; local 96 BITSET_CLEAR(w->blocks_present, w->blocks[head]->index); 97 return w->blocks[head];
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_fifo.h | 33 size_t head; member in struct:util_fifo 45 fifo->head = 0; 60 if (++fifo->head >= fifo->size) 61 fifo->head = 0; 63 array[fifo->head] = ptr;
|
/external/mesa3d/src/gallium/drivers/swr/ |
swr_fence.h | 44 struct swr_fence_work head; member in struct:swr_fence::__anon30154
|
/external/mesa3d/src/util/ |
u_vector.h | 46 uint32_t head; member in struct:u_vector 60 return (queue->head - queue->tail) / queue->element_size; 66 assert(vector->tail < vector->head); 68 ((vector->head - vector->element_size) & 87 elem = (queue)->data + (__u_vector_offset & ((queue)->size - 1)), __u_vector_offset < (queue)->head; \
|
/external/okhttp/okio/okio/src/main/java/okio/ |
Buffer.java | 52 Segment head; field in class:Buffer 148 Segment s = head; 174 Segment s = head; 184 if (out.head == null) { 185 out.head = copy.next = copy.prev = copy; 187 out.head.prev.push(copy); 206 Segment s = head; 217 head = s = toRecycle.pop(); 264 Segment tail = head.prev; 275 Segment segment = head; [all...] |
/external/python/cpython2/Demo/pdist/ |
rrcs.py | 18 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...] |
/external/python/cpython2/Include/ |
weakrefobject.h | 62 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head); variable
|
/external/python/cpython3/Include/ |
weakrefobject.h | 65 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head); variable
|
/external/selinux/checkpolicy/ |
queue.h | 25 queue_node_ptr_t head; member in struct:queue_info
|
/external/syslinux/core/include/ |
mbox.h | 21 struct semaphore head_sem; /* Head pointer semaphore */ 24 void **head; /* Head pointer */ member in struct:mailbox
|