HomeSort by relevance Sort by last modified time
    Searched refs:total (Results 126 - 150 of 1974) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/boringssl/src/crypto/cipher/
e_ssl3.c 132 size_t total = 0; local
176 total = len;
179 if (!EVP_EncryptUpdate(&ssl3_ctx->cipher_ctx, out + total, &len, mac,
183 total += len;
195 if (!EVP_EncryptUpdate(&ssl3_ctx->cipher_ctx, out + total, &len, padding,
199 total += len;
202 if (!EVP_EncryptFinal_ex(&ssl3_ctx->cipher_ctx, out + total, &len)) {
205 total += len;
207 *out_len = total;
254 size_t total = 0 local
    [all...]
  /external/v8/test/mjsunit/compiler/
load-elimination-global.js 95 var total = v;
98 total = a.x;
101 return total;
107 var total = v;
110 total = a.x; // a.x not affected by loop
115 total = a.x; // a.x not affected by loop
119 total = a.x;
124 total = a.x; // a.x not affected by loop
128 return total;
regress-8.js 53 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+Gob))))))))),
58 if(a.total>=2E6) {
63 if(a.total>=2E5) {
68 if(a.total>=2E4) {
73 if(a.total>=2E3) {
78 if(a.total>=200) {
85 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(Mob+(LA+(a.total+zE))))))))),
101 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+zE))))))))),
109 Nob(2, { Un: "" , Im: "" , total: 42});
  /external/valgrind/massif/tests/
basic2.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
42 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
49 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
56 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
63 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
70 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
77 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
84 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
91 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
  /external/opencv3/modules/cudaimgproc/src/
gftt.cpp 118 int total = findCorners_gpu(eig_, static_cast<float>(maxVal * qualityLevel_), mask, tmpCorners_.ptr<float2>(), tmpCorners_.cols);
120 if (total == 0)
126 sortCorners_gpu(eig_, tmpCorners_.ptr<float2>(), total);
130 tmpCorners_.colRange(0, maxCorners_ > 0 ? std::min(maxCorners_, total) : total).copyTo(_corners);
134 std::vector<Point2f> tmp(total);
135 Mat tmpMat(1, total, CV_32FC2, (void*)&tmp[0]);
136 tmpCorners_.colRange(0, total).download(tmpMat);
139 tmp2.reserve(total);
147 for (int i = 0; i < total; ++i
    [all...]
  /frameworks/av/media/img_utils/include/img_utils/
TiffEntryImpl.h 97 uint32_t total = getActualSize();
98 WORD_ALIGN(total)
99 return (total <= OFFSET_SIZE) ? 0 : total;
104 uint32_t total = sizeof(T) * mCount;
107 total <<= 1;
109 return total;
196 uint32_t total = 0; local
198 total += mData[i]->getSize();
200 return total;
    [all...]
  /frameworks/support/v7/gridlayout/tests/src/android/support/v7/widget/
GridLayoutTest.java 72 int total = mGridView.getWidth(); local
75 assertTrue("test sanity", total > 0);
85 int total = mGridView.getWidth(); local
88 assertTrue("test sanity", total > 0);
98 int total = mGridView.getWidth(); local
101 assertTrue("test sanity", total > 0);
115 assertEquals(total, left);
123 int total = mGridView.getHeight(); local
126 assertTrue("test sanity", total > 0);
128 assertTrue("total height should be smaller than what it could be"
    [all...]
  /external/opencv/cxcore/src/
cxdatastructs.cpp 530 int count, total = seq->total; local
532 if( (unsigned)index >= (unsigned)total )
534 index += index < 0 ? total : 0;
535 index -= index >= total ? total : 0;
536 if( (unsigned)index >= (unsigned)total )
541 if( index + index <= total )
554 total -= block->count;
556 while( index < total );
611 int total = seq->total; local
645 int elem_size, total; local
996 int total = 0; local
1222 int elem_size, count, total; local
1464 int total; local
1589 int total, front = 0; local
1930 int total, length; local
2004 int i, elem_size, total, from_total; local
2459 int elem_size, i, j, total; local
3363 int i, total, elem_size; local
3399 int total, elem_size, index; local
    [all...]
  /external/opencv/cvaux/src/
cvhmm1d.cpp 159 int total = num_obs.height * num_obs.width;
166 obs->obs = (float*)icvAlloc( total * obs_size * sizeof(float) );
168 obs->state = (int*)icvAlloc( 2 * total * sizeof(int) );
169 obs->mix = (int*)icvAlloc( total * sizeof(int) );
333 int total = hmm->num_states;
337 num_samples = (int*)icvAlloc( total * sizeof(int) );
340 counter = (int*)icvAlloc( total * sizeof(int) );
342 samples = (CvVect32f**)icvAlloc( total * sizeof(CvVect32f*) );
343 samples_mix = (int***)icvAlloc( total * sizeof(int**) );
346 memset( num_samples, 0 , total*sizeof(int) )
    [all...]
cvsubdiv2.cpp 47 int i, j, total = subdiv->edges->total; local
57 for( i = 0; i < total; i++ )
166 int i, total = subdiv->edges->total; local
171 for( i = 0; i < total; i++ )
  /external/opencv3/modules/core/src/
datastructs.cpp 444 int count, total = seq->total; local
446 if( (unsigned)index >= (unsigned)total )
448 index += index < 0 ? total : 0;
449 index -= index >= total ? total : 0;
450 if( (unsigned)index >= (unsigned)total )
455 if( index + index <= total )
468 total -= block->count;
470 while( index < total );
519 int total = seq->total; local
545 int elem_size, total; local
856 int total = 0; local
1041 int elem_size, count, total; local
1255 int total; local
1374 int total, front = 0; local
1679 int total, length; local
1751 int i, elem_size, total, from_total; local
2200 int total = seq->total; local
2966 int i, total, elem_size; local
2996 int total, elem_size, index; local
    [all...]
  /art/tools/ahat/src/
HeapTable.java 70 subcols.add(new Column("Total", Column.Align.RIGHT));
83 long total = 0; local
86 total += size;
90 vals.add(DocString.format("%,14d", total));
114 long total = 0; local
117 total += size;
121 vals.add(DocString.format("%,14d", total));
  /external/autotest/client/site_tests/power_SuspendStress/
power_SuspendStress.py 20 @param duration: total run time of the test
74 total = len(self._suspender.failures)
75 iterations = len(self._suspender.successes) + total
82 if total == kernel + timeout:
85 (total, iterations, timeout, kernel))
86 if total == 1:
92 (total, iterations, timeout, kernel, firmware, spurious))
  /external/e2fsprogs/util/
copy_sparse.c 67 int got, total = 0; local
75 return total ? total : -1;
79 return total;
84 total += got;
87 return total;
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 153 int total = 0; local
154 while (total < len) {
155 int result = in.read(b, off + total, len - total);
158 total += result;
160 return total;
  /frameworks/av/media/libnbaio/
NBAIO.cpp 64 ssize_t NBAIO_Sink::writeVia(writeVia_t via, size_t total, void *user, size_t block)
78 while (accumulator < total) {
79 size_t count = total - accumulator;
100 ssize_t NBAIO_Source::readVia(readVia_t via, size_t total, void *user, size_t block)
114 while (accumulator < total) {
115 size_t count = total - accumulator;
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java 145 int total = 0; local
147 int n = iis.read(input, total, input.length - total);
151 total += n;
152 if (total == input.length) {
161 assertEquals(output.length, total);
  /bionic/libc/bionic/
malloc_info.cpp 77 size_t total = 0; local
85 total += mi.ordblks;
88 Elem(fp, "bins-total").contents("%zu", total);
  /cts/common/util/src/com/android/compatibility/common/util/
CaseResult.java 98 int total = 0; local
101 total++;
104 return total;
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiPackage.java 63 int total = 0; local
65 total += apiClass.getTotalMethods();
67 return total;
  /dalvik/dx/src/com/android/dx/rop/code/
DexTranslationAdvice.java 110 * Calculates the total rop width of the list of SSA registers
117 int total = 0; local
120 total += sources.get(i).getCategory();
123 return total;
  /external/chromium-trace/catapult/third_party/typ/typ/tests/
stats_test.py 30 s.total = 5
60 s.total = 5
73 s.total = 2
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
DexTranslationAdvice.java 110 * Calculates the total rop width of the list of SSA registers
117 int total = 0; local
120 total += sources.get(i).getCategory();
123 return total;
  /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/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);

Completed in 889 milliseconds

1 2 3 4 56 7 8 91011>>