HomeSort by relevance Sort by last modified time
    Searched refs:tail (Results 326 - 350 of 890) sorted by null

<<11121314151617181920>>

  /external/parameter-framework/upstream/tools/xmlGenerator/
lightRoutingUpdate.sh 56 tee /dev/stderr | tail -2 | sed '1{s/\r//;q}' |
  /external/python/cpython2/Lib/idlelib/
GrepDialog.py 41 head, tail = os.path.splitext(base)
42 if not tail:
43 tail = ".py"
44 self.globvar.set(os.path.join(dir, "*" + tail))
  /external/python/cpython2/Lib/lib2to3/pgen2/
driver.py 111 head, tail = os.path.splitext(gt)
112 if tail == ".txt":
113 tail = ""
114 return head + tail + ".".join(map(str, sys.version_info)) + ".pickle"
  /external/python/cpython2/Lib/
modulefinder.py 145 q, tail = self.find_head_package(parent, name)
146 m = self.load_tail(q, tail)
193 tail = name[i+1:]
196 tail = ""
203 self.msgout(4, "find_head_package ->", (q, tail))
204 return q, tail
210 self.msgout(4, "find_head_package ->", (q, tail))
211 return q, tail
215 def load_tail(self, q, tail):
216 self.msgin(4, "load_tail", q, tail)
    [all...]
  /external/python/cpython3/Lib/idlelib/
grep.py 70 head, tail = os.path.splitext(base)
71 if not tail:
72 tail = ".py"
73 self.globvar.set(os.path.join(dir, "*" + tail))
  /external/python/cpython3/Lib/lib2to3/pgen2/
driver.py 108 head, tail = os.path.splitext(gt)
109 if tail == ".txt":
110 tail = ""
111 return head + tail + ".".join(map(str, sys.version_info)) + ".pickle"
  /external/python/cpython3/Lib/
modulefinder.py 121 q, tail = self.find_head_package(parent, name)
122 m = self.load_tail(q, tail)
169 tail = name[i+1:]
172 tail = ""
179 self.msgout(4, "find_head_package ->", (q, tail))
180 return q, tail
186 self.msgout(4, "find_head_package ->", (q, tail))
187 return q, tail
191 def load_tail(self, q, tail):
192 self.msgin(4, "load_tail", q, tail)
    [all...]
  /external/selinux/libsepol/cil/src/
cil_list.h 37 struct cil_list_item *tail; member in struct:cil_list
  /external/skia/src/core/
SkArenaAllocList.h 48 Iter tail() { return Iter(fTail); } function in class:SkArenaAllocList
  /external/skqp/src/core/
SkArenaAllocList.h 48 Iter tail() { return Iter(fTail); } function in class:SkArenaAllocList
  /external/swiftshader/third_party/LLVM/test/lib/
llvm2cpp.exp 28 set filename [file tail $test]
84 set execname [file tail $executable]
  /external/toybox/scripts/
bloatcheck 66 diff -U 0 $DIFF1 $DIFF2 | tail -n +3 | sed -n 's/^\([-+]\)/\1 /p' \
  /external/u-boot/cmd/
setexpr.c 102 /* move tail if needed */
104 int tail, len; local
108 tail = ssize - (p + len - string);
110 debug("## tail len %d\n", tail);
112 memmove(p + nlen, p + olen, tail);
  /external/u-boot/drivers/crypto/fsl/
jr.h 66 /* Tail index would be used by s/w ehile enqueuing to determine if
69 /* Also in case of deq tail will be incremented only in case of
72 int tail; member in struct:jobring
73 /* Read index of the output ring. It may not match with tail in case
  /external/u-boot/include/
membuff.h 15 * Data in the buffer extends from @tail to @head: it is written in at
16 * @head and read out from @tail. The membuff is empty when @head == @tail
17 * and full when adding another character would make @head == @tail. We
19 * to determine whether (when @head == @tail) the membuff is empty or full.
26 * tail head
30 * head tail
36 char *tail; /** current buffer tail */ member in struct:membuff
42 * Initialise head and tail pointers so that the membuff becomes empty
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
build_py.py 156 tail = []
161 tail.insert(0, path[-1])
164 tail.insert(0, pdir)
165 return os.path.join(*tail)
172 # by 'tail' (which should be the same as the original value
176 tail.insert(0, pdir)
178 if tail:
179 return os.path.join(*tail)
  /external/arm-optimized-routines/math/
pow.c 32 /* Compute y+TAIL = log(x) where the rounded result is y and TAIL has about
36 log_inline (uint64_t ix, double_t *tail)
101 *tail = hi - y + lo;
177 double_t kd, z, r, r2, scale, tail, tmp; local
221 /* 2^(k/N) ~= scale * (1 + tail). */
224 tail = asdouble (T[idx]);
227 /* exp(x) = 2^(k/N) * exp(r) ~= scale + scale * (tail + exp(r) - 1). */
233 tmp = tail + r + r2 * C2 + r * r2 * (C3 + r * C4);
235 tmp = tail + r + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5)
    [all...]
  /external/grpc-grpc/src/core/lib/iomgr/
tcp_server_custom.cc 66 grpc_tcp_listener* tail; member in struct:grpc_tcp_server
103 s->tail = nullptr;
105 s->shutdown_starting.tail = nullptr;
308 s->tail->next = sp;
310 s->tail = sp;
338 if (s->tail != nullptr) {
339 port_index = s->tail->port_index + 1;
  /external/iproute2/tc/
m_ematch.c 179 struct rtattr *tail = NLMSG_TAIL(n); local
220 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
338 struct rtattr *tail, *tail_list; local
345 tail = NLMSG_TAIL(n);
356 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
  /external/python/cpython2/Lib/distutils/command/
build_py.py 157 tail = []
162 tail.insert(0, path[-1])
165 tail.insert(0, pdir)
166 return os.path.join(*tail)
173 # by 'tail' (which should be the same as the original value
177 tail.insert(0, pdir)
179 if tail:
180 return os.path.join(*tail)
  /external/python/cpython3/Lib/distutils/command/
build_py.py 156 tail = []
161 tail.insert(0, path[-1])
164 tail.insert(0, pdir)
165 return os.path.join(*tail)
172 # by 'tail' (which should be the same as the original value
176 tail.insert(0, pdir)
178 if tail:
179 return os.path.join(*tail)
  /external/e2fsprogs/debugfs/
recovery.c 201 struct journal_block_tail *tail; local
208 tail = (struct journal_block_tail *)((char *)buf + j->j_blocksize -
210 provided = tail->t_checksum;
211 tail->t_checksum = 0;
213 tail->t_checksum = provided;
836 struct journal_revoke_tail *tail; local
843 tail = (struct journal_revoke_tail *)((char *)buf + j->j_blocksize -
845 provided = tail->r_checksum;
846 tail->r_checksum = 0;
848 tail->r_checksum = provided
    [all...]
  /external/e2fsprogs/e2fsck/
recovery.c 201 struct journal_block_tail *tail; local
208 tail = (struct journal_block_tail *)((char *)buf + j->j_blocksize -
210 provided = tail->t_checksum;
211 tail->t_checksum = 0;
213 tail->t_checksum = provided;
836 struct journal_revoke_tail *tail; local
843 tail = (struct journal_revoke_tail *)((char *)buf + j->j_blocksize -
845 provided = tail->r_checksum;
846 tail->r_checksum = 0;
848 tail->r_checksum = provided
    [all...]
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 318 mat.diagonal().tail(size-k).cwiseAbs().maxCoeff(&index_of_biggest_in_corner);
328 mat.col(k).tail(s).swap(mat.col(index_of_biggest_in_corner).tail(s));
372 ret = ret && (mat.col(j).tail(size-j-1).array()==Scalar(0)).all();
434 w.tail(rs) -= wj * mat.col(j).tail(rs);
436 mat.col(j).tail(rs) += (sigma*numext::conj(wj)/gamma)*w.tail(rs);
505 abs_col_sum = m_matrix.col(col).tail(size - col).template lpNorm<1>() + m_matrix.row(col).head(col).template lpNorm<1>();
507 abs_col_sum = m_matrix.col(col).head(col).template lpNorm<1>() + m_matrix.row(col).tail(size - col).template lpNorm<1>()
    [all...]
  /external/selinux/libsepol/src/
link.c 1264 avrule_t *cur, *new_rule = NULL, *tail; local
1367 role_trans_rule_t *cur, *new_rule = NULL, *tail; local
1424 role_allow_rule_t *cur, *new_rule = NULL, *tail; local
1467 filename_trans_rule_t *cur, *new_rule, *tail; local
1559 cond_node_t *cur, *new_node = NULL, *tail; local
    [all...]

Completed in 1895 milliseconds

<<11121314151617181920>>