HomeSort by relevance Sort by last modified time
    Searched refs:right_edge (Results 1 - 4 of 4) sorted by null

  /art/runtime/gc/accounting/
bitmap-inl.h 80 uintptr_t right_edge; local
112 right_edge = 0;
114 right_edge = bitmap_begin_[index_end];
117 right_edge = left_edge;
121 right_edge &= ((static_cast<uintptr_t>(1) << (bit_end % kBitsPerBitmapWord)) - 1);
122 if (right_edge != 0) {
125 const size_t shift = CTZ(right_edge);
127 right_edge ^= (static_cast<uintptr_t>(1)) << shift;
128 } while (right_edge != 0);
space_bitmap-inl.h 104 uintptr_t right_edge; local
139 right_edge = 0;
141 right_edge = bitmap_begin_[index_end];
145 right_edge = left_edge;
149 right_edge &= ((static_cast<uintptr_t>(1) << bit_end) - 1);
150 if (right_edge != 0) {
152 // Iterate on the bits set in word `right_edge`, from the least to the most significant bit.
154 const size_t shift = CTZ(right_edge);
157 right_edge ^= (static_cast<uintptr_t>(1)) << shift;
158 } while (right_edge != 0)
    [all...]
  /external/tensorflow/tensorflow/contrib/tensorboard/db/
summary_db_writer.cc 1188 double right_edge = ((i + 1 < k) ? histo.bucket_limit(i + 1) local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 2996 int right_edge = cpi->common.mi_cols; local
    [all...]

Completed in 180 milliseconds