HomeSort by relevance Sort by last modified time
    Searched full:accumulate (Results 51 - 75 of 1081) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/
array-reduce.js 103 function accumulate(acc, elem, i) { acc[i] = elem; return acc; } function
131 simpleArray, accumulate, []);
137 testReduce("reduce", "EmptyReduceAccumulate", [], [], [], accumulate, []);
142 testReduce("reduce", "EmptyReduceAccumulateNoInit", [], [], [[]], accumulate);
168 simpleSparseArray, accumulate, []);
175 [], [], [,,[],,], accumulate);
210 verySparseArray, accumulate, []);
232 verySparseArray, accumulate);
259 simpleArray, accumulate, []);
266 [], [], accumulate, []);
    [all...]
  /system/core/metricsd/uploader/
metrics_log_base_unittest.cc 93 samples.Accumulate(3, 1); // Bucket 1-5.
94 samples.Accumulate(6, 1); // Bucket 5-7.
95 samples.Accumulate(8, 1); // Bucket 8-9. (7-8 skipped)
96 samples.Accumulate(10, 1); // Bucket 10-11. (9-10 skipped)
97 samples.Accumulate(11, 1); // Bucket 11-12.
  /frameworks/base/docs/image_sources/preview/
m-preview-timeline.svg 56 style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" />
66 style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" />
74 style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#99cc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" />
79 style="color:#000000;fill:#99cc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
82 style="color:#000000;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:36px;line-height:125%;font-family:Roboto;-inkscape-font-specification:'Roboto, Light';text-align:center;writing-mode:lr-tb;text-anchor:middle;display:inline;overflow:visible;visibility:visible;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
96 style="color:#000000;fill:#99cc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
101 style="color:#000000;fill:#99cc00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
104 style="font-size:36px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Roboto;-inkscape-font-specification:Roboto Light"
117 style="font-size:36px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Roboto;-inkscape-font-specification:Roboto Light"
130 style="font-size:36px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Roboto;-inkscape-font-specification:Roboto Light
    [all...]
  /external/opencv3/modules/imgproc/perf/opencl/
perf_accumulate.cpp 54 /////////////////////////////////// Accumulate ///////////////////////////////////
58 OCL_PERF_TEST_P(AccumulateFixture, Accumulate,
70 OCL_TEST_CYCLE() cv::accumulate(src, dst);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
arith_mode.s 44 // Multiply and Multiply-Accumulate to Accumulator
51 // Multiply and Multiply-Accumulate to Half-Register
63 // Multiply and Multiply-Accumulate to Data Register
  /external/fec/
sumsq_mmx_assist.s 24 # Since 4 * 32767**2 < 2**32, we can accumulate two at a time
71 paddd %mm0,%mm2 # accumulate
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
XML.java 164 context.accumulate("content", s);
229 o.accumulate(s, JSONObject.stringToValue((String)t));
232 o.accumulate(s, "");
241 context.accumulate(n, o);
257 o.accumulate("content", JSONObject.stringToValue(s));
265 context.accumulate(n, "");
268 context.accumulate(n, o.opt("content"));
270 context.accumulate(n, o);
  /external/libcxx/test/std/numerics/numeric.ops/accumulate/
accumulate.pass.cpp 16 // accumulate(Iter first, Iter last, T init);
27 assert(std::accumulate(first, last, init) == x);
accumulate_op.pass.cpp 17 // accumulate(Iter first, Iter last, T init, BinaryOperation binary_op);
29 assert(std::accumulate(first, last, init, std::multiplies<T>()) == x);
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_highbd_error_sse2.asm 58 ; accumulate in 64bit
82 ; accumulate horizontally and store in return value
  /external/opencv3/modules/imgproc/src/opencl/
accumulate.cl 21 __kernel void accumulate(__global const uchar * srcptr, int src_step, int src_offset,
65 #ifdef ACCUMULATE
  /external/opencv3/samples/gpu/
video_reader.cpp 68 double cpu_avg = std::accumulate(cpu_times.begin(), cpu_times.end(), 0.0) / cpu_times.size();
69 double gpu_avg = std::accumulate(gpu_times.begin(), gpu_times.end(), 0.0) / gpu_times.size();
  /external/skia/src/effects/
SkPackBits.cpp 56 if (*s == value) { // accumulate same values...
64 } else { // accumulate diff values...
  /external/skia/tools/lua/
scrape.lua 21 local total = {} -- accumulate() stores its data in here
28 Following this call, there will be some number of calls to accumulate(t)
scrape_dashing.lua 21 local total_found = {} -- accumulate() stores its data in here
29 Following this call, there will be some number of calls to accumulate(t)
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_mb_offset.h 68 x5 = x5 + x10; /* accumulate low bytes */
70 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes */
71 x5 = x5 + x11; /* accumulate low bytes */
73 x4 = x4 + ((uint32)x11 >> 8); /* accumulate high bytes */
94 x5 = x5 + x10; /* accumulate low bytes */
96 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes */
97 x5 = x5 + x11; /* accumulate low bytes */
99 x4 = x4 + ((uint32)x11 >> 8); /* accumulate high bytes */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_mb_offset.h 71 x5 = x5 + x10; /* accumulate low bytes */
73 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes */
74 x5 = x5 + x11; /* accumulate low bytes */
76 x4 = x4 + ((uint32)x11 >> 8); /* accumulate high bytes */
97 x5 = x5 + x10; /* accumulate low bytes */
99 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes */
100 x5 = x5 + x11; /* accumulate low bytes */
102 x4 = x4 + ((uint32)x11 >> 8); /* accumulate high bytes */
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numeric.ops/accumulate/
accumulate.pass.cpp 16 // accumulate(Iter first, Iter last, T init);
27 assert(std::accumulate(first, last, init) == x);
accumulate_op.pass.cpp 17 // accumulate(Iter first, Iter last, T init, BinaryOperation binary_op);
29 assert(std::accumulate(first, last, init, std::multiplies<T>()) == x);
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.c 320 const bool accumulate = local
327 if (accumulate) {
350 downmixInputChannelMask, pSrc, pDst, numFrames, accumulate)) {
360 Downmix_foldFromQuad(pSrc, pDst, numFrames, accumulate);
364 Downmix_foldFrom5Point1(pSrc, pDst, numFrames, accumulate);
367 Downmix_foldFrom7Point1(pSrc, pDst, numFrames, accumulate);
371 downmixInputChannelMask, pSrc, pDst, numFrames, accumulate)) {
811 * accumulate whether to mix (when true) the result of the downmix with the contents of pDst,
819 void Downmix_foldFromQuad(int16_t *pSrc, int16_t*pDst, size_t numFrames, bool accumulate) {
824 if (accumulate) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
numeric 56 accumulate(_IIter __begin, _IIter __end, _Tp __init,
58 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init); }
62 accumulate(_IIter __begin, _IIter __end, _Tp __init,
64 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init, __binary_op); }
71 { return accumulate(__begin, __end, __init,
79 { return accumulate(__begin, __end, __init, __binary_op,
110 return accumulate(__begin, __end, __init, __binary_op,
117 accumulate(_IIter __begin, _IIter __end, _Tp __init,
131 accumulate(_IIter __begin, _IIter __end, _Tp __init)
144 accumulate(_IIter __begin, _IIter __end, _Tp __init,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
numeric 56 accumulate(_IIter __begin, _IIter __end, _Tp __init,
58 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init); }
62 accumulate(_IIter __begin, _IIter __end, _Tp __init,
64 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init, __binary_op); }
71 { return accumulate(__begin, __end, __init,
79 { return accumulate(__begin, __end, __init, __binary_op,
110 return accumulate(__begin, __end, __init, __binary_op,
117 accumulate(_IIter __begin, _IIter __end, _Tp __init,
131 accumulate(_IIter __begin, _IIter __end, _Tp __init)
144 accumulate(_IIter __begin, _IIter __end, _Tp __init,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
numeric 56 accumulate(_IIter __begin, _IIter __end, _Tp __init,
58 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init); }
62 accumulate(_IIter __begin, _IIter __end, _Tp __init,
64 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init, __binary_op); }
71 { return accumulate(__begin, __end, __init,
79 { return accumulate(__begin, __end, __init, __binary_op,
110 return accumulate(__begin, __end, __init, __binary_op,
117 accumulate(_IIter __begin, _IIter __end, _Tp __init,
131 accumulate(_IIter __begin, _IIter __end, _Tp __init)
144 accumulate(_IIter __begin, _IIter __end, _Tp __init,
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
numeric 56 accumulate(_IIter __begin, _IIter __end, _Tp __init,
58 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init); }
62 accumulate(_IIter __begin, _IIter __end, _Tp __init,
64 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init, __binary_op); }
71 { return accumulate(__begin, __end, __init,
79 { return accumulate(__begin, __end, __init, __binary_op,
110 return accumulate(__begin, __end, __init, __binary_op,
117 accumulate(_IIter __begin, _IIter __end, _Tp __init,
131 accumulate(_IIter __begin, _IIter __end, _Tp __init)
144 accumulate(_IIter __begin, _IIter __end, _Tp __init,
    [all...]
  /external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
eval.pass.cpp 52 double s = std::accumulate(prob.begin(), prob.end(), 0.0);
67 double mean = std::accumulate(lb, ub, 0.0) / Ni;
112 double s = std::accumulate(prob.begin(), prob.end(), 0.0);
127 double mean = std::accumulate(lb, ub, 0.0) / Ni;
172 double s = std::accumulate(prob.begin(), prob.end(), 0.0);
187 double mean = std::accumulate(lb, ub, 0.0) / Ni;
232 double s = std::accumulate(prob.begin(), prob.end(), 0.0);
247 double mean = std::accumulate(lb, ub, 0.0) / Ni;
292 double s = std::accumulate(prob.begin(), prob.end(), 0.0);
307 double mean = std::accumulate(lb, ub, 0.0) / Ni
    [all...]

Completed in 871 milliseconds

1 23 4 5 6 7 8 91011>>