/external/valgrind/memcheck/tests/ |
leak-pool-5.stderr.exp | 5 total heap usage: ... allocs, ... frees, ... bytes allocated
|
mallinfo.stderr.exp | 6 total heap usage: ... allocs, ... frees, ... bytes allocated
|
new_override.stderr.exp | 5 total heap usage: ... allocs, ... frees, ... bytes allocated
|
sbfragment.stderr.exp | 5 total heap usage: ... allocs, ... frees, ... bytes allocated
|
sem.stderr.exp | 5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
|
/external/valgrind/memcheck/tests/linux/ |
brk.stderr.exp | 7 total heap usage: ... allocs, ... frees, ... bytes allocated
|
capget.stderr.exp | 9 total heap usage: ... allocs, ... frees, ... bytes allocated
|
lsframe1.stderr.exp | 7 total heap usage: ... allocs, ... frees, ... bytes allocated
|
lsframe2.stderr.exp | 7 total heap usage: ... allocs, ... frees, ... bytes allocated
|
sigqueue.stderr.exp | 6 total heap usage: 1 allocs, 1 frees, 128 bytes allocated
|
sys-openat.stderr.exp | 6 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
|
syscalls-2007.stderr.exp | 5 total heap usage: ... allocs, ... frees, ... bytes allocated
|
syslog-syscall.stderr.exp | 6 total heap usage: ... allocs, ... frees, ... bytes allocated
|
/external/valgrind/memcheck/tests/ppc32/ |
power_ISA2_05.stderr.exp | 5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
|
power_ISA2_07.stderr.exp | 5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
|
/external/valgrind/memcheck/tests/ppc64/ |
power_ISA2_05.stderr.exp | 5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
|
power_ISA2_07.stderr.exp | 5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_batchbuffer.h | 129 intel->batch.total = n; 139 assert(batch->total != 0); 140 if (_n != batch->total) { 142 _n, batch->total); 145 batch->total = 0;
|
/frameworks/av/media/libstagefright/ |
ClockEstimator.cpp | 160 LinearFit total; local 161 total.combine(mHead); 162 total.combine(mMain); 163 total.combine(mTail); 164 return total.interpolate(x);
|
/system/extras/tests/memtest/ |
memtest.cpp | 118 size_t total = 0; local 126 total += size; 127 printf("size = %9zd, addr = %p (total = %9zd (%zd MB))\n", 128 size, addr, total, total / (1024*1024)); 137 printf("done. allocated %zd MB\n", total / (1024*1024));
|
/system/bt/gki/common/ |
gki_buffer.c | 48 static void gki_init_free_queue (UINT8 id, UINT16 size, UINT16 total, void *p_mem) 66 p_cb->pool_end[id] = (UINT8 *)p_mem + (act_size * total); 72 p_cb->freeq[id].total = total; 81 for (i = 0; i < total; i++) 158 p_cb->freeq[i].total = 0; 484 ** Description Called by an application to get the total number of buffers 489 ** Returns the total number of buffers in the pool 497 return (gki_cb.com.freeq[pool_id].total); 521 return ((UINT16)(Q->total - Q->cur_cnt)) [all...] |
/external/boringssl/src/crypto/cipher/ |
e_tls.c | 108 size_t total = 0; local 174 total = len; 177 if (!EVP_EncryptUpdate(&tls_ctx->cipher_ctx, out + total, &len, mac, 181 total += len; 192 if (!EVP_EncryptUpdate(&tls_ctx->cipher_ctx, out + total, &len, padding, 196 total += len; 199 if (!EVP_EncryptFinal_ex(&tls_ctx->cipher_ctx, out + total, &len)) { 202 total += len; 204 *out_len = total; 258 size_t total = 0 local [all...] |
/external/apache-http/android/src/com/android/internal/http/multipart/ |
Part.java | 395 * Return the total sum of all parts and that of the last boundary 398 * @return The total length 412 * @return The total length 423 long total = 0; local 431 total += l; 433 total += EXTRA_BYTES.length; 434 total += partBoundary.length; 435 total += EXTRA_BYTES.length; 436 total += CRLF_BYTES.length; 437 return total; [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MediaSet.java | 111 int total = getMediaItemCount(); local 113 total += getSubMediaSet(i).getTotalMediaItemCount(); 115 return total; 203 int total = getMediaItemCount(); local 205 while (start < total) { 206 int count = Math.min(MEDIAITEM_BATCH_FETCH_COUNT, total - start); 214 return total;
|
/external/libvpx/libvpx/ |
rate_hist.c | 34 int total; member in struct:rate_hist 52 hist->total = 0; 117 hist->total++; 189 int buckets, int total, int scale) { 230 pct = (float)(100.0 * bucket[i].count / total); 250 int total = 0; local 259 total += counts[i]; 265 show_histogram(bucket, buckets, total, scale); 281 show_histogram(hist->bucket, buckets, hist->total, scale);
|