OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kLineLength
(Results
1 - 11
of
11
) sorted by null
/art/dexlayout/
dexdiag.cc
42
static constexpr size_t
kLineLength
= 32;
208
if ((page - start) %
kLineLength
==
kLineLength
- 1) {
214
if ((end - start) %
kLineLength
!= 0) {
371
if (page %
kLineLength
==
kLineLength
- 1) {
377
if (size %
kLineLength
!= 0) {
/external/v8/src/arm/
simulator-arm.h
85
static const int
kLineLength
= 1 << kLineShift;
86
static const int kLineMask =
kLineLength
- 1;
simulator-arm.cc
641
memcpy(cached_line, line, CachePage::
kLineLength
);
[
all
...]
/external/v8/src/mips/
simulator-mips.h
95
static const int
kLineLength
= 1 << kLineShift;
96
static const int kLineMask =
kLineLength
- 1;
simulator-mips.cc
875
memcpy(cached_line, line, CachePage::
kLineLength
);
[
all
...]
/external/v8/src/mips64/
simulator-mips64.h
104
static const int
kLineLength
= 1 << kLineShift;
105
static const int kLineMask =
kLineLength
- 1;
simulator-mips64.cc
807
memcpy(cached_line, line, CachePage::
kLineLength
);
[
all
...]
/external/v8/src/ppc/
simulator-ppc.h
84
static const int
kLineLength
= 1 << kLineShift;
85
static const int kLineMask =
kLineLength
- 1;
simulator-ppc.cc
724
memcpy(cached_line, line, CachePage::
kLineLength
);
[
all
...]
/external/v8/src/s390/
simulator-s390.h
82
static const int
kLineLength
= 1 << kLineShift;
83
static const int kLineMask =
kLineLength
- 1;
simulator-s390.cc
725
memcpy(cached_line, line, CachePage::
kLineLength
);
[
all
...]
Completed in 3548 milliseconds