HomeSort by relevance Sort by last modified time
    Searched defs:byte_size (Results 1 - 16 of 16) sorted by null

  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
common.py 81 def byte_size(number): function
89 >>> byte_size(1 << 1023)
91 >>> byte_size((1 << 1024) - 1)
93 >>> byte_size(1 << 1024)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/tests/
test_common.py 7 from rsa.common import byte_size, bit_size, _bit_size namespace
21 self.assertEqual(byte_size(1 << 1023), 128)
22 self.assertEqual(byte_size((1 << 1024) - 1), 128)
23 self.assertEqual(byte_size(1 << 1024), 129)
24 self.assertEqual(byte_size(255), 1)
25 self.assertEqual(byte_size(256), 2)
26 self.assertEqual(byte_size(0xffff), 2)
27 self.assertEqual(byte_size(0xffffff), 3)
28 self.assertEqual(byte_size(0xffffffff), 4)
29 self.assertEqual(byte_size(0xffffffffff), 5
    [all...]
  /frameworks/av/media/libmedia/
MediaScanner.cpp 241 size_t byte_size = this->size() + sizeof(MediaAlbumArt); local
242 MediaAlbumArt *result = reinterpret_cast<MediaAlbumArt *>(malloc(byte_size));
254 size_t byte_size = sizeof(MediaAlbumArt) + dataSize; local
255 MediaAlbumArt *result = reinterpret_cast<MediaAlbumArt *>(malloc(byte_size));
  /external/protobuf/src/google/protobuf/
message_lite.cc 279 int byte_size = ByteSize(); local
280 STLStringResizeUninitialized(output, old_size + byte_size);
284 if (end - start != byte_size) {
285 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
306 int byte_size = ByteSize(); local
307 if (size < byte_size) return false;
310 if (end - start != byte_size) {
311 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
  /external/libxml2/
parserInternals.c 2025 unsigned int byte_size; local
    [all...]
  /external/pdfium/third_party/agg23/
agg_array.h 59 unsigned byte_size() const function in class:agg::pod_array
261 unsigned byte_size() const;
407 unsigned pod_deque<T, S>::byte_size() const function in class:agg::pod_deque
  /art/compiler/debug/
elf_debug_info_writer.h 546 uint32_t byte_size; local
551 byte_size = 1;
556 byte_size = 2;
561 byte_size = 8;
566 byte_size = 4;
571 byte_size = 4;
576 byte_size = 8;
581 byte_size = 2;
586 byte_size = 1;
599 info_.WriteData1(DW_AT_byte_size, byte_size);
    [all...]
  /external/freetype/src/sfnt/
ttsbit.c 1147 FT_UInt byte_size = height * ( ( width + 7 ) >> 3 ); local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/
ttsbit.c 1103 FT_UInt byte_size = height * ( ( width + 7 ) >> 3 ); local
1106 if ( bit_size < byte_size &&
1107 byte_size == (FT_UInt)( p_limit - p ) )
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
ttsbit.c 1017 FT_UInt byte_size = height * ( ( width + 7 ) >> 3 ); local
1020 if ( bit_size < byte_size &&
1021 byte_size == (FT_UInt)( p_limit - p ) )
    [all...]
  /art/runtime/gc/allocator/
rosalloc.h 57 size_t byte_size = rosalloc->free_page_run_size_map_[pm_idx]; variable
58 DCHECK_GE(byte_size, static_cast<size_t>(0));
59 DCHECK_ALIGNED(byte_size, kPageSize);
60 return byte_size;
62 void SetByteSize(RosAlloc* rosalloc, size_t byte_size)
64 DCHECK_EQ(byte_size % kPageSize, static_cast<size_t>(0));
67 rosalloc->free_page_run_size_map_[pm_idx] = byte_size;
104 size_t byte_size = ByteSize(rosalloc); variable
105 DCHECK_EQ(byte_size % kPageSize, static_cast<size_t>(0));
107 rosalloc->ReleasePageRange(start, start + byte_size);
    [all...]
rosalloc.cc 332 const size_t byte_size = num_pages * kPageSize; local
336 for (size_t i = 0; i < byte_size / sizeof(uintptr_t); ++i) {
341 memset(ptr, 0, byte_size);
346 << "-0x" << (reinterpret_cast<intptr_t>(ptr) + byte_size)
355 fpr->SetByteSize(this, byte_size);
463 return byte_size;
    [all...]
  /art/runtime/gc/collector/
concurrent_copying.cc 1745 size_t byte_size = it->first; local
1761 size_t byte_size = it->first; local
    [all...]
  /system/bt/stack/include/
port_api.h 57 UINT8 byte_size; member in struct:__anon73905
  /system/bt/stack/rfcomm/
rfc_int.h 123 UINT8 byte_size; member in struct:__anon73970::__anon73971::__anon73976
  /toolchain/binutils/binutils-2.25/bfd/
xcofflink.c 2791 int byte_size; local
5447 unsigned int reloc_size, byte_size; local
    [all...]

Completed in 1581 milliseconds