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

1 2 3 4 5 67 8 91011>>

  /external/ltp/testcases/kernel/fs/fs-bench/
fs-bench-test.sh 18 MAXFILE=`tar cBf - 00 | tar tvBf - 2>&1 | tail -n 1 | awk '{print $6;}'| awk -F'/' '{print $4;}'`
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
workaround1209.cpp 46 if (bb->tail()->opcode() == SpvOpUnreachable) {
50 context()->KillInst(&*bb->tail());
  /external/tensorflow/tensorflow/tools/ci_build/
code_link_check.sh 24 target=`echo $i|awk -F: '{print $4}'|tail -c +27`
  /external/v8/src/heap/
objects-visiting.cc 32 T* tail = nullptr; local
50 DCHECK_NOT_NULL(tail);
51 WeakListVisitor<T>::SetWeakNext(tail, retained);
53 HeapObject* slot_holder = WeakListVisitor<T>::WeakNextHolder(tail);
60 // Retained object is new tail.
63 tail = candidate;
65 // tail is a live object, visit it.
66 WeakListVisitor<T>::VisitLiveObject(heap, tail, retainer);
74 if (tail != nullptr) WeakListVisitor<T>::SetWeakNext(tail, undefined)
    [all...]
  /external/v8/tools/
plot-timer-events 57 | tail -n1 | awk -F, '{print $3}'`
59 | tail -n1 | awk -F, '{print $3}'`
65 | tail -n1 | awk -F, '{print $3}'`
67 | tail -n1 | awk -F, '{print $3}'`
  /external/zlib/
update_zlib.sh 39 grep -A21 'Copyright notice:' src/README | tail -20 > NOTICE
  /frameworks/av/media/libstagefright/foundation/
AStringUtils.cpp 54 // last pattern must match tail
58 const char *tail = str + strLen - len; local
59 return !Compare(tail, pattern, len, ignoreCase);
  /frameworks/av/services/audioflinger/
FastMixerDumpState.cpp 100 // the mean account for 99.73% of the population. So if we take each tail to be 1/1000 of the
103 uint32_t *tail = n >= kTailDenominator ? new uint32_t[n] : NULL; local
108 if (tail != NULL) {
109 tail[j] = wallNs;
150 if (tail != NULL) {
151 qsort(tail, n, sizeof(uint32_t), compare_uint32_t);
152 // assume same number of tail samples on each side, left and right
156 left.add(tail[i]);
157 right.add(tail[n - (i + 1)]);
161 " left tail: mean=%.2f min=%.2f max=%.2f stddev=%.2f\n
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
classfix.py 89 head, tail = os.path.split(filename)
90 tempname = os.path.join(head, '@' + tail)
167 tail = line[b0:] # Unmatched rest of line
170 return head + ':' + tail
187 return head + '(' + basepart + '):' + tail
  /external/arm-optimized-routines/math/
exp.c 84 double_t kd, z, r, r2, scale, tail, tmp; local
129 /* 2^(k/N) ~= scale * (1 + tail). */
132 tail = asdouble (T[idx]);
135 /* exp(x) = 2^(k/N) * exp(r) ~= scale + scale * (tail + exp(r) - 1). */
141 tmp = tail + r + r2 * C2 + r * r2 * (C3 + r * C4);
143 tmp = tail + r + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5);
145 tmp = tail + r + r2 * (0.5 + r * C3) + r2 * r2 * (C4 + r * C5 + r2 * C6);
exp2.c 80 double_t kd, r, r2, scale, tail, tmp; local
111 /* 2^(k/N) ~= scale * (1 + tail). */
114 tail = asdouble (T[idx]);
117 /* exp2(x) = 2^(k/N) * 2^r ~= scale + scale * (tail + 2^r - 1). */
123 tmp = tail + r * C1 + r2 * C2 + r * r2 * (C3 + r * C4);
125 tmp = tail + r * C1 + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5);
127 tmp = tail + r * C1 + r2 * (0.5 + r * C3) + r2 * r2 * (C4 + r * C5 + r2 * C6);
  /external/python/cpython2/Tools/scripts/
classfix.py 89 head, tail = os.path.split(filename)
90 tempname = os.path.join(head, '@' + tail)
167 tail = line[b0:] # Unmatched rest of line
170 return head + ':' + tail
187 return head + '(' + basepart + '):' + tail
  /external/skia/src/opts/
SkRasterPipeline_opts.h 150 SI void load3(const uint16_t* ptr, size_t tail, U16* r, U16* g, U16* b) {
155 SI void load4(const uint16_t* ptr, size_t tail, U16* r, U16* g, U16* b, U16* a) {
161 SI void store4(uint16_t* ptr, size_t tail, U16 r, U16 g, U16 b, U16 a) {
168 SI void load4(const float* ptr, size_t tail, F* r, F* g, F* b, F* a) {
174 SI void store4(float* ptr, size_t tail, F r, F g, F b, F a) {
232 SI void load3(const uint16_t* ptr, size_t tail, U16* r, U16* g, U16* b) {
234 if (__builtin_expect(tail,0)) {
236 if (tail > 1) { rgb = vld3_lane_u16(ptr + 3, rgb, 1); }
237 if (tail > 2) { rgb = vld3_lane_u16(ptr + 6, rgb, 2); }
245 SI void load4(const uint16_t* ptr, size_t tail, U16* r, U16* g, U16* b, U16* a)
809 size_t dx, dy, tail; member in struct:SK_OPTS_NS::Params
    [all...]
  /external/skqp/src/opts/
SkRasterPipeline_opts.h 150 SI void load3(const uint16_t* ptr, size_t tail, U16* r, U16* g, U16* b) {
155 SI void load4(const uint16_t* ptr, size_t tail, U16* r, U16* g, U16* b, U16* a) {
161 SI void store4(uint16_t* ptr, size_t tail, U16 r, U16 g, U16 b, U16 a) {
168 SI void load4(const float* ptr, size_t tail, F* r, F* g, F* b, F* a) {
174 SI void store4(float* ptr, size_t tail, F r, F g, F b, F a) {
232 SI void load3(const uint16_t* ptr, size_t tail, U16* r, U16* g, U16* b) {
234 if (__builtin_expect(tail,0)) {
236 if (tail > 1) { rgb = vld3_lane_u16(ptr + 3, rgb, 1); }
237 if (tail > 2) { rgb = vld3_lane_u16(ptr + 6, rgb, 2); }
245 SI void load4(const uint16_t* ptr, size_t tail, U16* r, U16* g, U16* b, U16* a)
809 size_t dx, dy, tail; member in struct:SK_OPTS_NS::Params
    [all...]
  /device/linaro/hikey/hifi/xaf/hifi-dpf/core/util/gdbstub/
gdbstub.c 124 unsigned char tail; member in struct:ring
142 return (ring->tail + 1) & (RING_SIZE - 1);
147 /* ...invalidate tail pointer of tx-ring (updated by host) */
148 GDB_INVALIDATE(&ring->tail);
150 return ring_next_head(ring) != ring->tail;
158 return ring->head != ring->tail;
175 rx->head = rx->tail = 0;
176 tx->head = tx->tail = 0;
178 GDB_FLUSH(&rx->tail);
180 GDB_FLUSH(&tx->tail);
    [all...]
  /external/icu/icu4c/source/common/
ulist.cpp 29 UListNode *tail; member in struct:UList
51 newList->tail = NULL;
65 list->tail = newItem;
76 // p is the list tail.
77 list->tail = p->previous;
116 newItem->previous = list->tail;
117 list->tail->next = newItem;
118 list->tail = newItem;
  /external/mesa3d/src/compiler/nir/
nir_gather_info.c 109 nir_deref *tail = &deref->deref; local
110 while (tail->child != NULL) {
111 tail = tail->child;
113 if (tail->deref_type == nir_deref_type_array) {
114 nir_deref_array *deref_array = nir_deref_as_array(tail);
120 offset += glsl_count_attribute_slots(tail->type, false) *
nir_lower_atomics.c 113 nir_deref *tail = &instr->variables[0]->deref; local
114 while (tail->child != NULL) {
115 nir_deref_array *deref_array = nir_deref_as_array(tail->child);
116 tail = tail->child;
118 unsigned child_array_elements = tail->child != NULL ?
119 glsl_get_aoa_size(tail->type) : 1;
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_fence.c 70 if (screen->fence.tail)
71 screen->fence.tail->next = fence;
75 screen->fence.tail = fence;
94 screen->fence.tail = NULL;
98 if (screen->fence.tail == fence)
99 screen->fence.tail = it;
136 screen->fence.tail = NULL;
  /external/selinux/python/sepolicy/
sepolicy-bash-completion.sh 31 seinfo -u 2> /dev/null | tail -n +3
37 seinfo -t 2> /dev/null | tail -n +3
46 seinfo -auserdomain -x 2> /dev/null | tail -n +2
49 seinfo -u 2> /dev/null | tail -n +2
52 seinfo -c 2> /dev/null | tail -n +2
55 seinfo -aport_type -x 2> /dev/null | tail -n +2
58 seinfo -adomain -x 2> /dev/null | tail -n +2
  /external/skia/src/compute/skc/
scheduler.cpp 107 skc_uint tail; member in struct:skc_scheduler::__anon38047
153 scheduler->waiting.tail = 0;
252 scheduler->waiting.indices[scheduler->waiting.tail] = command;
255 if (++scheduler->waiting.tail == scheduler->waiting.size)
256 scheduler->waiting.tail = 0;
306 if (scheduler->waiting.head != scheduler->waiting.tail)
329 return scheduler->waiting.head != scheduler->waiting.tail;
  /external/skqp/src/compute/skc/
scheduler.cpp 107 skc_uint tail; member in struct:skc_scheduler::__anon38850
153 scheduler->waiting.tail = 0;
252 scheduler->waiting.indices[scheduler->waiting.tail] = command;
255 if (++scheduler->waiting.tail == scheduler->waiting.size)
256 scheduler->waiting.tail = 0;
306 if (scheduler->waiting.head != scheduler->waiting.tail)
329 return scheduler->waiting.head != scheduler->waiting.tail;
  /external/zopfli/src/zopfli/
katajainen.c 37 Node* tail; /* Previous node(s) of this chain, or 0 if none. */ member in struct:Node
54 static void InitNode(size_t weight, int count, Node* tail, Node* node) {
57 node->tail = tail;
78 for (node = lists[i / 2][i % 2]; node; node = node->tail) {
128 InitNode(leaves[lastcount].weight, lastcount + 1, oldchain->tail,
165 for (node = chain; node; node = node->tail) {
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 361 matA.col(i).tail(remainingSize).makeHouseholderInPlace(h, beta);
364 // i.e., A = H A H' where H = I - h v v' and v = matA.col(i).tail(n-i-1)
367 hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template selfadjointView<Lower>()
368 * (conj(h) * matA.col(i).tail(remainingSize)));
370 hCoeffs.tail(n-i-1) += (conj(h)*RealScalar(-0.5)*(hCoeffs.tail(remainingSize).dot(matA.col(i).tail(remainingSize)))) * matA.col(i).tail(n-i-1);
373 .rankUpdate(matA.col(i).tail(remainingSize), hCoeffs.tail(remainingSize), Scalar(-1))
    [all...]
  /external/grpc-grpc/src/core/lib/iomgr/
closure.h 39 grpc_closure* tail; member in struct:grpc_closure_list
189 closure_list->head = closure_list->tail = nullptr;
207 closure_list->tail->next_data.next = closure;
209 closure_list->tail = closure;
233 dst->tail->next_data.next = src->head;
234 dst->tail = src->tail;
236 src->head = src->tail = nullptr;
339 list->head = list->tail = nullptr;

Completed in 5805 milliseconds

1 2 3 4 5 67 8 91011>>