OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kPrefixLength
(Results
1 - 4
of
4
) sorted by null
/art/runtime/arch/mips/
instruction_set_features_mips.cc
84
const size_t
kPrefixLength
= strlen(kMips32Prefix);
85
if (variant.compare(0,
kPrefixLength
, kMips32Prefix,
kPrefixLength
) == 0 &&
86
variant.size() >
kPrefixLength
) {
87
r6 = (variant[
kPrefixLength
] >= '6');
88
fpu_32bit = (variant[
kPrefixLength
] < '5');
89
mips_isa_gte2 = (variant[
kPrefixLength
] >= '2');
/external/v8/src/
dateparser.cc
157
while (j <
kPrefixLength
&&
163
if (j ==
kPrefixLength
&&
164
(len <=
kPrefixLength
|| array[i][kTypeOffset] == MONTH_NAME)) {
dateparser.h
254
// 'pre' contains a prefix of the word, zero-padded to size
kPrefixLength
264
static const int
kPrefixLength
= 3;
265
static const int kTypeOffset =
kPrefixLength
;
dateparser-inl.h
201
DCHECK(KeywordTable::
kPrefixLength
== 3);
Completed in 5094 milliseconds