/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
_tempbuf.h | 106 ptrdiff_t size() const { return _M_len; } function in class:_Temporary_buffer
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/ |
BinaryXMLDescriber.java | 62 int size = buf.getInt(); // chunk size local
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
ProtoBufUtils.java | 40 int size = CLZF.lzf_decompress(compressed, compressed.length, local 42 assert size == width * height * 4 : "Unexpected image size after decompression.";
|
/system/bt/btif/src/ |
btif_sdp.c | 101 int size = sizeof(tBTA_SDP); local 102 size += get_sdp_records_size(p_data->sdp_search_comp.records, 107 (char*)p_data, size, sdp_search_comp_copy_cb);
|
/system/core/include/mincrypt/ |
hash-internal.h | 43 int size; member in struct:HASH_VTAB 57 #define HASH_size(ctx) (ctx)->f->size
|
/system/core/include/utils/ |
KeyedVector.h | 54 inline size_t size() const { return mVector.size(); } function in class:android::KeyedVector 59 //! sets the capacity. capacity can never be reduced less than size() 60 inline ssize_t setCapacity(size_t size) { return mVector.setCapacity(size); } 189 if (index<size()) {
|
/system/core/libmemunreachable/tests/ |
Allocator_test.cpp | 64 const int size = 128; local 65 Allocator<char[size]> allocator(heap); 69 memset(ptr[i], 0xaa, size); 88 const size_t size = 1024 * 1024; local 89 Allocator<char[size]> allocator(heap); 91 memset(ptr, 0xaa, size); 97 const int size = 1024 * 1024; local 98 Allocator<char[size]> allocator(heap); 102 memset(ptr[i], 0xaa, size);
|
/system/core/libpixelflinger/ |
clear.cpp | 53 const uint32_t size = c->formats[s.format].size; local 54 const int32_t stride = s.stride * size; 55 uint8_t* dst = (uint8_t*)s.data + (l + t*s.stride)*size; 56 w *= size; 64 switch (size) {
|
/system/core/libutils/tests/ |
BlobCache_test.cpp | 274 size_t size = mBC->getFlattenedSize(); local 275 uint8_t* flat = new uint8_t[size]; 276 ASSERT_EQ(OK, mBC->flatten(flat, size)); 277 ASSERT_EQ(OK, mBC2->unflatten(flat, size)); 322 size_t size = mBC->getFlattenedSize(); local 323 uint8_t* flat = new uint8_t[size]; 324 ASSERT_EQ(OK, mBC->flatten(flat, size)); 344 size_t size = mBC->getFlattenedSize() - 1; local 345 uint8_t* flat = new uint8_t[size]; 346 ASSERT_EQ(BAD_VALUE, mBC->flatten(flat, size)); 354 size_t size = mBC->getFlattenedSize(); local 371 size_t size = mBC->getFlattenedSize(); local 390 size_t size = mBC->getFlattenedSize(); local 409 size_t size = mBC->getFlattenedSize(); local [all...] |
/system/core/logd/ |
libaudit.c | 78 * @param size 83 static int audit_send(int fd, int type, const void *data, size_t size) 98 req.nlh.nlmsg_len = NLMSG_SPACE(size); 110 if (NLMSG_SPACE(size) > MAX_AUDIT_MESSAGE_LENGTH) { 116 if (size && data) { 117 memcpy(NLMSG_DATA(&req.nlh), data, size); local 129 * in size. The only safe type to use here is a signed 16
|
/system/core/toolbox/upstream-netbsd/usr.bin/grep/ |
fastgrep.c | 283 size_t size; local 288 if ((size = mbstowcs(NULL, (const char *)data, 0)) == 292 wdata = grep_malloc(size * sizeof(wint_t)); 294 if (mbstowcs(wdata, (const char *)data, size) == 298 if ((size = mbstowcs(NULL, (const char *)pat, 0)) == 302 wpat = grep_malloc(size * sizeof(wint_t)); 304 if (mbstowcs(wpat, (const char *)pat, size) == ((size_t) - 1))
|
/system/extras/perfprofd/quipper/ |
address_mapper.cc | 16 const uint64_t size, 18 return MapWithID(real_addr, size, kuint64max, 0, remove_existing_mappings); 22 const uint64_t size, 28 range.size = size; 32 if (size == 0) { 38 if (real_addr + size - 1 != kuint64max && 39 !(real_addr + size > real_addr)) { 42 << " with size " << std::hex << size << " overflows." local 139 << " with size " << std::hex << size; local [all...] |
address_mapper.h | 39 // e.g. Given a mapped region with base=0x4000 and size=0x2000 mapped with 64 return mappings_.size(); 80 uint64_t size; member in struct:quipper::AddressMapper::MappedRange 90 return (real_addr <= range.real_addr + range.size - 1) && 91 (real_addr + size - 1 >= range.real_addr); 97 (real_addr + size - 1 >= range.real_addr + range.size - 1); 104 (real_addr + size - 1 > range.real_addr + range.size - 1); 109 return (addr >= real_addr && addr <= real_addr + size - 1) [all...] |
/system/keymaster/ |
authorization_set_test.cpp | 37 EXPECT_EQ(8U, set.size()); 59 EXPECT_EQ(0U, set1.size()); 63 EXPECT_EQ(0U, set2.size()); 78 EXPECT_EQ(8U, set.size()); 109 EXPECT_EQ(9U, set.size()); 137 EXPECT_EQ(8U, set.size()); 162 size_t size = set.SerializedSize(); local 163 EXPECT_TRUE(size > 0); 165 UniquePtr<uint8_t[]> buf(new uint8_t[size]); 166 EXPECT_EQ(buf.get() + size, set.Serialize(buf.get(), buf.get() + size)) 190 size_t size = set.SerializedSize(); local 235 size_t size = set.SerializedSize(); local 267 size_t size = set.SerializedSize(); local [all...] |
/system/netd/server/ |
ResolverStats.h | 66 size_t ofs = out->size(); 80 if (ofs < 0 || static_cast<size_t>(ofs) + STATS_COUNT > in.size()) { 104 ssize_t size = in.size(); local 105 if (size % STATS_COUNT) { 108 stats->resize(size / STATS_COUNT);
|
/system/tpm/tpm_manager/server/ |
tpm2_nvram_test.cc | 156 size_t size = tpm_data.size(); local 158 nvram_public.data_size = size; 164 EXPECT_CALL(mock_tpm_utility_, ReadNVSpace(index, 0, size, _, _)) 258 size_t size; local 259 EXPECT_TRUE(tpm_nvram_->GetNvramSize(index, &size)); 260 EXPECT_EQ(size, nvram_size); 267 size_t size; local 268 EXPECT_FALSE(tpm_nvram_->GetNvramSize(index, &size));
|
/toolchain/binutils/binutils-2.25/bfd/ |
elf32-am33lin.c | 45 unsigned int size; local 62 size = 112; 68 return _bfd_elfcore_make_pseudosection (abfd, ".reg", size,
|
elf32-sh64-com.c | 68 bfd_size_type size local 71 if (a1 >= a2 + size) 83 bfd_size_type size local 86 if (a1 >= a2 + size) 103 bfd_size_type cranges_size = cranges->size; 105 /* If the size is not a multiple of the cranges entry size, then 197 rangep->cr_size = sec->size;
|
/toolchain/binutils/binutils-2.25/gas/ |
input-file.c | 217 size_t size; 222 size = fread (buf, sizeof (char), buflen, f_in); 225 return size; 234 size_t size; 243 size = do_scrub_chars (input_file_get, where, BUFFER_SIZE); 245 size = input_file_get (where, BUFFER_SIZE); 247 if (size) 248 return_value = where + size; 215 size_t size; local 232 size_t size; local
|
/toolchain/binutils/binutils-2.25/opcodes/ |
pj-dis.c | 153 int size = ASIZE (op->arg[a]); local 155 if ((status = info->read_memory_func (addr, data, size, info))) 160 for (i = 0; i < size; i++) 169 addr += size;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
SAX2RTFDTM.java | 60 * SAX2DTM. Consider that as a future code-size optimization. 74 /** Tail-pruning mark: Number of size-of-data fields in use */ 143 ? 0 : m_namespaceDeclSets.size(); 145 ? 0 : m_namespaceDeclSetElements.size(); 146 m_emptyDataCount = m_data.size(); 147 m_emptyCharsCount = m_chars.size(); 148 m_emptyDataQNCount = m_dataOrQName.size(); 270 * This function pushes information about the current size of the 288 : m_namespaceDeclSets.size()); 291 : m_namespaceDeclSetElements.size()); [all...] |
/art/compiler/debug/dwarf/ |
writer.h | 130 DCHECK_LT(offset + 3, data_->size()); 138 DCHECK_LT(offset + 7, data_->size()); 150 DCHECK_LE(offset + UnsignedLeb128Size(value), data_->size()); 160 data_->resize(RoundUp(data_->size(), alignment), 0); 167 size_t size() const { function in class:art::dwarf::Writer 168 return data_->size();
|
/art/compiler/utils/mips/ |
assembler_mips_test.cc | 56 if (registers_.size() == 0) { 388 WarnOnCombinations(regs.size() * regs.size() * 33 * 16); 393 for (int32_t size = 1; pos + size <= 32; size++) { 394 __ Ins(*reg1, *reg2, pos, size); 396 instr << "ins $" << *reg1 << ", $" << *reg2 << ", " << pos << ", " << size << "\n"; local 407 WarnOnCombinations(regs.size() * regs.size() * 33 * 16) 415 instr << "ext $" << *reg1 << ", $" << *reg2 << ", " << pos << ", " << size << "\\n"; local [all...] |
/art/runtime/ |
mapping_table.h | 119 uint32_t size = DexToPcSize(); local 120 return DexToPcIterator(this, size); 138 DecodeUnsignedLeb128(&table); // PC to Dex size, unused. 196 uint32_t size = PcToDexSize(); local 197 return PcToDexIterator(this, size);
|
/art/test/004-NativeAllocations/src/ |
Main.java | 65 int size = (int)(maxMem / 2 / count); local 69 allocations[i % count] = new NativeAllocation(size, false); 76 allocations[i % count] = new NativeAllocation(size, true); 81 allocations[i % count] = new NativeAllocation(size, true);
|