HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 2126 - 2150 of 11184) sorted by null

<<81828384858687888990>>

  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/netfilter_ipv4/
ipt_hashlimit.h 29 u_int32_t size; member in struct:hashlimit_cfg
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/mtd/
blktrans.h 30 unsigned long size; member in struct:mtd_blktrans_dev
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/netfilter_ipv4/
ipt_hashlimit.h 29 u_int32_t size; member in struct:hashlimit_cfg
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_stack.h 151 size() const function in class:stack
152 { return c.size(); }
233 * @return True iff the size and elements of the stacks are equal.
237 * are: this relation is linear in the size of the sequences, and
254 * are: this relation is linear in the size of the sequences, the
stl_tempbuf.h 141 size() const function in class:_Temporary_buffer
144 /// Returns the size requested by the constructor; may be >size().
160 * Constructs a temporary buffer of a size somewhere between
161 * zero and the size of the given range.
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_queue.h 95 size_type size() const { return c.size(); } function in class:queue
221 size_type size() const { return c.size(); } function in class:priority_queue
_stack.h 83 size_type size() const { return c.size(); } function in class:stack
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyexpat.h 12 int size; /* set to sizeof(struct PyExpat_CAPI) */ member in struct:PyExpat_CAPI
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_largefile.py 18 # By ignoring it, system calls exceeding the file size resource
25 size = 2500000000 variable
44 f.seek(size)
48 print('check file size with os.fstat')
49 self.assertEqual(os.fstat(f.fileno())[stat.ST_SIZE], size+1)
53 print('check file size with os.stat')
54 self.assertEqual(os.stat(TESTFN)[stat.ST_SIZE], size+1)
76 self.assertEqual(f.tell(), size + 1 + 0)
78 self.assertEqual(f.tell(), size + 1 - 10)
79 f.seek(-size-1, 2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyexpat.h 12 int size; /* set to sizeof(struct PyExpat_CAPI) */ member in struct:PyExpat_CAPI
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_largefile.py 18 # By ignoring it, system calls exceeding the file size resource
25 size = 2500000000 variable
44 f.seek(size)
48 print('check file size with os.fstat')
49 self.assertEqual(os.fstat(f.fileno())[stat.ST_SIZE], size+1)
53 print('check file size with os.stat')
54 self.assertEqual(os.stat(TESTFN)[stat.ST_SIZE], size+1)
76 self.assertEqual(f.tell(), size + 1 + 0)
78 self.assertEqual(f.tell(), size + 1 - 10)
79 f.seek(-size-1, 2
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
field_mask.pb.h 83 void SetCachedSize(int size) const;
108 void set_paths(int index, const char* value, size_t size);
112 void add_paths(const char* value, size_t size);
140 return paths_.size();
161 inline void FieldMask::set_paths(int index, const char* value, size_t size) {
163 reinterpret_cast<const char*>(value), size); local
178 inline void FieldMask::add_paths(const char* value, size_t size) {
179 paths_.Add()->assign(reinterpret_cast<const char*>(value), size); local
map_field_lite.h 63 virtual int size() const;
151 default_enum_value>::size() const { function in class:google::protobuf::internal::MapFieldLite
152 return map_->size();
source_context.pb.h 83 void SetCachedSize(int size) const;
106 void set_file_name(const char* value, size_t size);
151 inline void SourceContext::set_file_name(const char* value, size_t size) {
154 ::std::string(reinterpret_cast<const char*>(value), size)); local
  /system/bt/osi/src/
allocation_tracker.c 37 size_t size; member in struct:__anon73477
44 size_t size,
52 static void *untracked_calloc(size_t size);
138 allocation->size = requested_size;
163 UNUSED_ATTR const char *end_canary = ((char *)ptr) + allocation->size;
180 size_t allocation_tracker_resize_for_canary(size_t size) {
181 return (!allocations) ? size : size + (2 * canary_size);
187 *((size_t *)context) += allocation->size; // Report back the unfreed byte count
188 LOG_ERROR(LOG_TAG, "%s found unfreed allocation. address: 0x%zx size: %zd bytes", __func__, (uintptr_t)allocation->ptr, allocation->size)
    [all...]
  /system/core/adb/
file_sync_service.h 46 uint32_t size; member in struct:syncmsg::__anon74199
52 uint32_t size; member in struct:syncmsg::__anon74200
58 uint32_t size; member in struct:syncmsg::__anon74201
framebuffer_service.cpp 44 unsigned int size; member in struct:fbinfo
95 fbinfo.size = w * h * 4;
109 fbinfo.size = w * h * 4;
123 fbinfo.size = w * h * 3;
137 fbinfo.size = w * h * 2;
151 fbinfo.size = w * h * 4;
171 for(i = 0; i < fbinfo.size; i += bsize) {
173 if (i + bsize > fbinfo.size)
174 bsize = fbinfo.size - i;
  /system/core/fastboot/
protocol.cpp 51 static int check_response(Transport* transport, uint32_t size, char* response) {
90 if (!memcmp(status, "DATA", 4) && size > 0){
92 if (dsize > size) {
93 strcpy(ERROR, "data size too large");
108 static int _command_start(Transport* transport, const char* cmd, uint32_t size, char* response) {
125 return check_response(transport, size, response);
128 static int _command_data(Transport* transport, const void* data, uint32_t size) {
129 int r = transport->Write(data, size);
135 if (r != ((int) size)) {
147 static int _command_send(Transport* transport, const char* cmd, const void* data, uint32_t size,
254 int size = sparse_file_len(s, true, false); local
    [all...]
  /system/core/libmemunreachable/
HeapWalker.h 33 size_t size() const { return end - begin; }; function in struct:Range
LeakFolding.h 49 size_t size; member in struct:LeakFolding::SCCInfo
58 count(0), size(0), cuumulative_count(0), cuumulative_size(0),
LeakPipe.h 120 size_t size = vector.size() * sizeof(T); local
121 if (!Send(size)) {
125 ssize_t ret = TEMP_FAILURE_RETRY(write(fd_, vector.data(), size));
129 } else if (static_cast<size_t>(ret) != size) {
158 size_t size = 0; local
159 if (!Receive(&size)) {
163 vector.resize(size / sizeof(T));
166 while (size > 0) {
167 ssize_t ret = TEMP_FAILURE_RETRY(read(fd_, ptr, size));
    [all...]
  /system/core/libmemunreachable/include/memunreachable/
memunreachable.h 29 size_t size; member in struct:Leak
  /system/core/logd/
CommandListener.cpp 123 unsigned long size = mBuf.getSize((log_id_t) id); local
125 snprintf(buf, sizeof(buf), "%lu", size);
154 unsigned long size = atol(argv[2]); local
155 if (mBuf.setSize((log_id_t) id, size)) {
183 unsigned long size = mBuf.getSizeUsed((log_id_t) id); local
185 snprintf(buf, sizeof(buf), "%lu", size);
196 // Calculate total buffer size prefix, count is the string length w/o nul
  /system/extras/tests/memtest/
memtest.cpp 41 " copy_bandwidth [--size BYTES_TO_COPY]\n"
42 " write_bandwidth [--size BYTES_TO_WRITE]\n"
43 " read_bandwidth [--size BYTES_TO_COPY]\n"
44 " per_core_bandwidth [--size BYTES]\n"
49 " multithread_bandwidth [--size BYTES]\n"
113 size_t size = 0x40000000; local
114 while (size) {
115 void* addr = malloc(size);
117 printf("size = %9zd failed\n", size);
137 size_t size = i==0 ? 4096 : 48*1024*1024; \/\/ 48 MB local
    [all...]
  /system/keymaster/
android_keymaster_messages_test.cpp 35 size_t size = message.SerializedSize(); local
36 EXPECT_EQ(expected_size, size);
37 if (size == 0)
40 UniquePtr<uint8_t[]> buf(new uint8_t[size]);
41 EXPECT_EQ(buf.get() + size, message.Serialize(buf.get(), buf.get() + size));
45 EXPECT_TRUE(deserialized->Deserialize(&p, p + size));
46 EXPECT_EQ((ptrdiff_t)size, p - buf.get());
164 EXPECT_EQ(0U, deserialized->enforced.size());
165 EXPECT_EQ(0U, deserialized->unenforced.size());
479 size_t size = msg.SerializedSize(); local
498 size_t size = msg.SerializedSize(); local
    [all...]

Completed in 635 milliseconds

<<81828384858687888990>>