Searched refs:SIZE (Results 1 - 25 of 68) sorted by relevance

123

/frameworks/base/core/java/android/provider/
H A DOpenableColumns.java36 public static final String SIZE = "_size"; field in interface:OpenableColumns
H A DDrmStore.java68 public static final String SIZE = "_size"; field in interface:DrmStore.Columns
164 values.put(DrmStore.Columns.SIZE, size);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DSmallCircleActivity.java38 layout.addView(view, new LinearLayout.LayoutParams(PathView.SIZE, PathView.SIZE));
41 layout.addView(view, new LinearLayout.LayoutParams(PathView.SIZE, PathView.SIZE));
47 private static final int SIZE = 37; field in class:SmallCircleActivity.PathView
55 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.275f, Path.Direction.CW);
56 mPath.addCircle(SIZE * 0.5f, SIZE * 0.
[all...]
/frameworks/native/services/sensorservice/
H A Dvec.h36 template <typename TYPE, size_t SIZE>
39 template <typename TYPE, size_t SIZE>
48 typename TYPE, size_t SIZE, size_t S>
49 vec<TYPE, SIZE>& doAssign(
50 vec<TYPE, SIZE>& lhs, const VEC<TYPE, S>& rhs) {
51 const size_t minSize = min(SIZE, S);
52 const size_t maxSize = max(SIZE, S);
65 size_t SIZE
67 VLHS<TYPE, SIZE> PURE doAdd(
68 const VLHS<TYPE, SIZE>
[all...]
H A DSensorDevice.cpp68 void SensorDevice::dump(String8& result, char* buffer, size_t SIZE) argument
74 snprintf(buffer, SIZE, "%d h/w sensors:\n", int(count));
80 snprintf(buffer, SIZE, "handle=0x%08x, active-count=%d, rates(ms)={ ",
85 snprintf(buffer, SIZE, "%4.1f%s",
90 snprintf(buffer, SIZE, " }, selected=%4.1f ms\n", info.delay / 1e6f);
H A DSensorDevice.h60 void dump(String8& result, char* buffer, size_t SIZE);
H A DSensorFusion.h71 void dump(String8& result, char* buffer, size_t SIZE);
H A DFusion.cpp130 template<typename TYPE, size_t SIZE>
132 mat<TYPE, SIZE, SIZE> mSumXX;
133 vec<TYPE, SIZE> mSumX;
137 void update(const vec<TYPE, SIZE>& x) {
142 mat<TYPE, SIZE, SIZE> operator()() const {
H A DSensorService.cpp196 const size_t SIZE = 1024; local
197 char buffer[SIZE];
200 snprintf(buffer, SIZE, "Permission Denial: "
207 snprintf(buffer, SIZE, "Sensor List:\n");
212 snprintf(buffer, SIZE,
222 SensorFusion::getInstance().dump(result, buffer, SIZE);
223 SensorDevice::getInstance().dump(result, buffer, SIZE);
225 snprintf(buffer, SIZE, "%d active connections\n",
228 snprintf(buffer, SIZE, "Active sensors:\n");
232 snprintf(buffer, SIZE, "
[all...]
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabasePerformanceTests.java198 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf1Test
200 private String[] statements = new String[SIZE];
207 for (int i = 0; i < SIZE; i++) {
220 for (int i = 0; i < SIZE; i++) {
231 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf2Test
233 private String[] statements = new String[SIZE];
240 for (int i = 0; i < SIZE; i++) {
254 for (int i = 0; i < SIZE; i++) {
265 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf3Test
268 private String[] where = new String[SIZE];
305 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf4Test
343 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf5Test
384 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf6Test
422 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf7Test
462 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf8Test
502 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf9Test
554 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf10Test
593 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf11Test
627 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf12Test
661 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf13Test
694 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf14Test
727 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf15Test
768 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf16Test
801 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf17Test
833 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf18Test
870 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf19Test
908 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf20Test
952 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf21Test
994 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf22Test
1026 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf23Test
1059 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf24Test
1091 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf25Test
1125 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf26Test
1163 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf27Test
1202 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf28Test
1236 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf29Test
1274 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf30Test
1311 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf31Test
[all...]
H A DNewDatabasePerformanceTests.java107 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.Insert1000
109 private String[] statements = new String[SIZE];
116 for (int i = 0; i < SIZE; i++) {
128 for (int i = 0; i < SIZE; i++) {
139 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertIndexed1000
141 private String[] statements = new String[SIZE];
148 for (int i = 0; i < SIZE; i++) {
161 for (int i = 0; i < SIZE; i++) {
172 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.Select100
175 private String[] where = new String[SIZE];
211 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringComparison100
248 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIndex100
288 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.InnerJoin100
325 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.InnerJoinOneSide100
364 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.InnerJoinNoIndex100
403 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectSubQIndex100
454 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIndexStringComparison100
492 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectInteger100
523 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectString100
554 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIntegerIndex100
586 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIndexString100
618 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringStartsWith100
658 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.DeleteIndexed1000
689 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.Delete1000
719 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.DeleteWhere1000
755 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.DeleteIndexWhere1000
792 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.UpdateIndexWhere1000
835 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.UpdateWhere1000
876 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertInteger10000
907 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertIntegerIndex10000
939 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertString10000
970 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertStringIndexed10000
1003 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringStartsWith10000
1041 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringIndexedStartsWith10000
1079 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectInteger10000
1112 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIntegerIndexed10000
1149 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringContains10000
1186 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringIndexedContains10000
[all...]
/frameworks/rs/driver/linkloader/utils/
H A Dtraits.h35 #define TYPE_TRAITS_SPECIALIZE(TYPE, SIZE, ALIGN) \
38 enum { size = SIZE }; \
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFObjectWriter.h59 template<size_t SIZE>
68 template<size_t SIZE>
74 template<size_t SIZE>
90 template<size_t SIZE>
96 template<size_t SIZE>
102 template<size_t SIZE>
112 template<size_t SIZE>
/frameworks/native/libs/ui/
H A DGraphicBufferAllocator.cpp59 const size_t SIZE = 4096; local
60 char buffer[SIZE];
61 snprintf(buffer, SIZE, "Allocated buffers:\n");
67 snprintf(buffer, SIZE, "%10p: %7.2f KiB | %4u (%4u) x %4u | %8X | 0x%08x\n",
71 snprintf(buffer, SIZE, "%10p: unknown | %4u (%4u) x %4u | %8X | 0x%08x\n",
78 snprintf(buffer, SIZE, "Total allocated (estimate): %.2f KB\n", total/1024.0f);
81 mAllocDev->dump(mAllocDev, buffer, SIZE);
/frameworks/base/services/jni/
H A Dcom_android_server_BatteryService.cpp170 const int SIZE = 16; local
171 char buf[SIZE];
174 if (readFromFile(path, buf, SIZE) > 0) {
184 const int SIZE = 128; local
185 char buf[SIZE];
188 if (readFromFile(path, buf, SIZE) > 0) {
196 const int SIZE = 128; local
197 char buf[SIZE];
200 if (readFromFile(path, buf, SIZE) > 0) {
208 const int SIZE local
237 const int SIZE = 128; local
[all...]
/frameworks/av/media/libmedia/
H A DMemoryLeakTrackUtil.cpp72 const size_t SIZE = 256; local
73 char buffer[SIZE];
93 snprintf(buffer, SIZE, " Allocation count %i\n", count);
95 snprintf(buffer, SIZE, " Total memory %i\n", totalMemory);
145 snprintf(buffer, SIZE, "size %8i, dup %4i, ", e->size, e->dups);
151 snprintf(buffer, SIZE, "0x%08x", e->backtrace[ct]);
/frameworks/compile/mclinker/include/mcld/Target/
H A DGOT.h37 template<size_t SIZE>
41 enum { EntrySize = SIZE };
H A DPLT.h62 template<size_t SIZE, typename EntryBase = PLTEntryBase>
66 enum { EntrySize = SIZE };
/frameworks/compile/mclinker/lib/LD/
H A DELFObjectWriter.cpp185 template<size_t SIZE>
190 typedef typename ELFSizeTraits<SIZE>::Ehdr ElfXX_Ehdr;
191 typedef typename ELFSizeTraits<SIZE>::Shdr ElfXX_Shdr;
192 typedef typename ELFSizeTraits<SIZE>::Phdr ElfXX_Phdr;
200 header->e_ident[EI_CLASS] = (SIZE == 32) ? ELFCLASS32 : ELFCLASS64;
231 header->e_shoff = getLastStartOffset<SIZE>(pModule);
287 template<size_t SIZE>
292 typedef typename ELFSizeTraits<SIZE>::Shdr ElfXX_Shdr;
297 MemoryRegion* region = pOutput.request(getLastStartOffset<SIZE>(pModule),
313 shdr[sectIdx].sh_entsize = getSectEntrySize<SIZE>(*ld_sec
[all...]
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DFramebufferSurface.h59 char* buffer, size_t SIZE) const;
/frameworks/base/services/common_time/
H A Dcommon_time_server_api.cpp292 const size_t SIZE = 256; local
293 char buffer[SIZE];
296 snprintf(buffer, SIZE, "Permission Denial: "
368 const size_t SIZE = 256; local
369 char buffer[SIZE];
372 snprintf(buffer, SIZE, "Permission Denial: "
407 const size_t SIZE = 256; local
408 char buffer[SIZE];
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1717 const size_t SIZE = 256; local
1718 char buffer[SIZE];
1723 snprintf(buffer, SIZE, " No file writer\n");
1726 snprintf(buffer, SIZE, " Recorder: %p\n", this);
1727 snprintf(buffer, SIZE, " Output file (fd %d):\n", mOutputFd);
1729 snprintf(buffer, SIZE, " File format: %d\n", mOutputFormat);
1731 snprintf(buffer, SIZE, " Max file size (bytes): %lld\n", mMaxFileSizeBytes);
1733 snprintf(buffer, SIZE, " Max file duration (us): %lld\n", mMaxFileDurationUs);
1735 snprintf(buffer, SIZE, " File offset length (bits): %d\n", mUse64BitFileOffset? 64: 32);
1737 snprintf(buffer, SIZE, " Interleav
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DVoiceMailConstants.java47 static final int SIZE = 3; field in class:VoiceMailConstants
101 String[] data = new String[SIZE];
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp230 const ssize_t SIZE = 256; local
231 char scrap[SIZE];
243 if ((index>0 && (index<SIZE-1)) && (!strcmp(name+index, "OES"))) {
254 snprintf(scrap, SIZE, "%sOES", name);
/frameworks/av/services/audioflinger/
H A DThreads.cpp403 const size_t SIZE = 256; local
404 char buffer[SIZE];
409 snprintf(buffer, SIZE, "thread %p maybe dead locked\n", this);
413 snprintf(buffer, SIZE, "io handle: %d\n", mId);
415 snprintf(buffer, SIZE, "TID: %d\n", getTid());
417 snprintf(buffer, SIZE, "standby: %d\n", mStandby);
419 snprintf(buffer, SIZE, "Sample rate: %u\n", mSampleRate);
421 snprintf(buffer, SIZE, "HAL frame count: %d\n", mFrameCount);
423 snprintf(buffer, SIZE, "Normal frame count: %d\n", mNormalFrameCount);
425 snprintf(buffer, SIZE, "Channe
460 const size_t SIZE = 256; local
990 const size_t SIZE = 256; local
1040 const size_t SIZE = 256; local
3053 const size_t SIZE = 256; local
4080 const size_t SIZE = 256; local
4109 const size_t SIZE = 256; local
[all...]

Completed in 1192 milliseconds

123