Searched refs:count2 (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/ |
D | TrackedCollections.java | 86 private float ratePerHour(long uptime1, int count1, long uptime2, int count2) { in ratePerHour() argument 87 if (uptime1 >= uptime2 || count1 < 0 || count2 < 0) { in ratePerHour() 90 return ((float) count2 - count1) / (uptime2 - uptime1) * 60 * MILLIS_IN_MINUTE; in ratePerHour()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/ |
D | message_differencer.cc | 798 const int count2 = reflection2->FieldSize(message2, repeated_field); in CompareRepeatedField() local 804 if (count1 != count2 && reporter_ == NULL && !treated_as_subset) { in CompareRepeatedField() 808 if (count1 > count2 && reporter_ == NULL) { in CompareRepeatedField() 862 for (int i = 0; i < count2; ++i) { in CompareRepeatedField() 1269 MaximumMatcher(int count1, int count2, NodeMatchCallback* callback, 1293 MaximumMatcher::MaximumMatcher(int count1, int count2, in MaximumMatcher() argument 1297 : count1_(count1), count2_(count2), match_callback_(callback), in MaximumMatcher() 1300 match_list2_->assign(count2, -1); in MaximumMatcher() 1374 const int count2 = in MatchRepeatedFieldIndices() local 1379 match_list2->assign(count2, -1); in MatchRepeatedFieldIndices() [all …]
|
/frameworks/base/tests/JankBench/scripts/external/ |
D | statistics.py | 506 U, total2, count2 = _sum((x-c) for x in data) 507 assert T == U and count == count2
|
/frameworks/base/media/mca/filterfw/native/core/ |
D | shader_program.cpp | 657 GLint count1, count2; in MaxUniformCount() local 659 glGetIntegerv(GL_MAX_FRAGMENT_UNIFORM_VECTORS, &count2); in MaxUniformCount() 660 return count1 < count2 ? count1 : count2; in MaxUniformCount()
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
D | wb_vad.c | 143 … Word16 count2, /* i : number of samples to be counted */ in level_calculation() argument 153 for (i = count1; i < count2; i++) in level_calculation()
|
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
D | EventRecurrence.java | 455 private static boolean arraysEqual(int[] array1, int count1, int[] array2, int count2) { in arraysEqual() argument 456 if (count1 != count2) { in arraysEqual()
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
D | vad1.cpp | 512 Word16 count2, /* i : number of samples to be counted */ in level_calculation() argument 526 for (i = count1; i < count2; i++) in level_calculation()
|