HomeSort by relevance Sort by last modified time
    Searched full:head (Results 526 - 550 of 3883) sorted by null

<<21222324252627282930>>

  /system/extras/latencytop/
latencytop.c 55 static void print_latency_entries(struct latency_entry *head);
293 static struct latency_entry *find_latency_entry(struct latency_entry *head, char *reason) {
296 e = head;
326 struct latency_entry *e, *head; local
331 head = list;
347 e = find_latency_entry(head, reason);
359 e->next = head;
360 head = e;
365 return head;
368 static void print_latency_entries(struct latency_entry *head) {
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 19 * The <em>head</em> of the queue is that element that has been on the
24 * operations obtain elements at the head of the queue.
78 * head as well.
80 * Nodes that are reachable from head. CASing the item
82 * queue. Reachability of all elements from head must remain
84 * head to advance. A dequeued Node may remain in use
98 * self-link implicitly means to advance to head.
100 * Both head and tail are permitted to lag. In fact, failing to
106 * Since head and tail are updated concurrently and independently,
107 * it is possible for tail to lag behind head (why not)
197 private transient volatile Node<E> head = new Node<E>(null); field in class:ConcurrentLinkedQueue
    [all...]
  /external/tremolo/Tremolo/
bitwise.c 136 if(b->bitsLeftInSegment<0) ret = b->count+b->head->length;
137 else ret = b->count + b->head->length - (b->bitsLeftInSegment)/8;
139 // b->count, b->head->length, b->bitsLeftInSegment);
146 if(b->bitsLeftInSegment<0) ret=(b->count+b->head->length)*8;
147 else ret = b->count*8 + b->head->length*8 - b->bitsLeftInSegment;
149 // b->count, b->head->length, b->bitsLeftInSegment);
166 if(b->head && b->head->next){
167 b->count+=b->head->length;
168 b->head=b->head->next
225 ogg_reference *head=b->head; local
    [all...]
  /bionic/libc/kernel/common/linux/
genhd.h 44 unsigned char head; member in struct:partition
  /bionic/libc/kernel/common/linux/mtd/
nftl.h 38 int head,sect,cyl; member in struct:NFTLrecord
  /dalvik/libcore/luni/src/main/java/java/util/
AbstractQueue.java 88 * Removes the element at the head of the queue and returns it.
90 * @return the element at the head of the queue.
103 * Returns but does not remove the element at the head of the queue.
105 * @return the element at the head of the queue.
  /dalvik/vm/compiler/codegen/
Optimizer.h 38 struct LIR *head,
  /external/bzip2/
bz-html.xsl 14 <xsl:template name="user.head.content">
  /external/clearsilver/man/man3/
hdf_register_fileload.3 25 hdf - pointer to a head HDF node
  /external/dhcpcd/dhcpcd-hooks/
20-resolv.conf 40 # Assemble resolv.conf using our head and tail files
43 if [ -f /etc/resolv.conf.head ]; then
44 cat /etc/resolv.conf.head >> "${cf}"
46 echo "# /etc/resolv.conf.head can replace this line" >> "${cf}"
  /external/skia/src/images/
SkImageEncoder_Factory.cpp 25 const EncodeReg* curr = EncodeReg::Head();
  /external/webkit/WebCore/wml/
WMLTagNames.in 13 head interfaceName=WMLElement
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
wpabuf.h 75 * wpabuf_head - Get pointer to the head of the buffer data
77 * Returns: Pointer to the head of the buffer data
92 * wpabuf_mhead - Get modifiable pointer to the head of the buffer data
94 * Returns: Pointer to the head of the buffer data
  /external/yaffs2/yaffs2/
patch-ker.sh 50 VERSION=`grep -s VERSION <$LINUXDIR/Makefile | head -n 1 | sed s/'VERSION = '//`
51 PATCHLEVEL=`grep -s PATCHLEVEL <$LINUXDIR/Makefile | head -n 1 | sed s/'PATCHLEVEL = '//`
52 SUBLEVEL=`grep -s SUBLEVEL <$LINUXDIR/Makefile | head -n 1 | sed s/'SUBLEVEL = '//`
64 YAFFS_PATCHED_STRING=`grep -s yaffs <$KCONFIG | head -n 1`
  /frameworks/base/core/java/android/net/http/
RequestFeeder.java 39 * Put request back on head of queue
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
genhd.h 44 unsigned char head; member in struct:partition
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/mtd/
nftl.h 38 int head,sect,cyl; member in struct:NFTLrecord
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
genhd.h 44 unsigned char head; member in struct:partition
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/mtd/
nftl.h 38 int head,sect,cyl; member in struct:NFTLrecord
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
genhd.h 44 unsigned char head; member in struct:partition
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/mtd/
nftl.h 38 int head,sect,cyl; member in struct:NFTLrecord
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
genhd.h 44 unsigned char head; member in struct:partition
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/mtd/
nftl.h 38 int head,sect,cyl; member in struct:NFTLrecord
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
genhd.h 44 unsigned char head; member in struct:partition
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/mtd/
nftl.h 38 int head,sect,cyl; member in struct:NFTLrecord

Completed in 417 milliseconds

<<21222324252627282930>>