Searched defs:counts (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp95 size_t counts[100]; local
97 counts[i] = 0;
106 ++counts[slot];
113 printf("[%.2f fps]: %zu\n", fps, counts[i]);
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java101 int[] counts = new int[2];
103 mRootNode.dumpLocked(fd, pw, args, "", " ", counts, pidCounts);
129 pw.print(" Total number of nodes: "); pw.println(counts[0]);
130 pw.print(" Total number of observers: "); pw.println(counts[1]);
955 String name, String prefix, int[] counts, SparseIntArray pidCounts) {
964 counts[1]++;
978 counts[0]++;
980 counts, pidCounts);
954 dumpLocked(FileDescriptor fd, PrintWriter pw, String[] args, String name, String prefix, int[] counts, SparseIntArray pidCounts) argument
/frameworks/base/media/java/android/media/
H A DMediaCodecInfo.java1093 Range<Integer> counts = null, widths = null, heights = null;
1100 counts = Utils.parseIntRange(map.get("block-count-range"), null);
1188 if (counts != null) {
1190 Utils.factorRange(counts, mBlockWidth * mBlockHeight
1221 if (counts != null) {
1223 Utils.factorRange(counts, mBlockWidth * mBlockHeight
1252 Range<Integer> counts, Range<Long> rates, Range<Rational> ratios) {
1277 counts = Utils.factorRange(counts, factor);
1283 mBlockCountRange = mBlockCountRange.intersect(counts);
1250 applyBlockLimits( int blockWidth, int blockHeight, Range<Integer> counts, Range<Long> rates, Range<Rational> ratios) argument
[all...]

Completed in 149 milliseconds