HomeSort by relevance Sort by last modified time
    Searched refs:total (Results 176 - 200 of 2504) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/annotation-tools/annotation-file-utilities/tests/
LambdaExpression.java 42 int total = 0;
49 ++total;
55 return total;
  /external/capstone/windows/
winkernel_mm.c 58 size_t total = n * size; local
60 void *new_ptr = cs_winkernel_malloc(total);
65 return RtlFillMemory(new_ptr, total, 0);
  /external/libvpx/libvpx/third_party/libwebm/mkvparser/
mkvreader.cc 87 int MkvReader::Length(long long* total, long long* available) {
91 if (total)
92 *total = m_length;
  /external/skia/gm/
verttext.cpp 61 SkScalar total = paint.measureText(gText, gLen); local
67 paint.isVerticalText() ? x : x + total,
68 paint.isVerticalText() ? y + total : y,
  /external/skqp/gm/
verttext.cpp 61 SkScalar total = paint.measureText(gText, gLen); local
67 paint.isVerticalText() ? x : x + total,
68 paint.isVerticalText() ? y + total : y,
  /external/tensorflow/tensorflow/core/kernels/
reference_gemm.h 73 int32 total = 0; local
79 total += (a_value * b_value);
82 int32_t output = ((((total + offset_c) * mult_c) + rounding) >> shift_c);
  /external/toybox/toys/other/
pmap.c 36 total = 0; local
70 total += end = (end-start)/1024;
106 printf("total% *lld%s", 2*(int)(sizeof(long)+1)+x, total, k);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ColorfulnessFilter.java 67 float total = 0; local
73 total += value;
78 float value = hueHistogram[c] / total;
  /packages/apps/Contacts/src/com/android/contacts/util/
StopWatch.java 56 * Stop it and log the result, if the total time >= {@code timeThresholdToLog}.
65 final long total = stop - start; local
66 if (total < timeThresholdToLog) return;
71 sb.append(total);
  /packages/apps/Settings/src/com/android/settings/datausage/
AppDataUsagePreference.java 40 if (item.restricted && item.total <= 0) {
43 setSummary(DataUsageUtils.formatDataUsage(context, item.total));
62 if (mItem.restricted && mItem.total <= 0) {
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
CaseResult.java 98 int total = 0; local
101 total++;
104 return total;
  /device/google/contexthub/lib/include/nanohub/
nanoapp.h 28 void assertMem(size_t used, size_t total);
  /external/ImageMagick/MagickCore/
opencl.h 41 total; member in struct:_KernelProfileRecord
timer.h 37 total; member in struct:_Timer
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 72 unsigned total = 0, unreachable = 0; local
77 ++total;
106 NumBlocks += total;
109 output << " -> Total CFGBlocks: " << total << " | Unreachable CFGBlocks: "
  /external/fio/t/
lfsr-test.c 39 double total, mean; local
120 total = utime_since(&start, &end);
121 mean = total / fl->num_vals;
127 printf("Elapsed: %lf s\n", total / pow(10,6));
  /external/icu/icu4c/source/test/perf/usetperf/
usetperf.cpp 51 int32_t total; member in class:CmdOp
55 total = 0;
60 ++total;
65 return total;
  /external/jemalloc/test/integration/
aligned_alloc.c 89 size_t alignment, size, total; local
99 total = 0;
114 total += malloc_usable_size(ps[i]);
115 if (total >= (MAXALIGN << 1))
posix_memalign.c 81 size_t alignment, size, total; local
92 total = 0;
108 total += malloc_usable_size(ps[i]);
109 if (total >= (MAXALIGN << 1))
  /external/valgrind/exp-bbv/tests/arm-linux/
million.S 3 # total is 1 + 333332*3 + 2
  /external/valgrind/exp-bbv/tests/ppc32-linux/
million.S 3 # total is 3 + 499997*2 + 3
  /frameworks/base/cmds/incident_helper/src/parsers/
ProcrankParser.cpp 37 string zram, ram, total; local
60 if (record[record.size() - 1] == "TOTAL") { // TOTAL record
61 total = line;
81 if (!total.empty()) {
82 record = parseRecord(total);
83 uint64_t token = proto.start(ProcrankProto::Summary::TOTAL);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterTypeSet.java 99 final int total = mBaseSet.getMediaItemCount(); local
100 final Path[] buf = new Path[total];
106 if (index < 0 || index >= total) return;
113 for (int i = 0; i < total; i++) {
  /external/boringssl/src/crypto/base64/
base64_test.cc 212 size_t total = out_len; local
214 EVP_EncodeFinal(&ctx, out + total, &out_len);
215 total += out_len;
217 EXPECT_EQ(Bytes(t.encoded), Bytes(out, total));
225 size_t total = 0; local
230 total = out_len;
231 ret = EVP_DecodeFinal(&ctx, out + total, &out_len);
232 total += out_len;
239 EXPECT_EQ(Bytes(t.decoded), Bytes(out, total));
  /external/clang/test/SemaCXX/
for-range-examples.cpp 120 int total = 0; local
123 total += n;
125 assert(total == 10);
128 total += n;
130 assert(total == 460);
137 ++total;
139 assert(total == 463);
147 total += a;
149 assert(total == 500);

Completed in 2916 milliseconds

1 2 3 4 5 6 78 91011>>