Searched refs:size (Results 426 - 450 of 10126) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/metrics/
H A Dmetrics_log_unittest.cc32 offset += prefix.size();
53 int size = log.GetEncodedLogSize(); local
54 ASSERT_GT(size, 0);
58 ASSERT_TRUE(log.GetEncodedLog(WriteInto(&encoded, size + 1), size));
77 int size = log.GetEncodedLogSize(); local
78 ASSERT_GT(size, 0);
82 ASSERT_TRUE(log.GetEncodedLog(WriteInto(&encoded, size + 1), size));
128 int size local
157 int size = log.GetEncodedLogSize(); local
187 int size = log.GetEncodedLogSize(); local
218 int size = log.GetEncodedLogSize(); local
[all...]
/external/chromium/chrome/browser/sync/
H A Dsignin_manager_unittest.cc70 EXPECT_EQ(1U, google_login_success_.size());
71 EXPECT_EQ(0U, google_login_failure_.size());
100 EXPECT_EQ(0U, google_login_success_.size());
101 EXPECT_EQ(1U, google_login_failure_.size());
117 EXPECT_EQ(0U, google_login_success_.size());
118 EXPECT_EQ(1U, google_login_failure_.size());
125 EXPECT_EQ(1U, google_login_success_.size());
126 EXPECT_EQ(1U, google_login_failure_.size());
135 EXPECT_EQ(0U, google_login_success_.size());
136 EXPECT_EQ(1U, google_login_failure_.size());
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dappcache_info_view.cc29 string16 size = local
30 FormatBytes(info->size, GetByteDisplayUnits(info->size), true);
37 SetValue(row++, size);
/external/chromium/net/disk_cache/
H A Dfile_block.h14 // stored on a file-block, regardless of the real type or size of the block.
23 // Returns the size of the block;
24 virtual size_t size() const = 0;
/external/clang/test/CodeGen/
H A D2002-12-15-StructParameters.c6 unsigned size; member in struct:__anon4115
/external/clang/test/Sema/
H A Dbitfield-layout.c3 #define CHECK_SIZE(kind, name, size) extern int name##1[sizeof(kind name) == size ? 1 : -1];
4 #define CHECK_ALIGN(kind, name, size) extern int name##2[__alignof(kind name) == size ? 1 : -1];
H A Dvector-cast.c14 't2' and 't1' of different size}}
16 't1' and 't2' of different size}}
23 type 't1' and integer type 'short' of different size}}
27 type 't1' and integer type 'short' of different size}}
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.h20 DECLARE_REAL(int, memcmp, const void *a1, const void *a2, uptr size)
21 DECLARE_REAL(void*, memcpy, void *to, const void *from, uptr size)
22 DECLARE_REAL(void*, memset, void *block, int c, uptr size)
25 DECLARE_REAL(char*, strncpy, char *to, const char *from, uptr size)
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DConstantPool.java25 * Get the "size" of the constant pool. This corresponds to the
27 * always at least one more than the actual size of the constant pool,
30 * @return {@code >= 1;} the size
32 public int size(); method in interface:ConstantPool
38 * @param n {@code n >= 0, n < size();} the constant pool index
50 * @param n {@code n >= 0, n < size();} the constant pool index
65 * @param n {@code n >= 0, n < size();} the constant pool index
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DTypeList.java35 * Gets the size of this list.
37 * @return {@code >= 0;} the size
39 public int size(); method in interface:TypeList
46 * @param n {@code >= 0, < size();} which element
/external/e2fsprogs/resize/
H A Dextent.c23 int size; member in struct:ext2_extent_entry
29 int size; member in struct:_ext2_extent
37 errcode_t ext2fs_create_extent_table(ext2_extent *ret_extent, int size) argument
47 extent->size = size ? size : 50;
53 extent->size, &extent->list);
59 sizeof(struct ext2_extent_entry) * extent->size);
72 extent->size = 0;
87 if (extent->num >= extent->size) {
213 ext2fs_iterate_extent(ext2_extent extent, __u32 *old_loc, __u32 *new_loc, int *size) argument
[all...]
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DIElementList.java22 int size (); // element count method in interface:IElementList
/external/genext2fs/
H A Dtest.sh30 # Creates an image with a file of given size and verifies it
31 # Usage: dtest file-size number-of-blocks correct-checksum
33 size=$1; blocks=$2; checksum=$3
34 echo Testing with file of size $size
35 dgen $size $blocks
/external/harfbuzz/src/
H A Dharfbuzz-stream.h41 HB_UInt size; member in struct:HB_StreamRec_
/external/iptables/extensions/
H A Dlibip6t_eui64.c8 .size = XT_ALIGN(sizeof(int)),
H A Dlibipt_MIRROR.c8 .size = XT_ALIGN(0),
H A Dlibipt_unclean.c8 .size = XT_ALIGN(0),
H A Dlibxt_NOTRACK.c8 .size = XT_ALIGN(0),
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DHeightMapGrid.java21 public void setSize(int size); argument
/external/kernel-headers/original/asm-x86/
H A Dmmu.h18 int size; member in struct:__anon6774
/external/kernel-headers/original/linux/
H A Dpercpu.h35 extern void *__alloc_percpu(size_t size);
42 static inline void *__alloc_percpu(size_t size) argument
44 void *ret = kmalloc(size, GFP_KERNEL);
46 memset(ret, 0, size);
/external/libsepol/include/sepol/policydb/
H A Dsymtab.h34 extern int symtab_init(symtab_t *, unsigned int size);
/external/linux-tools-perf/host-darwin-fixup/
H A DAndroidFixup.h27 #define strndup(str, size) strdup(str)
/external/llvm/include/llvm/ADT/
H A DUniqueVector.h44 Val = static_cast<unsigned>(Vector.size()) + 1;
67 assert(ID-1 < size() && "ID is 0 or out of range!");
71 /// size - Returns the number of entries in the vector.
73 size_t size() const { return Vector.size(); } function in class:llvm::UniqueVector
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DOvc1VisualSampleEntryImpl.java16 long size = 8;
19 size += box.getSize();
21 size += vc1Content.length;
22 return size;

Completed in 764 milliseconds

<<11121314151617181920>>