Home | History | Annotate | Download | only in runtime

Lines Matching defs:bytes

1717         size_t bytes = CountUtf8Bytes(chars + start, length);
1718 ConvertUtf16ToModifiedUtf8(buf, bytes, chars + start, length);
1821 char* bytes = new char[byte_count + 1];
1822 CHECK(bytes != nullptr); // bionic aborts anyway.
1825 bytes[i] = s->CharAt(i);
1829 ConvertUtf16ToModifiedUtf8(bytes, byte_count, chars, s->GetLength());
1831 bytes[byte_count] = '\0';
1832 return bytes;
2500 size_t bytes = array->GetLength() * component_size;
2512 memcpy(array_data, elements, bytes);
2513 } else if (kWarnJniAbort && memcmp(array_data, elements, bytes) != 0) {