OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:byteArraySize
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/native/
libcore_icu_NativeCollation.cpp
91
size_t
byteArraySize
= ucol_getSortKey(collator, source.get(), source.size(), usedByteArray, sizeof(byteArray) - 1);
92
if (
byteArraySize
> sizeof(byteArray) - 1) {
94
largerByteArray.reset(new uint8_t[
byteArraySize
+ 1]);
96
byteArraySize
= ucol_getSortKey(collator, source.get(), source.size(), usedByteArray,
byteArraySize
);
98
if (
byteArraySize
== 0) {
101
jbyteArray result = env->NewByteArray(
byteArraySize
);
102
env->SetByteArrayRegion(result, 0,
byteArraySize
, reinterpret_cast<jbyte*>(usedByteArray));
/libcore/luni/src/main/java/java/math/
Multiplication.java
137
long
byteArraySize
= 1 + (long)(exp / 2.4082399653118496);
139
if (
byteArraySize
> Runtime.getRuntime().freeMemory()) {
Completed in 1338 milliseconds