OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:word_end
(Results
1 - 5
of
5
) sorted by null
/art/runtime/gc/accounting/
space_bitmap-inl.h
64
size_t
word_end
= bit_index_end / kBitsPerWord;
local
65
DCHECK_LT(
word_end
* kWordSize, Size());
76
// If word_start ==
word_end
then handle this case at the same place we handle the right edge.
77
if (edge_word != 0 && word_start <
word_end
) {
88
for (size_t i = word_start; i <
word_end
; i++) {
104
// If word_start ==
word_end
then we need to use the word which we removed the left bits.
105
if (word_start <=
word_end
) {
106
edge_word = bitmap_begin_[
word_end
];
111
uintptr_t ptr_base = IndexToOffset(
word_end
) + heap_begin_;
card_table-inl.h
68
uintptr_t*
word_end
= reinterpret_cast<uintptr_t*>(aligned_end);
local
69
for (uintptr_t* word_cur = reinterpret_cast<uintptr_t*>(card_cur); word_cur <
word_end
;
73
if (UNLIKELY(word_cur >=
word_end
)) {
98
card_cur = reinterpret_cast<byte*>(
word_end
);
155
uintptr_t*
word_end
= reinterpret_cast<uintptr_t*>(card_end);
local
160
while (word_cur <
word_end
) {
/external/chromium_org/content/common/android/
address_parser_internal.cc
38
string16::const_iterator
word_end
, const char* ascii_to_match) {
39
for (string16::const_iterator it = word_begin; it !=
word_end
;
48
string16::const_iterator
word_end
, const char* ascii_to_match,
50
for (string16::const_iterator it = word_begin; it !=
word_end
;
52
if (!*ascii_to_match && allow_plural && *it == 's' && it + 1 ==
word_end
)
/external/chromium_org/chrome/browser/autocomplete/
shortcuts_provider.cc
314
size_t
word_end
= last_position + word.length();
local
315
if ((
word_end
<= text_lowercase.length()) &&
323
if (
word_end
< text_lowercase.length()) {
325
ACMatchClassification(
word_end
, ACMatchClassification::NONE));
327
last_position =
word_end
;
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.cc
689
const char*
word_end
= word_ptr;
local
696
int bytecount =
word_end
- word_ptr;
726
word_end
= word_ptr;
734
word_end
= src;
Completed in 2289 milliseconds