HomeSort by relevance Sort by last modified time
    Searched refs:total (Results 151 - 175 of 793) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/valgrind/main/memcheck/tests/
sbfragment.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
result_summary.py 49 self.total = len(test_files)
50 self.remaining = self.total
  /external/smack/src/org/xbill/DNS/
RRset.java 114 int size, start, total; local
116 total = rrs.size();
119 size = total - nsigs;
134 start = total - nsigs;
143 list.addAll(rrs.subList(start, total));
  /external/openssl/crypto/x509v3/
v3_utl.c 680 /* Total number of bytes in tmp */
681 int total; member in struct:__anon12687
692 v6stat.total = 0;
707 if (v6stat.total != 16)
713 if (v6stat.total == 16)
721 if (v6stat.total > 0)
728 && (v6stat.zero_pos != v6stat.total))
735 || (v6stat.zero_pos == v6stat.total))
747 memset(v6 + v6stat.zero_pos, 0, 16 - v6stat.total);
749 if (v6stat.total != v6stat.zero_pos
    [all...]
  /frameworks/base/core/java/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/quake/quake/src/QW/client/
pmovetst.c 352 pmtrace_t trace, total; local
361 memset (&total, 0, sizeof(pmtrace_t));
362 total.fraction = 1;
363 total.ent = -1;
364 VectorCopy (end, total.endpos);
401 if (trace.fraction < total.fraction)
405 total = trace;
406 total.ent = i;
411 return total;
  /system/extras/latencytop/
latencytop.c 37 unsigned long total; member in struct:latency_entry
328 unsigned long count, max, total; local
345 sscanf(line, "%ld %ld %ld %s", &count, &total, &max, reason);
346 if (max > 0 || total > 0) {
352 e->total += total;
357 e->total = total;
396 average = e->total / e->count;
  /external/chromium/chrome/browser/download/
download_item_model.cc 32 int64 total = download_->total_bytes(); local
34 DataUnits amount_units = GetByteDisplayUnits(total);
37 // In RTL locales, we render the text "size/total" in an RTL context. This
40 // we mark the total string as an LTR string if the UI layout is
43 FormatBytes(total, amount_units, true));
  /external/guava/guava-tests/test/com/google/common/io/
MultiInputStreamTest.java 90 int total = 0; local
92 total++;
95 assertEquals(20, total);
  /external/qemu/
osdep.c 128 ssize_t total = 0; local
140 total += ret;
143 return total;
  /external/stlport/test/eh/
test_map.cpp 93 size_t total = 0; local
94 EH_DISTANCE( m.begin(), m.end(), total );
95 assert( m.size() == total );
  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfiler.cpp 73 ControlOption ReportProgressValue(int done, int total)
78 m_progress->Start(total);
81 if (done >= total)
  /frameworks/base/core/java/android/webkit/
ByteArrayBuilder.java 83 int total = 0; local
87 total += c.mLength;
89 return total;
  /packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java 92 int total = 0; local
94 total += p.getSize();
96 return total;
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
BufferedBlockCipher.java 113 int total = len + bufOff; local
118 leftOver = total % buf.length - (cipher.getBlockSize() + 2);
122 leftOver = total % buf.length;
125 return total - leftOver;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CTSBlockCipher.java 49 int total = len + bufOff; local
50 int leftOver = total % buf.length;
54 return total - buf.length;
57 return total - leftOver;
  /external/elfutils/lib/
md5.h 49 md5_uint32 total[2]; member in struct:md5_ctx
sha1.h 50 sha1_uint32 total[2]; member in struct:sha1_ctx
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
VertexBuffer.java 495 * @return The total number of data elements in the data buffer.
624 int total = components * numElements; local
631 bbuf.limit(total);
632 ByteBuffer bnewBuf = BufferUtils.createByteBuffer(total);
639 sbuf.limit(total);
640 ShortBuffer snewBuf = BufferUtils.createShortBuffer(total);
647 ibuf.limit(total);
648 IntBuffer inewBuf = BufferUtils.createIntBuffer(total);
654 fbuf.limit(total);
655 FloatBuffer fnewBuf = BufferUtils.createFloatBuffer(total);
854 int total = numElements * components; local
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/gki/common/
gki_buffer.c 46 static void gki_init_free_queue (UINT8 id, UINT16 size, UINT16 total, void *p_mem)
64 p_cb->pool_end[id] = (UINT8 *)p_mem + (act_size * total);
70 p_cb->freeq[id].total = total;
75 LOGD("gki_init_free_queue() init pool=%d, size=%d (aligned=%d) total=%d start=%p", id, size, tempsize, total, p_mem);
83 for (i = 0; i < total; i++)
113 void* p_mem = GKI_os_malloc((Q->size + BUFFER_PADDING_SIZE) * Q->total);
118 ALOGD("\ngki_alloc_free_queue calling gki_init_free_queue, id:%d size:%d, totol:%d\n", id, Q->size, Q->total);
120 gki_init_free_queue(id, Q->size, Q->total, p_mem)
    [all...]
  /external/libnfc-nci/src/gki/common/
gki_buffer.c 46 static void gki_init_free_queue (UINT8 id, UINT16 size, UINT16 total, void *p_mem)
64 p_cb->pool_end[id] = (UINT8 *)p_mem + (act_size * total);
70 p_cb->freeq[id].total = total;
75 LOGD("gki_init_free_queue() init pool=%d, size=%d (aligned=%d) total=%d start=%p", id, size, tempsize, total, p_mem);
83 for (i = 0; i < total; i++)
113 void* p_mem = GKI_os_malloc((Q->size + BUFFER_PADDING_SIZE) * Q->total);
118 ALOGD("\ngki_alloc_free_queue calling gki_init_free_queue, id:%d size:%d, totol:%d\n", id, Q->size, Q->total);
120 gki_init_free_queue(id, Q->size, Q->total, p_mem)
    [all...]
  /external/libvorbis/lib/
envelope.h 49 float total; member in struct:__anon10858
  /external/opencv/cv/src/
cvconvhull.cpp 253 int i, miny_ind = 0, maxy_ind = 0, total; local
300 if( mat->cols + mat->rows - 1 < ptseq->total )
316 total = ptseq->total;
317 if( total == 0 )
332 CV_CALL( pointer = (CvPoint**)cvAlloc( ptseq->total*sizeof(pointer[0]) ));
333 CV_CALL( stack = (int*)cvAlloc( (ptseq->total + 2)*sizeof(stack[0]) ));
338 for( i = 0; i < total; i++ )
347 icvSortPointsByPointers_32s( pointer, total, 0 );
348 for( i = 1; i < total; i++
    [all...]

Completed in 598 milliseconds

1 2 3 4 5 67 8 91011>>