HomeSort by relevance Sort by last modified time
    Searched refs:byte_size (Results 26 - 50 of 161) sorted by null

12 3 4 5 6 7

  /external/protobuf/src/google/protobuf/
message_lite.cc 279 int byte_size = ByteSize(); local
280 STLStringResizeUninitialized(output, old_size + byte_size);
283 if (end - start != byte_size) {
284 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
305 int byte_size = ByteSize(); local
306 if (size < byte_size) return false;
309 if (end - start != byte_size) {
310 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
  /external/lldb/include/lldb/Breakpoint/
StoppointLocation.h 35 uint32_t byte_size,
  /external/lldb/include/lldb/Core/
ValueObjectChild.h 109 uint64_t byte_size,
ValueObjectConstResultChild.h 32 uint32_t byte_size,
Scalar.h 113 GetValueTypeForSignedIntegerWithByteSize (size_t byte_size);
116 GetValueTypeForUnsignedIntegerWithByteSize (size_t byte_size);
119 GetValueTypeForFloatWithByteSize (size_t byte_size);
225 SetValueFromCString (const char *s, lldb::Encoding encoding, size_t byte_size);
228 SetValueFromData (DataExtractor &data, lldb::Encoding encoding, size_t byte_size);
VMRange.h 85 SetByteSize (lldb::addr_t byte_size)
87 m_byte_size = byte_size;
  /external/lldb/include/lldb/Symbol/
LineEntry.h 36 lldb::addr_t byte_size,
  /external/llvm/lib/Support/
DataExtractor.cpp 92 DataExtractor::getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const {
93 switch (byte_size) {
107 DataExtractor::getSigned(uint32_t *offset_ptr, uint32_t byte_size) const {
108 switch (byte_size) {
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jmemnobs.c 33 void* FXMEM_DefaultAlloc(int byte_size, int);
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextDummy.cpp 49 m_pc_reg_info.byte_size = address_byte_size;
107 value.SetUInt(LLDB_INVALID_ADDRESS, reg_info->byte_size);
RegisterContextMacOSXFrameBackchain.cpp 118 value.SetUInt(reg_value, reg_info->byte_size);
122 switch (reg_info->byte_size)
DynamicRegisterInfo.cpp 117 reg_info.byte_size = reg_info_dict.GetItemForKeyAsInteger(bitsize_pystr, 0) / 8;
119 if (reg_info.byte_size == 0)
155 const size_t end_reg_offset = reg_info.byte_offset + reg_info.byte_size;
192 size_t end_reg_offset = reg_info.byte_offset + reg_info.byte_size;
  /external/lldb/tools/debugserver/source/
DNBArch.h 30 typedef const uint8_t * const (* DNBArchCallbackGetBreakpointOpcode)(nub_size_t byte_size);
50 GetBreakpointOpcode (nub_size_t byte_size);
DNB.cpp 1104 uint32_t byte_size = 0; local
    [all...]
DNBDataRef.h 97 uint32_t GetMax32(offset_t *offset_ptr, uint32_t byte_size) const;
98 uint64_t GetMax64(offset_t *offset_ptr, uint32_t byte_size) const;
  /art/runtime/gc/allocator/
rosalloc.h 54 size_t byte_size = rosalloc->free_page_run_size_map_[pm_idx]; variable
55 DCHECK_GE(byte_size, static_cast<size_t>(0));
56 DCHECK_EQ(byte_size % kPageSize, static_cast<size_t>(0));
57 return byte_size;
59 void SetByteSize(RosAlloc* rosalloc, size_t byte_size)
61 DCHECK_EQ(byte_size % kPageSize, static_cast<size_t>(0));
64 rosalloc->free_page_run_size_map_[pm_idx] = byte_size;
101 size_t byte_size = ByteSize(rosalloc); variable
102 DCHECK_EQ(byte_size % kPageSize, static_cast<size_t>(0));
104 rosalloc->ReleasePageRange(start, start + byte_size);
    [all...]
  /external/lldb/source/Utility/
StringExtractor.cpp 329 // Consume ASCII hex nibble character pairs until we have decoded byte_size
333 StringExtractor::GetHexWithFixedSize (uint32_t byte_size, bool little_endian, uint64_t fail_value)
335 if (byte_size <= 8 && GetBytesLeft() >= byte_size * 2)
344 i < byte_size && IsGood();
353 for (i = 0; i < byte_size && IsGood(); ++i)
StringExtractor.h 117 GetHexWithFixedSize (uint32_t byte_size, bool little_endian, uint64_t fail_value);
  /external/lldb/source/API/
SBFunction.cpp 183 addr_t byte_size = m_opaque_ptr->GetAddressRange().GetByteSize(); local
184 if (byte_size > 0)
187 addr->Slide (byte_size);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
session.h 77 void mem_bswap_64(void *src, int byte_size);
78 void mem_bswap_32(void *src, int byte_size);
  /external/lldb/source/Core/
Scalar.cpp 99 // switch (reg.info.byte_size)
110 // switch (reg.info.byte_size)
121 // switch (reg.info.byte_size)
136 size_t byte_size = GetByteSize(); local
137 if (byte_size > 0)
139 if (limit_byte_size < byte_size)
153 data.SetData(((uint8_t*)&m_data) + byte_size - limit_byte_size, limit_byte_size, lldb::endian::InlHostByteOrder());
159 data.SetData((uint8_t*)&m_data, byte_size, lldb::endian::InlHostByteOrder());
524 Scalar::GetValueTypeForSignedIntegerWithByteSize (size_t byte_size)
526 if (byte_size <= sizeof(sint_t)
    [all...]
EmulateInstruction.cpp 147 if (reg_value.SetUInt(uint_value, reg_info.byte_size))
162 if (reg_value.SetUInt(uint_value, reg_info->byte_size))
180 EmulateInstruction::ReadMemoryUnsigned (const Context &context, lldb::addr_t addr, size_t byte_size, uint64_t fail_value, bool *success_ptr)
184 if (byte_size <= 8)
187 size_t bytes_read = m_read_mem_callback (this, m_baton, context, addr, buf, byte_size);
188 if (bytes_read == byte_size)
191 DataExtractor data (buf, byte_size, GetByteOrder(), GetAddressByteSize());
192 uval64 = data.GetMaxU64 (&offset, byte_size);
  /external/lldb/include/lldb/Interpreter/
OptionGroupFormat.h 120 uint32_t &byte_size);
  /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/lldb/source/Symbol/
Type.cpp 81 uint64_t byte_size,
97 m_byte_size (byte_size),
434 const uint64_t byte_size = GetByteSize(); local
435 if (data.GetByteSize() < byte_size)
437 lldb::DataBufferSP data_sp(new DataBufferHeap (byte_size, '\0'));
441 uint8_t* dst = (uint8_t*)data.PeekData(0, byte_size);
449 memcpy (dst, (uint8_t*)NULL + addr, byte_size);
460 return exe_ctx->GetProcessPtr()->ReadMemory(addr, dst, byte_size, error) == byte_size;

Completed in 400 milliseconds

12 3 4 5 6 7