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

<<11121314151617181920>>

  /external/swiftshader/third_party/subzero/bloat/
bloat.py 265 total = 0
273 total += subtree['data']['$area']
277 total += size
295 'name': name + ' ' + format_bytes(total),
297 '$area': total,
334 total = 0
340 total += size
345 'name': name + ' ' + format_bytes(total),
346 'data': { '$area': total },
419 total = variable
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/reference/
depthwiseconv_float.h 52 float total = 0.f; local
65 total += (input_value * filter_value);
74 ActivationFunctionWithMinMax(total + bias_value,
  /external/tensorflow/tensorflow/core/kernels/
gemm_functors.h 69 T3 total(0);
75 total += (a_value * b_value);
78 c[c_index] = total;
  /external/tensorflow/tensorflow/core/platform/
tensor_coding.cc 84 int64 total = 0; local
87 total += size;
89 if (total != static_cast<int64>(reader.size())) {
  /external/toybox/toys/posix/
du.c 29 -s only total size of each argument
31 -c cumulative total
42 unsigned long depth, total;
55 char *name = "total";
145 else TT.total += node->extra;
165 if (toys.optflags & FLAG_c) print(TT.total*512, 0);
  /frameworks/av/media/libnbaio/
AudioBufferProviderSource.cpp 82 ssize_t AudioBufferProviderSource::readVia(readVia_t via, size_t total, void *user, size_t block)
91 ALOG_ASSERT(accumulator <= total);
92 size_t count = total - accumulator;
  /frameworks/base/core/java/android/hardware/camera2/legacy/
RequestQueue.java 163 long total = mCurrentFrameNumber; local
165 total += b.getNumberOfRequests();
167 return total - 1;
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/
CollectorThread.java 85 static int total = 0; field in class:CollectorThread
139 System.out.println("Jank Percentage: " + (100 * janks/ (double) total) + "%");
141 total = 0;
  /kernel/tests/net/test/
resilient_rs_test.py 27 total = 0
29 total += x
30 yield total
  /packages/apps/Dialer/java/com/android/voicemail/impl/
VoicemailStatus.java 76 public Editor setQuota(int occupied, int total) {
78 && total == VoicemailContract.Status.QUOTA_UNAVAILABLE) {
83 values.put(Status.QUOTA_TOTAL, total);
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
ImportTask.java 77 int total = mObjectsToImport.size(); local
78 mListener.onImportProgress(visited, total, null);
94 mListener.onImportProgress(visited, total, importedPath);
  /packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java 111 * @return Approximate total size in bytes of the bitmaps stored in the pool.
117 int total = 0; local
119 total += p.getSize();
121 return total;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
objectmodel.py 164 total = 0
167 total += pm.weight
169 return total
  /external/libopus/celt/
rate.c 191 total/N */
222 compared to their "fair share" of total/N */
249 const int *bits1, const int *bits2, const int *thresh, const int *cap, opus_int32 total, opus_int32 *_balance,
289 if (psum > total)
330 total += skip_rsv;
335 left = total-psum;
407 total += dual_stereo_rsv;
421 left = total-psum;
458 compared to their "fair share" of total/N */
533 opus_int32 total, opus_int32 *balance, int *pulses, int *ebits, int *fine_priority, int C, int LM, ec_ctx *ec, int (…)
    [all...]
  /external/opencv/cvaux/src/
cvhmm.cpp 72 int total = num_obs.height * num_obs.width; local
79 obs->obs = (float*)cvAlloc( total * obs_size * sizeof(float) );
81 obs->state = (int*)cvAlloc( 2 * total * sizeof(int) );
82 obs->mix = (int*)cvAlloc( total * sizeof(int) );
137 //compute total number of states of all level in 2d EHMM
391 int total = 0; local
397 total += hmm->u.ehmm[i].num_states;
401 num_samples = (int*)cvAlloc( total * sizeof(int) );
404 counter = (int*)cvAlloc( total * sizeof(int) );
406 samples = (CvVect32f**)cvAlloc( total * sizeof(CvVect32f*) );
632 int* total= (int*)(((int*)(hmm->obsProb)) - 3); local
945 float total = 0; local
970 float total = 0; local
1370 int total = 0; local
    [all...]
  /external/valgrind/callgrind/
sim.c 839 unsigned int c; // store the total here
1490 FullCost total = CLG_(total_cost), D_total = 0; local
    [all...]
  /bionic/libc/dns/resolv/
res_stats.c 130 int total = successes + errors + timeouts; local
134 total, rtt_avg, params->min_samples);
136 if (total >= params->min_samples && (errors > 0 || timeouts > 0)) {
137 int success_rate = successes * 100 / total;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inflate.h 89 unsigned long total; /* protected copy of output count */ member in struct:inflate_state
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inflate.h 85 unsigned long total; /* protected copy of output count */ member in struct:inflate_state
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
byext.py 91 self.stats["TOTAL"] = {}
93 total = 0
101 total += value
103 cw = max(cw, len(str(total)))
105 self.stats["TOTAL"][col] = total
106 exts.append("TOTAL")
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CTSBlockCipher.java 50 int total = len + bufOff; local
51 int leftOver = total % buf.length;
55 return total - buf.length;
58 return total - leftOver;
  /external/elfutils/lib/
md5.h 52 md5_uint32 total[2]; member in struct:md5_ctx
sha1.h 53 sha1_uint32 total[2]; member in struct:sha1_ctx
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
XMLGroupVisitor.java 63 XMLCoverageWriter.writeCounters(total, element);
  /external/lzma/CPP/7zip/UI/FileManager/
ProgressDialog.h 45 void SetProgress(UInt64 total, UInt64 completed)
48 _total = total;
56 void GetProgress(UInt64 &total, UInt64 &completed)
59 total = _total;

Completed in 842 milliseconds

<<11121314151617181920>>