/cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/ |
CommonExternalStorageTest.java | 418 int total = 0; local 422 total += c; 425 return total;
|
/external/clang/lib/Sema/ |
MultiplexExternalSemaSource.cpp | 68 uint32_t total = 0; local 70 total += Sources[i]->GetNumExternalSelectors(); 71 return total;
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
ConcurrentHashMultisetBenchmark.java | 94 long total = 0; 96 total += future.get(); 98 return total;
|
/external/opencv/cv/src/ |
mycvHaarDetectObjects.cpp | 192 /* check input structure correctness and calculate total memory size needed for 1287 int j, total = s->total; local [all...] |
/external/opencv/ml/src/ |
mlknearest.cpp | 79 total = 0; 90 int CvKNearest::get_sample_count() const { return total; } 136 total += _count;
|
/external/selinux/libsemanage/src/ |
direct_api.c | 371 /* bzip() a data to a file, returning the total number of compressed bytes 379 size_t total = 0; local 402 while ( num_bytes > total ) { 403 if (num_bytes - total > size) { 406 len = num_bytes - total; 408 BZ2_bzWrite ( &bzerror, b, &data[total], len ); 413 total += len; 421 return total; 427 /* bunzip() a file to '*data', returning the total number of uncompressed bytes 437 size_t total=0 local [all...] |
/external/v8/tools/ |
gc-nvp-trace-processor.py | 266 Item('Total holes (after GC)', 'holes_size_before', x1y2, 277 Item('Total holes (after GC)', 'holes_size_after', x1y2, 318 total = calc_total(trace, field) 321 avg = total / n 332 (prefix, n, total, max, avg, dev)) 365 stats(out, 'Total in GC', trace, 'pause') 375 throughput('TOTAL', trace)
|
run_perf.py | 175 self.total = False 204 self.total = suite.get("total", parent.total) 296 if not res.traces or not self.total: 311 "graphs": self.graphs + ["Total"],
|
/frameworks/av/media/libstagefright/webm/ |
WebmElement.cpp | 49 uint64_t total = 0; local 52 total += (*it)->totalSize(); 54 return total;
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoSource.java | 275 protected int pickRandomStart(int total, int max) { 276 if (max >= total) { 279 return (mRNG.nextInt() % (total - max)) - 1;
|
/sdk/eventanalyzer/src/com/android/eventanalyzer/ |
EventAnalyzer.java | 388 long total = 0; // despite being encoded on a long, the values are low enough that local 389 // a Long should be enough to compute the total 391 total += value.longValue(); 393 builder.append(total / list.size()).append(DATA_SEPARATOR);
|
/bionic/libc/kernel/uapi/linux/ |
omapfb.h | 206 __u32 total; member in struct:omapfb_vram_info
|
/development/ndk/platforms/android-21/include/linux/ |
omapfb.h | 206 __u32 total; member in struct:omapfb_vram_info
|
/external/fio/ |
stat.h | 42 * FIO_IO_U_PLAT_NR is the total number of buckets. 61 * {[900,909],[910,919]...} }. The total range is partitioned into 136 struct io_stat lat_stat[DDIR_RWDIR_CNT]; /* total latency */ 242 extern void stat_calc_dist(unsigned int *map, unsigned long total, double *io_u_dist);
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
Pick.java | 620 private double total; field in class:Pick.WeightedIndex 650 total = 0; 655 total += weights[i]; 662 double weight = zeroToOne*total;
|
/external/jetty/src/java/org/eclipse/jetty/io/ |
AbstractBuffer.java | 715 int total=0; local 720 return total>0?total:-1; 725 return total;
|
/external/kernel-headers/original/uapi/linux/ |
omapfb.h | 200 __u32 total; member in struct:omapfb_vram_info
|
/external/libhevc/common/arm/ |
ihevc_padding.s | 152 @ total of 4rows*(16*5) = 4 * 80 = 4 * pad_left store 271 @ total of 4rows*(16*5) = 4 * 80 = 4 * pad_left store 400 @ total of 4rows*(16*5) = 4 * 80 = 4 * pad_left store 519 @ total of 4rows*(16*5) = 4 * 80 = 4 * pad_left store
|
/external/libvncserver/libvncserver/ |
websockets.c | 619 int total = 0; local 700 total = fhlen + flength + 4; 703 if (-1 == (ret = ws_read(cl, buf, total))) { 708 } else if (ret < total) {
|
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
vp8_variance8x8_armv6.asm | 52 ; calculate total sum 78 ; calculate total sum
|
/external/libvpx/libvpx/vp8/common/ppc/ |
sad_altivec.asm | 36 vspltisw v8, 0 ;# zero out total to start 261 vspltisw v8, 0 ;# zero out total to start
|
/external/lzma/C/ |
Ppmd7.h | 102 UInt32 (*GetThreshold)(void *p, UInt32 total);
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmserr.c | 136 cmsUInt32Number Total = num * size; 139 if (Total == 0) return NULL; 145 if (Total < num || Total < size) { 149 if (Total > MAX_MEMORY_FOR_ALLOC) return NULL; // Never alloc over 512Mb 151 return _cmsMallocZero(ContextID, Total); 279 cmsUInt32Number total = num * size; local 280 if (total == 0 || total / size != num || total >= 512 * 1024 * 1024 [all...] |
/external/v8/include/ |
v8-profiler.h | 321 /** Returns total nodes count in the snapshot. */ 340 * The total length of the serialized snapshot is unknown in 382 virtual ControlOption ReportProgressValue(int done, int total) = 0;
|
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/ |
VolumeLoader.java | 127 public void progress(int n, int total);
|