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

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/current/platforms/android-15/arch-x86/usr/include/asm/
mmu.h 26 int size; member in struct:__anon49766
  /prebuilts/ndk/current/platforms/android-16/arch-x86/usr/include/asm/
mmu.h 26 int size; member in struct:__anon51102
  /prebuilts/ndk/current/platforms/android-17/arch-x86/usr/include/asm/
mmu.h 26 int size; member in struct:__anon52438
  /prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/asm/
mmu.h 26 int size; member in struct:__anon53774
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/asm/
mmu.h 26 int size; member in struct:__anon55128
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/asm/
mmu.h 26 int size; member in struct:__anon71843
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
ucnhash.h 15 /* Size of this struct */
16 int size; member in struct:__anon72540
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
ucnhash.h 15 /* Size of this struct */
16 int size; member in struct:__anon72663
  /system/core/bootstat/
event_log_list_builder_test.cpp 35 size_t size; local
36 builder.Release(&log, &size);
37 EXPECT_EQ(2U, size);
40 EXPECT_THAT(std::vector<uint8_t>(log_data, log_data + size),
57 size_t size; local
58 builder.Release(&log, &size);
59 EXPECT_EQ(7U, size);
62 EXPECT_THAT(std::vector<uint8_t>(log_data, log_data + size),
80 size_t size; local
81 builder.Release(&log, &size);
106 size_t size; local
    [all...]
histogram_logger.cpp 35 size_t size; local
36 log_builder.Release(&log, &size);
38 android_bWriteLog(HISTOGRAM_LOG_TAG, log.get(), size);
  /system/core/include/utils/
CallStack.h 64 size_t size() const { return mFrameLines.size(); } function in class:android::CallStack
  /toolchain/binutils/binutils-2.25/gprof/
utils.c 49 int size = 0; local
60 size = strlen (name);
86 size += strlen (buf);
95 return size;
  /external/testng/src/test/java/test/
BaseDistributedTest.java 18 Assert.assertEquals(found.size(), expected.size(),
  /libcore/benchmarks/src/benchmarks/regression/
BitSetBenchmark.java 25 private int size; field in class:BitSetBenchmark
31 bs = new BitSet(size);
41 bs.set(bs.size() - 1);
49 bs.get(i % size);
55 bs.clear(i % size);
61 bs.set(i % size);
67 bs.set(i % size, true);
73 bs.set(i % size, false);
  /external/testng/src/test/java/test/thread/
MultiThreadedDependentTest.java 31 int size = expectedMethods.size(); local
32 Assert.assertEquals(methods.size(), size); local
53 Assert.assertEquals(map.size(), size); local
78 Assert.assertTrue(map.size() > 1, "Map size:" + map.size() + " expected more than 1");
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
KeyboardLayoutSetSubtypesCountTests.java 41 for (int index = 0; index < subtypeList.size(); index++) {
52 assertEquals(toString(allSubtypesList), NUMBER_OF_SUBTYPES, allSubtypesList.size());
59 NUMBER_OF_ASCII_CAPABLE_SUBTYPES, asciiCapableSubtypesList.size());
66 NUMBER_OF_PREDEFINED_ADDITIONAL_SUBTYPES, additionalSubtypesList.size());
  /art/runtime/lambda/
art_lambda_method.cc 37 // Calculate the static closure size from the captured variables.
38 size_t size = sizeof(ArtLambdaMethod*); // Initial size is just this method. local
42 // Each captured variable also appends to the size.
44 size += shorty_field.GetStaticSize();
48 closure_size_ = size;
50 // We determine whether or not the size is dynamic by checking for nested lambdas.
52 // This is conservative, since in theory an optimization could determine the size
  /art/test/617-clinit-oome/src/
Main.java 23 int size = 256 * 1024 * 1024; local
27 data[index] = new byte[size];
30 size /= 2;
31 if (size == 0) {
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
AnnotationSetItem.java 22 public int size; field in class:AnnotationSetItem
29 size = file.readUInt();
30 entries = new AnnotationOffItem[size];
31 for (int i = 0; i < size; i++) {
40 file.writeUInt(size);
AnnotationSetRefList.java 22 public int size; field in class:AnnotationSetRefList
29 size = file.readUInt();
30 list = new AnnotationSetRefItem[size];
31 for (int i = 0; i < size; i++) {
40 file.writeUInt(size);
DebugInfoItem.java 21 // Right now we are not parsing debug_info_item, just take the raw size
23 private int size; field in class:DebugInfoItem
26 public DebugInfoItem(int size) {
27 this.size = size;
33 data = new byte[size];
EncodedArray.java 22 public int size; field in class:EncodedArray
27 size = file.readUleb128();
28 if (size != 0) {
29 values = new EncodedValue[size];
30 for (int i = 0; i < size; i++) {
38 file.writeUleb128(size);
39 if (size != 0) {
48 if (size != 0) {
EncodedCatchHandlerList.java 22 public int size; field in class:EncodedCatchHandlerList
27 size = file.readUleb128();
28 list = new EncodedCatchHandler[size];
29 for (int i = 0; i < size; i++) {
36 file.writeUleb128(size);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgetwc.c 43 size_t size; local
70 size = mbrtowc(&wc, &c, 1, st);
71 if (size == (size_t)-1) {
75 } while (size == (size_t)-2);
fputwc.c 44 size_t size; local
63 size = wcrtomb(buf, wc, st);
64 if (size == (size_t)-1) {
69 uio.uio_resid = iov.iov_len = size;

Completed in 819 milliseconds

1 2 3 4 5 6 78 91011>>