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

<<21222324252627282930>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
posixpath.py 84 # Split a path in head (everything up to the last '/') and tail (the
86 # '/' in the path, head will be empty.
87 # Trailing '/'es are stripped from head unless it is the root.
90 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
93 head, tail = p[:i], p[i:]
94 if head and head != '/'*len(head):
95 head = head.rstrip('/'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
posixpath.py 84 # Split a path in head (everything up to the last '/') and tail (the
86 # '/' in the path, head will be empty.
87 # Trailing '/'es are stripped from head unless it is the root.
90 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
93 head, tail = p[:i], p[i:]
94 if head and head != '/'*len(head):
95 head = head.rstrip('/'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 84 # Split a path in head (everything up to the last '/') and tail (the
86 # '/' in the path, head will be empty.
87 # Trailing '/'es are stripped from head unless it is the root.
90 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
93 head, tail = p[:i], p[i:]
94 if head and head != '/'*len(head):
95 head = head.rstrip('/'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 84 # Split a path in head (everything up to the last '/') and tail (the
86 # '/' in the path, head will be empty.
87 # Trailing '/'es are stripped from head unless it is the root.
90 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
93 head, tail = p[:i], p[i:]
94 if head and head != '/'*len(head):
95 head = head.rstrip('/'
    [all...]
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LMcovar.h 45 r.col(k).head(j+1) -= r.col(j).head(j+1) * temp;
54 r.col(j).head(j+1) += r.col(k).head(j+1) * r(j,k);
55 r.col(k).head(k+1) *= r(k,k);
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
covar.h 33 r.col(k).head(j+1) -= r.col(j).head(j+1) * temp;
42 r.col(j).head(j+1) += r.col(k).head(j+1) * r(j,k);
43 r.col(k).head(k+1) *= r(k,k);
  /external/mesa3d/src/gallium/auxiliary/util/
u_ringbuffer.c 17 unsigned head; member in struct:util_ringbuffer
61 return (ring->tail - (ring->head + 1)) & ring->mask;
98 ring->buf[ring->head] = packet[i];
99 ring->head++;
100 ring->head &= ring->mask;
  /external/skia/src/core/
SkLRUCache.h 37 Entry* node = fLRU.head();
41 node = fLRU.head();
51 if (entry != fLRU.head()) {
54 } // else it's already at head position, don't need to do anything
83 for (Entry* e = fLRU.head(); e; e = fLRU.head()) {
  /external/freetype/src/base/
ftutil.c 251 cur = list->head;
284 list->head = node;
302 after = list->head;
312 list->head = node;
334 list->head = after;
370 node->next = list->head;
371 list->head->prev = node;
372 list->head = node;
390 cur = list->head;
422 cur = list->head;
    [all...]
  /external/icu/icu4c/source/common/
ulist.c 28 UListNode *head; member in struct:UList
51 newList->head = NULL;
66 list->head = newItem;
72 // p is the list head.
73 list->head = p->next;
150 newItem->next = list->head;
151 list->head->previous = newItem;
152 list->head = newItem;
162 for (pointer = list->head; pointer != NULL; pointer = pointer->next) {
176 for (pointer = list->head; pointer != NULL; pointer = pointer->next)
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftutil.c 251 cur = list->head;
284 list->head = node;
302 after = list->head;
312 list->head = node;
334 list->head = after;
370 node->next = list->head;
371 list->head->prev = node;
372 list->head = node;
390 cur = list->head;
422 cur = list->head;
    [all...]
  /external/syslinux/core/mem/
malloc.c 73 struct free_arena_header *head = &__core_malloc_head[heap]; local
80 for ( fp = head->next_free ; fp != head ; fp = fp->next_free ) {
130 struct free_arena_header *head; local
146 head = &__core_malloc_head[ARENA_HEAP_GET(ah->a.attrs)];
213 nah->prev_free = head->prev_free;
214 nah->next_free = head;
215 head->prev_free = nah;
218 nah->next_free = head->next_free;
219 nah->prev_free = head;
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/mzscheme/
std_vector.i 58 Scheme_Object *head, *tail;
62 head = scheme_car(tail);
64 $1.push_back(*((T*)SWIG_MustGetPtr(head,
91 Scheme_Object *head, *tail;
94 head = scheme_car(tail);
96 temp.push_back(*((T*) SWIG_MustGetPtr(head,
135 Scheme_Object *head = scheme_car($input);
136 if (SWIG_ConvertPtr(head,(void**) &x,
175 Scheme_Object *head = scheme_car($input);
176 if (SWIG_ConvertPtr(head,(void**) &x
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
cg_arcs.c 184 if (child->cg.cyc.head != child)
194 child = child->cg.cyc.head;
226 if (parent->cg.cyc.head != parent)
228 parent->cg.cyc.head->cg.child_time += share;
229 parent->cg.cyc.head->cg.prop.child += prop_share;
284 if (sym->cg.cyc.head == sym && sym->cg.cyc.next)
304 if (!(sym->cg.cyc.head == sym && sym->cg.cyc.next != 0))
314 cyc->cg.cyc.head = cyc; /* pointer to head of cycle */
318 printf (" is the head of cycle %d\n", num))
362 Sym *head, *parent, *member; local
    [all...]
  /external/libnetfilter_conntrack/src/conntrack/
parse_mnl.c 340 set_bit(ATTR_TCP_STATE, ct->head.set);
347 set_bit(ATTR_TCP_WSCALE_ORIG, ct->head.set);
354 set_bit(ATTR_TCP_WSCALE_REPL, ct->head.set);
361 set_bit(ATTR_TCP_FLAGS_ORIG, ct->head.set);
362 set_bit(ATTR_TCP_MASK_ORIG, ct->head.set);
369 set_bit(ATTR_TCP_FLAGS_REPL, ct->head.set);
370 set_bit(ATTR_TCP_MASK_REPL, ct->head.set);
411 set_bit(ATTR_SCTP_STATE, ct->head.set);
417 set_bit(ATTR_SCTP_VTAG_ORIG, ct->head.set);
423 set_bit(ATTR_SCTP_VTAG_REPL, ct->head.set)
    [all...]
  /external/ipsec-tools/src/racoon/
getcertsbyname.c 128 struct certinfo head, *cur; local
136 memset(&head, 0, sizeof(head));
137 cur = &head;
191 *res = head.ci_next;
197 if (error && head.ci_next)
198 freecertinfo(head.ci_next);
215 struct certinfo head, *cur; local
221 memset(&head, 0, sizeof(head));
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
arsup.c 50 bfd *head; local
56 head = arch->archive_next;
57 while (head != NULL)
59 next = head->archive_next;
60 function (head, (bfd *) NULL);
61 head = next;
78 for (head = arch->archive_next; head; head = head->archive_next
    [all...]
  /frameworks/minikin/tests/unittest/
CmapCoverageTest.cpp 73 size_t head = 0; local
74 head = writeU16(4, out.data(), head); // format
75 head = writeU16(finalLength, out.data(), head); // length
76 head = writeU16(0, out.data(), head); // langauge
80 head = writeU16(segmentCount * 2, out.data(), head); // segCountX2
81 head = writeU16(searchRange, out.data(), head); // searchRang
122 size_t head = 0; local
159 size_t head = 0; local
179 size_t head = 0; local
198 size_t head = 0; local
273 size_t head = writeU16(platformId, out.data(), currentEncodingTableHead); local
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/
ctx.c 81 BN_POOL_ITEM *head, *current, *tail; member in struct:bignum_pool
239 p->head = p->current = p->tail = NULL;
244 while (p->head) {
246 BN_clear_free(&p->head->vals[i]);
249 p->current = p->head->next;
250 OPENSSL_free(p->head);
251 p->head = p->current;
270 if (!p->head) {
271 p->head = p->current = p->tail = item;
285 p->current = p->head;
    [all...]
  /external/svox/pico/lib/
picodata.c 188 PICODBG_WARN(("problem getting item, incomplete head, underflow"));
378 picoos_uint8 picodata_is_valid_itemhead(const picodata_itemhead_t *head) {
379 if ((NULL != head) && is_valid_itemtype(head->type)) {
392 picodata_itemhead_t *head, picoos_uint8 *content,
396 head->type = buf[PICODATA_ITEMIND_TYPE];
397 head->info1 = buf[PICODATA_ITEMIND_INFO1];
398 head->info2 = buf[PICODATA_ITEMIND_INFO2];
399 head->len = buf[PICODATA_ITEMIND_LEN];
400 *clen = head->len
537 picodata_itemhead_t head; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
CrashRecoveryContext.cpp 68 CrashRecoveryContextCleanup *i = head;
69 tlIsRecoveringFromCrash.set(head);
102 if (head)
103 head->prev = cleanup;
104 cleanup->next = head;
105 head = cleanup;
112 if (cleanup == head) {
113 head = cleanup->next;
114 if (head)
115 head->prev = 0
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
plot_bars.sh 57 head -n 1 | sed 's/_/ /g')
59 head -n 1 | sed 's/_/ /g')
63 head -n 1)
67 | cut -f 1 | sort | uniq | head -n 1 )
107 file_name=$(echo "$labels" | grep "^LABEL.$figure" | cut -f 5 | head -n 1)
125 head -n 1)
137 head -n 1)
147 y=$(echo "$bars" | grep "BAR.$figure.$set" | cut -f 4 | head -n 1)
234 head -n 1 | sed 's/_/ /g')
269 | cut -f 8 | head -n 1
    [all...]
  /external/curl/lib/
pipeline.c 71 /* Find the head of the recv pipe, if any */
72 if(conn->recv_pipe && conn->recv_pipe->head) {
73 struct Curl_easy *recv_handle = conn->recv_pipe->head->ptr;
106 struct curl_llist_element *sendhead = conn->send_pipe->head;
114 if(pipeline == conn->send_pipe && sendhead != conn->send_pipe->head) {
115 /* this is a new one as head, expire it */
117 Curl_expire(conn->send_pipe->head->ptr, 0);
138 curr = conn->send_pipe->head;
144 if(conn->send_pipe->head) {
149 infof(conn->data, "%p is at send pipe head B!\n"
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ColorDelegator.py 176 head, tail = item
177 self.tag_remove("SYNC", head, tail)
178 item = self.tag_prevrange("SYNC", head)
180 head = item[1]
182 head = "1.0"
185 next = head
195 ##print head, "get", mark, next, "->", repr(line)
207 head + "+%dc" % a,
208 head + "+%dc" % b)
214 head + "+%dc" % a
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ColorDelegator.py 176 head, tail = item
177 self.tag_remove("SYNC", head, tail)
178 item = self.tag_prevrange("SYNC", head)
180 head = item[1]
182 head = "1.0"
185 next = head
195 ##print head, "get", mark, next, "->", repr(line)
207 head + "+%dc" % a,
208 head + "+%dc" % b)
214 head + "+%dc" % a
    [all...]

Completed in 9069 milliseconds

<<21222324252627282930>>