HomeSort by relevance Sort by last modified time
    Searched refs:Iteration (Results 1 - 25 of 33) sorted by null

1 2

  /art/runtime/gc/collector/
garbage_collector.h 50 // A information related single garbage collector iteration. Since we only ever have one GC running
51 // at any given time, we can have a single iteration info.
52 class Iteration {
54 Iteration();
79 // Returns the estimated throughput of the iteration.
105 DISALLOW_COPY_AND_ASSIGN(Iteration);
167 // Returns the current GC iteration and assocated info.
168 Iteration* GetCurrentIteration();
169 const Iteration* GetCurrentIteration() const;
garbage_collector.cc 34 Iteration::Iteration()
35 : duration_ns_(0), timings_("GC iteration timing logger", true, VLOG_IS_ON(heap)) {
39 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) {
49 uint64_t Iteration::GetEstimatedThroughput() const {
78 Iteration* current_iteration = GetCurrentIteration();
83 // Update cumulative statistics with how many bytes the GC iteration freed.
157 // Returns the current GC iteration and assocated info.
158 Iteration* GarbageCollector::GetCurrentIteration() {
161 const Iteration* GarbageCollector::GetCurrentIteration() const
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 454 // Because of this, we allow iteration up to a specified iteration count.
457 // iteration count limit in case there is crazy code.
458 unsigned Iteration = 0;
461 DEBUG(if (Iteration)
462 dbgs() << " SCCPASSMGR: Re-visiting SCC, iteration #"
463 << Iteration << '\n');
466 } while (Iteration++ < MaxIterations && DevirtualizedCall);
469 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
    [all...]
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 270 bool Iteration = true;
295 Iteration = false;
300 } while (Iteration);
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
filter_ar_fast_q12_armv7.S 28 @ r4: Iteration counter for the outer loop.
58 subs r6, r3, #3 @ Iteration counter for inner loop.
downsample_fast_neon.S 34 mov r9, r12 @ Iteration counter for outer loops.
53 bge POST_LOOP_ENDPOS @ branch when Iteration < 8 times.
62 @ r10 is an offset to &data_in[] in the loop. After an iteration, we need to
  /external/chromium_org/v8/src/
full-codegen.h 127 class Iteration;
145 virtual Iteration* AsIteration() { return NULL; }
191 // An iteration statement such as a while, for, or do loop.
192 class Iteration : public Breakable {
194 Iteration(FullCodeGenerator* codegen, IterationStatement* statement)
197 virtual ~Iteration() {}
199 virtual Iteration* AsIteration() { return this; }
265 class ForIn : public Iteration {
270 : Iteration(codegen, statement) {
    [all...]
full-codegen.cc     [all...]
  /external/chromium_org/ui/gfx/image/
image_family_unittest.cc 59 // Tests iteration over an ImageFamily.
60 TEST_F(ImageFamilyTest, Iteration) {
64 // Expect iteration in order of aspect ratio (from thinnest to widest), then
  /external/libhevc/common/arm/
ihevc_sao_edge_offset_class0.s 150 VLD1.8 D26,[r12]! @II Iteration pu1_cur_row = vld1q_u8(pu1_src_cpy)
151 VLD1.8 D27,[r12] @II Iteration pu1_cur_row = vld1q_u8(pu1_src_cpy)
156 LDRB r11,[r2, #1] @II Iteration load pu1_src_left since ht - row + 1 =1
161 VMOV.8 D29[7],r11 @II Iteration vsetq_lane_u8(pu1_src_left[ht - row], pu1_cur_row_tmp, 15)
169 VEXT.8 Q14,Q14,Q13,#15 @II Iteration pu1_cur_row_tmp = vextq_u8(pu1_cur_row_tmp, pu1_cur_row, 15)
ihevc_sao_edge_offset_class0_chroma.s 156 VLD1.8 D30,[r12]! @II Iteration pu1_cur_row = vld1q_u8(pu1_src_cpy)
157 VLD1.8 D31,[r12] @II Iteration pu1_cur_row = vld1q_u8(pu1_src_cpy)
ihevc_sao_edge_offset_class1.s 145 ADD r6,r10,r1 @II Iteration *pu1_src + src_strd
287 ADD r6,r10,r1 @II Iteration *pu1_src + src_strd
ihevc_sao_edge_offset_class1_chroma.s 150 ADD r6,r10,r1 @II Iteration *pu1_src + src_strd
305 ADD r6,r10,r1 @II Iteration *pu1_src + src_strd
ihevc_sao_edge_offset_class2.s 263 ADD r8,r0,r1 @I Iteration *pu1_src + src_strd
331 ADD r8,r0,r1 @II iteration *pu1_src + src_strd
336 ADD r11,r8,r1 @III iteration *pu1_src + src_strd
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
math.js 115 // Iteration
  /external/deqp/modules/gles31/functional/
es31fTextureGatherTests.cpp     [all...]
  /system/core/libziparchive/
zip_archive_test.cc 70 TEST(ziparchive, Iteration) {
100 // End of iteration.
  /art/runtime/gc/
heap.h 335 const collector::Iteration* GetCurrentGcIteration() const {
338 collector::Iteration* GetCurrentGcIteration() {
    [all...]
  /external/llvm/unittests/IR/
ValueMapTest.cpp 123 TYPED_TEST(ValueMapTest, Iteration) {
  /external/chromium_org/third_party/zlib/google/
zip_reader_unittest.cc 200 TEST_F(ZipReaderTest, Iteration) {
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationNodeTest.cpp 280 TEST(AnimationAnimationNodeTest, Iteration)
758 // Normal iteration.
763 // Reverse iteration.
768 // Item ends before iteration finishes.
  /external/llvm/unittests/ADT/
StringRefTest.cpp 43 TEST(StringRefTest, Iteration) {
  /external/chromium_org/v8/test/cctest/
test-heap.cc 920 TEST(Iteration) {
    [all...]

Completed in 1478 milliseconds

1 2