/art/test/149-suspend-all-stress/ |
check | 18 tail -n 1 "$2" | diff --strip-trailing-cr -q "$1" - >/dev/nul
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
p2.cpp | 12 template<typename Head, typename ...Tail> 13 void recurse_until_fail(const Head &, const Tail &...tail) { // expected-note{{candidate function template not viable: requires at least 1 argument, but 0 were provided}} 14 recurse_until_fail(tail...); // expected-error{{no matching function for call to 'recurse_until_fail'}} \
|
/external/eigen/doc/snippets/ |
MatrixBase_end_int.cpp | 3 cout << "Here is v.tail(2):" << endl << v.tail(2) << endl; 4 v.tail(2).setZero();
|
MatrixBase_template_int_end.cpp | 3 cout << "Here is v.tail(2):" << endl << v.tail<2>() << endl; 4 v.tail<2>().setZero();
|
Tutorial_commainit_01b.cpp | 4 m.col(2).tail(2) << 6, 9;
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AsmParser/ |
macro-max-depth.s | 5 .macro rec head, tail:vararg 6 .ifnb \tail 7 rec \tail
|
/external/u-boot/scripts/ |
gcc-version.sh | 25 MAJOR=$(echo __GNUC__ | $compiler -E -xc - | tail -n 1) 26 MINOR=$(echo __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1) 28 PATCHLEVEL=$(echo __GNUC_PATCHLEVEL__ | $compiler -E -xc - | tail -n 1)
|
/external/mesa3d/src/util/ |
u_vector.c | 31 * removed from tail. head and tail are free-running uint32_t indices and we 33 * number of bytes in the queue is always head - tail, even in case of 44 vector->tail = 0; 58 if (vector->head - vector->tail == vector->size) { 63 src_tail = vector->tail & (vector->size - 1); 64 dst_tail = vector->tail & (size - 1); 76 split = u_align_u32(vector->tail, vector->size); 77 assert(vector->tail <= split && split < vector->head); 79 split - vector->tail); [all...] |
/external/e2fsprogs/contrib/android/ |
base_fs.h | 11 struct block_range *tail; member in struct:basefs_entry
|
/external/grpc-grpc/src/core/lib/gpr/ |
mpscq.cc | 27 q->tail = &q->stub; 33 GPR_ASSERT(q->tail == &q->stub); 50 gpr_mpscq_node* tail = q->tail; local 51 gpr_mpscq_node* next = (gpr_mpscq_node*)gpr_atm_acq_load(&tail->next); 52 if (tail == &q->stub) { 58 q->tail = next; 59 tail = next; 60 next = (gpr_mpscq_node*)gpr_atm_acq_load(&tail->next); 64 q->tail = next [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/ |
literals.py | 20 all, tail = m.group(0, 1)
22 esc = simple_escapes.get(tail)
25 if tail.startswith("x"):
26 hexes = tail[1:]
28 raise ValueError("invalid hex string escape ('\\%s')" % tail)
32 raise ValueError("invalid hex string escape ('\\%s')" % tail)
35 i = int(tail, 8)
37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
|
/external/python/cpython2/Lib/lib2to3/pgen2/ |
literals.py | 20 all, tail = m.group(0, 1) 22 esc = simple_escapes.get(tail) 25 if tail.startswith("x"): 26 hexes = tail[1:] 28 raise ValueError("invalid hex string escape ('\\%s')" % tail) 32 raise ValueError("invalid hex string escape ('\\%s')" % tail) 35 i = int(tail, 8) 37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
|
/external/python/cpython3/Lib/lib2to3/pgen2/ |
literals.py | 20 all, tail = m.group(0, 1) 22 esc = simple_escapes.get(tail) 25 if tail.startswith("x"): 26 hexes = tail[1:] 28 raise ValueError("invalid hex string escape ('\\%s')" % tail) 32 raise ValueError("invalid hex string escape ('\\%s')" % tail) from None 35 i = int(tail, 8) 37 raise ValueError("invalid octal string escape ('\\%s')" % tail) from None
|
/external/tensorflow/tensorflow/contrib/ignite/python/tests/bin/ |
start-igfs.sh | 20 tail -f nohup.out
|
/external/jemalloc_new/include/jemalloc/internal/ |
hash.h | 100 /* tail */ 102 const uint8_t *tail = (const uint8_t *) (data + nblocks*4); local 107 case 3: k1 ^= tail[2] << 16; 108 case 2: k1 ^= tail[1] << 8; 109 case 1: k1 ^= tail[0]; k1 *= c1; k1 = hash_rotl_32(k1, 15); 171 /* tail */ 173 const uint8_t *tail = (const uint8_t *) (data + nblocks*16); local 180 case 15: k4 ^= tail[14] << 16; 181 case 14: k4 ^= tail[13] << 8; 182 case 13: k4 ^= tail[12] << 0 258 const uint8_t *tail = (const uint8_t*)(data + nblocks*16); local [all...] |
/external/okhttp/okio/okio/src/main/java/okio/ |
InflaterSource.java | 66 Segment tail = sink.writableSegment(1); local 67 int bytesInflated = inflater.inflate(tail.data, tail.limit, Segment.SIZE - tail.limit); 69 tail.limit += bytesInflated; 75 if (tail.pos == tail.limit) { 76 // We allocated a tail segment, but didn't end up needing it. Recycle! 77 sink.head = tail.pop(); 78 SegmentPool.recycle(tail); [all...] |
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/ |
InflaterSource.java | 68 Segment tail = sink.writableSegment(1); local 69 int bytesInflated = inflater.inflate(tail.data, tail.limit, Segment.SIZE - tail.limit); 71 tail.limit += bytesInflated; 77 if (tail.pos == tail.limit) { 78 // We allocated a tail segment, but didn't end up needing it. Recycle! 79 sink.head = tail.pop(); 80 SegmentPool.recycle(tail); [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/RISCV/ |
tail-call-invalid.s | 4 tail 1234 # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label 5 tail %pcrel_hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label 6 tail %pcrel_lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label 7 tail %pcrel_hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label 8 tail %pcrel_lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label 9 tail %hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label 10 tail %lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label 11 tail %hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label 12 tail %lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name label
|
/external/u-boot/lib/ |
membuff.c | 16 /* set mb->head and mb->tail so the buffers look empty */ 18 mb->tail = mb->start; 36 * if head is ahead of tail, we can write from head until the end of 39 if (mb->head >= mb->tail) { 50 * if the tail isn't at start of the buffer, then we can 53 if ((maxlen < 0 || len < maxlen) && mb->tail != mb->start) { 59 /* otherwise now we can write until head almost reaches tail */ 62 len = mb->tail - mb->head - 1; 106 * in this case head is ahead of tail, so we must return data between 107 *'tail' and 'head [all...] |
/external/u-boot/fs/jffs2/ |
mergesort.c | 15 struct b_node *p, *q, *e, **tail; local 22 tail = &list->listHead; 45 *tail = e; 46 tail = &e->next;
|
/art/libdexfile/dex/ |
signature.cc | 64 std::string_view tail(rhs); 65 if (!StartsWith(tail, "(")) { 68 tail.remove_prefix(1); // "("; 73 if (!StartsWith(tail, param)) { 76 tail.remove_prefix(param.length()); 79 if (!StartsWith(tail, ")")) { 82 tail.remove_prefix(1); // ")"; 83 return tail == dex_file_->StringByTypeIdx(proto_id_->return_type_idx_);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/ |
ElementInclude.py | 116 if e.tail:
117 node.tail = (node.tail or "") + e.tail
127 node.tail = (node.tail or "") + text + (e.tail or "")
129 elem.text = (elem.text or "") + text + (e.tail or "")
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/ |
ElementInclude.py | 117 if e.tail:
118 node.tail = (node.tail or "") + e.tail
128 node.tail = (node.tail or "") + text + (e.tail or "")
130 elem.text = (elem.text or "") + text + (e.tail or "")
|
/external/harfbuzz_ng/.ci/ |
fail.sh | 4 last=$(tail -1 $f)
|
/external/python/cpython2/Lib/xml/etree/ |
ElementInclude.py | 116 if e.tail: 117 node.tail = (node.tail or "") + e.tail 127 node.tail = (node.tail or "") + text + (e.tail or "") 129 elem.text = (elem.text or "") + text + (e.tail or "")
|