Searched refs:tail (Results 151 - 175 of 389) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.h38 // keeps inserting at head/tail of block
39 inline void setPosition(BasicBlock *, bool tail);
178 bool tail; member in class:nv50_ir::BuildUtil
203 tail = atTail;
213 tail = after;
237 tail ? bb->insertTail(i) : bb->insertHead(i);
239 if (tail) {
/external/mesa3d/src/glx/
H A Ddri_common.c357 struct glx_config head, *tail, *m; local
359 tail = &head;
362 tail->next = createDriMode(core, m, driConfigs);
363 if (tail->next == NULL) {
369 tail = tail->next;
/external/strace/
H A Dunwind.c84 struct call_t *tail; member in struct:queue_t
114 tcp->queue->tail = NULL;
506 queue->tail = call;
508 queue->tail->next = call;
509 queue->tail = call;
541 queue->tail = NULL;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRUnbufferedCommonTreeNodeStream.h56 NSUInteger tail; variable
72 @property (assign, getter=getTail, setter=setTail:) NSUInteger tail; variable
/external/eigen/Eigen/src/Core/products/
H A DSelfadjointRank2Update.h33 (numext::conj(alpha) * numext::conj(u.coeff(i))) * v.tail(size-i)
34 + (alpha * numext::conj(v.coeff(i))) * u.tail(size-i);
/external/iproute2/tc/
H A Dq_cbq.c60 struct rtattr *tail; local
166 tail = NLMSG_TAIL(n);
177 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
197 struct rtattr *tail; local
412 tail = NLMSG_TAIL(n);
432 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
H A Df_flow.c138 struct rtattr *tail; local
153 tail = NLMSG_TAIL(n);
265 tail->rta_len = (void *)NLMSG_TAIL(n) - (void *)tail;
H A Dm_police.c140 struct rtattr *tail; local
296 tail = NLMSG_TAIL(n);
308 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
H A Dm_xt.c120 struct rtattr *tail; local
224 tail = NLMSG_TAIL(n);
246 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
H A Dm_xt_old.c212 struct rtattr *tail; local
310 tail = NLMSG_TAIL(n);
332 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
H A Dq_hfsc.c151 struct rtattr *tail; local
212 tail = NLMSG_TAIL(n);
222 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
H A Dtc_qdisc.c158 struct rtattr *tail; local
165 tail = NLMSG_TAIL(&req.n);
172 tail->rta_len = (void *)NLMSG_TAIL(&req.n) - (void *)tail;
/external/javassist/src/main/javassist/
H A DCtMember.java46 private CtMember consTail; // constructor tail
93 static int count(CtMember head, CtMember tail) { argument
95 while (head != tail) {
/external/libmtp/src/
H A Dplaylist-spl.c342 text_t* tail = NULL; local
399 tail = head;
402 tail->next = malloc(sizeof(text_t));
403 tail = tail->next;
407 tail->text = utf16_to_utf8(device, (uint16_t*) w);
410 IF_DEBUG() printf("line: %s\n", tail->text);
437 tail->next = NULL;
/external/libpcap/
H A Drunlex.sh214 prefix=`sed -n 's/%option[ ][ ]*prefix="\(.*\)".*/\1/p' "$@" | tail -1`
/external/linux-tools-perf/src/tools/perf/util/
H A Devlist.h177 unsigned long tail)
182 * ensure all reads are done before we write the tail out.
185 pc->data_tail = tail;
176 perf_mmap__write_tail(struct perf_mmap *md, unsigned long tail) argument
/external/proguard/examples/
H A Dscala.pro76 scala.concurrent.forkjoin.LinkedTransferQueue$PaddedAtomicReference tail;
/external/selinux/policycoreutils/gui/
H A Dhtml_util.py142 tail = '\n </body>\n</html>'
162 doc += tail
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Ddatetimeutil.py230 tail = val[3:].strip()
231 tail = tail.replace("+"," +").replace("-"," -")
232 for item in tail.split():
/external/e2fsprogs/util/
H A Dsymlinks.c165 char *p, *np, *lp, *tail, *msg; local
229 /* point tail at first part of lpath that differs from path */
232 tail = lp = lpath;
236 tail = lp;
241 /* now create new, with "../"s followed by tail */
251 strcpy (np, tail);
/external/freetype/include/
H A Dfttypes.h565 /* tail :: The tail (last element) of doubly-linked list. */
570 FT_ListNode tail; member in struct:FT_ListRec_
/external/jsoncpp/src/test_lib_json/
H A Djsontest.cpp148 PredicateContext *tail = lastNode->next_; local
149 if ( tail != 0 && tail->failure_ != 0 )
151 messageTarget_ = tail->failure_;
153 // Remove tail from list
/external/mtpd/
H A Dmtpd.c333 char *tail = envargs; local
339 *tail++ = 'A' + ((*p >> 4) & 0x0F);
340 *tail++ = 'A' + (*p & 0x0F);
343 *tail = 0;
/external/pdfium/third_party/freetype/include/
H A Dfttypes.h565 /* tail :: The tail (last element) of doubly-linked list. */
570 FT_ListNode tail; member in struct:FT_ListRec_
/external/eigen/test/
H A Dhouseholder.cpp46 if(rows>=2) VERIFY_IS_MUCH_SMALLER_THAN(v1.tail(rows-1).norm(), v1.norm());
56 if(even) v1.tail(rows-1).setZero();
67 if(even) v1.tail(rows-1).setZero();

Completed in 1250 milliseconds

1234567891011>>