Searched refs:sizes (Results 1 - 25 of 242) sorted by relevance

12345678910

/external/llvm/unittests/DebugInfo/
H A DDWARFFormValueTest.cpp21 const uint8_t *sizes = DWARFFormValue::getFixedFormSizes(4, 2); local
22 EXPECT_EQ(sizes[DW_FORM_addr], sizes[DW_FORM_ref_addr]);
23 sizes = DWARFFormValue::getFixedFormSizes(8, 2);
24 EXPECT_EQ(sizes[DW_FORM_addr], sizes[DW_FORM_ref_addr]);
25 sizes = DWARFFormValue::getFixedFormSizes(8, 3);
26 EXPECT_EQ(4, sizes[DW_FORM_ref_addr]);
27 // Check that we don't have fixed form sizes for weird address sizes
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_prime_rabin_miller_trials.c21 } sizes[] = { variable in typeref:struct:__anon16819
37 for (x = 0; x < (int)(sizeof(sizes)/(sizeof(sizes[0]))); x++) {
38 if (sizes[x].k == size) {
39 return sizes[x].t;
40 } else if (sizes[x].k > size) {
41 return (x == 0) ? sizes[0].t : sizes[x - 1].t;
44 return sizes[x-1].t + 1;
/external/chromium_org/chrome/renderer/
H A Dweb_apps_unittest.cc45 std::vector<gfx::Size> sizes; local
46 bool result = web_apps::ParseIconSizes(ASCIIToUTF16(data[i].input), &sizes,
51 ASSERT_EQ(data[i].expected_size_count, sizes.size());
52 if (!sizes.empty()) {
53 ASSERT_EQ(data[i].width1, sizes[0].width());
54 ASSERT_EQ(data[i].height1, sizes[0].height());
56 if (sizes.size() > 1) {
57 ASSERT_EQ(data[i].width2, sizes[1].width());
58 ASSERT_EQ(data[i].height2, sizes[1].height());
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
H A DSSLKeyGeneratorChromium.cpp45 void getSupportedKeySizes(Vector<String>& sizes) argument
47 sizes.resize(2);
48 sizes[0] = keygenMenuHighGradeKeySize();
49 sizes[1] = keygenMenuMediumGradeKeySize();
/external/chromium_org/v8/test/mjsunit/
H A Dlarge-object-literal.js28 // Test that we can create object literals of various sizes.
49 // The sizes to test.
50 var sizes = [0, 1, 2, 100, 200, 400, 1000]; variable
53 for (var i = 0; i < sizes.length; i++) {
54 testLiteral(sizes[i]);
H A Dobject-literal-gc.js59 // The sizes to test.
60 var sizes = [0, 1, 2, 100, 200, 400, 1000]; variable
63 for (var i = 0; i < sizes.length; i++) {
64 testLiteral(sizes[i]);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1401.js31 var sizes = new Array();
34 sizes[i] = 0;
39 var t = (sizes[++bottom] = size);
/external/v8/test/mjsunit/
H A Dlarge-object-literal.js28 // Test that we can create object literals of various sizes.
49 // The sizes to test.
50 var sizes = [0, 1, 2, 100, 200, 400, 1000]; variable
53 for (var i = 0; i < sizes.length; i++) {
54 testLiteral(sizes[i]);
H A Dobject-literal-gc.js59 // The sizes to test.
60 var sizes = [0, 1, 2, 100, 200, 400, 1000]; variable
63 for (var i = 0; i < sizes.length; i++) {
64 testLiteral(sizes[i]);
/external/v8/test/mjsunit/regress/
H A Dregress-1401.js31 var sizes = new Array();
34 sizes[i] = 0;
39 var t = (sizes[++bottom] = size);
/external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
H A Dstacktrace.h52 // "result", and the corresponding stack frame sizes in "sizes".
53 // Returns the number of values recorded in "result"/"sizes".
60 // int sizes[10];
61 // int depth = GetStackFrames(result, sizes, 10, 1);
71 // And corresponding stack frame sizes will also be recorded:
72 // sizes[0] 16
73 // sizes[1] 16
74 // (Stack frame sizes of 16 above are just for illustration purposes.)
75 // Stack frame sizes o
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_with_context.cc51 int GetStackFramesWithContext(void** pcs, int* sizes, int max_depth, argument
53 return GetStackFrames(pcs, sizes, max_depth, skip_count + 1);
H A Dstacktrace_generic-inl.h57 // int* sizes: the size of each stack frame, as an array
59 // int max_depth: the size of the result (and sizes) array(s)
78 // No implementation for finding out the stack frame sizes yet.
79 memset(sizes, 0, sizeof(*sizes) * result_count);
/external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
H A Dstacktrace.h52 // "result", and the corresponding stack frame sizes in "sizes".
53 // Returns the number of values recorded in "result"/"sizes".
60 // int sizes[10];
61 // int depth = GetStackFrames(result, sizes, 10, 1);
71 // And corresponding stack frame sizes will also be recorded:
72 // sizes[0] 16
73 // sizes[1] 16
74 // (Stack frame sizes of 16 above are just for illustration purposes.)
75 // Stack frame sizes o
[all...]
/external/dropbear/libtommath/etc/
H A D2kprime.c5 int sizes[] = {256, 512, 768, 1024, 1536, 2048, 3072, 4096}; variable
19 for (x = 0; x < (int)(sizeof(sizes) / sizeof(sizes[0])); x++) {
21 mp_2expt(&q, sizes[x]);
31 printf("No primes of size %d found\n", sizes[x]);
65 ++sizes[x];
70 printf("\n\n%d-bits (k = %lu) = %s\n", sizes[x], z, buf);
71 fprintf(out, "%d-bits (k = %lu) = %s\n", sizes[x], z, buf); fflush(out);
H A Ddrprime.c4 int sizes[] = { 1+256/DIGIT_BIT, 1+512/DIGIT_BIT, 1+768/DIGIT_BIT, 1+1024/DIGIT_BIT, 1+2048/DIGIT_BIT, 1+4096/DIGIT_BIT }; variable
16 for (x = 0; x < (int)(sizeof(sizes)/sizeof(sizes[0])); x++) {
18 printf("Seeking a %d-bit safe prime\n", sizes[x] * DIGIT_BIT);
19 mp_grow(&a, sizes[x]);
21 for (y = 1; y < sizes[x]; y++) {
27 a.used = sizes[x];
46 printf("Error not DR modulus\n"); sizes[x] += 1; goto top;
/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dpolicies.py71 A dict mapping components and their corresponding sizes.
100 sizes = dict((c, 0) for c in policy.components)
102 PolicyCommands._accumulate_malloc(dump, policy, bucket_set, sizes)
104 dump, all_pfn_dict, policy, bucket_set, sizes)
114 sizes['mmap-no-log'] = (
116 sizes['mmap-total-log'])
117 sizes['mmap-total-record'] = dump.global_stat('profiled-mmap_committed')
118 sizes['mmap-total-record-vm'] = dump.global_stat('profiled-mmap_virtual')
120 sizes['tc-no-log'] = (
122 sizes['t
[all...]
H A Dexpand.py46 sizes = {}
49 dump, policy, bucket_set, component_name, depth, sizes)
52 sizes.iteritems(), key=(lambda x: x[1]), reverse=True)
61 def _add_size(precedence, bucket, depth, committed, sizes):
69 if not stacktrace_sequence in sizes:
70 sizes[stacktrace_sequence] = 0
71 sizes[stacktrace_sequence] += committed
74 def _accumulate(dump, policy, bucket_set, component_name, depth, sizes):
96 int(words[COMMITTED]), sizes)
104 region[1]['committed'], sizes)
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DSSLKeyGenerator.h36 // Returns strings representing key sizes that may be used
39 void getSupportedKeySizes(Vector<String>& sizes);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_generic-inl.h57 // int* sizes: the size of each stack frame, as an array
59 // int max_depth: the size of the result (and sizes) array(s)
78 // No implementation for finding out the stack frame sizes yet.
79 memset(sizes, 0, sizeof(*sizes) * result_count);
/external/chromium_org/net/disk_cache/flash/
H A Dlog_store_entry_unittest.cc45 int sizes[disk_cache::kFlashLogStoreEntryNumStreams] = {333, 444, 555, 666}; local
50 buffers[i] = new net::IOBuffer(sizes[i]);
51 CacheTestFillBuffer(buffers[i]->data(), sizes[i], false);
52 EXPECT_EQ(sizes[i], entry->WriteData(i, 0, buffers[i].get(), sizes[i]));
61 EXPECT_EQ(sizes[i], entry->GetDataSize(i));
62 scoped_refptr<net::IOBuffer> buffer(new net::IOBuffer(sizes[i]));
63 EXPECT_EQ(sizes[i], entry->ReadData(i, 0, buffer.get(), sizes[i]));
64 EXPECT_EQ(0, memcmp(buffers[i]->data(), buffer->data(), sizes[
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbnspeed.c165 static int sizes[NUM_SIZES]={128,256,512,1024,2048}; variable
166 /*static int sizes[NUM_SIZES]={59,179,299,419,539}; */
193 BN_rand(a,sizes[i],1,0);
196 BN_rand(b,sizes[j],1,0);
201 printf("mul %4d x %4d -> %8.3fms\n",sizes[i],sizes[j],tm*1000.0/num);
209 BN_rand(a,sizes[i],1,0);
214 printf("sqr %4d x %4d -> %8.3fms\n",sizes[i],sizes[i],tm*1000.0/num);
221 BN_rand(a,sizes[
[all...]
/external/openssl/crypto/bn/
H A Dbnspeed.c165 static int sizes[NUM_SIZES]={128,256,512,1024,2048}; variable
166 /*static int sizes[NUM_SIZES]={59,179,299,419,539}; */
193 BN_rand(a,sizes[i],1,0);
196 BN_rand(b,sizes[j],1,0);
201 printf("mul %4d x %4d -> %8.3fms\n",sizes[i],sizes[j],tm*1000.0/num);
209 BN_rand(a,sizes[i],1,0);
214 printf("sqr %4d x %4d -> %8.3fms\n",sizes[i],sizes[i],tm*1000.0/num);
221 BN_rand(a,sizes[
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DIconURL.h64 IconURL(const KURL& url, const String& sizes, const String& mimeType, IconType type) argument
66 , m_sizes(sizes)
/external/dropbear/libtomcrypt/testprof/
H A Decc_test.c5 static int sizes[] = { variable
47 for (x = 0; x < (int)(sizeof(sizes)/sizeof(sizes[0])); x++) {
50 if (sizes[z] < ltc_ecc_sets[z].size) break;
64 LTC_ARGCHK(yarrow_read(buf, sizes[x], &yarrow_prng) == sizes[x]);
65 DO(mp_read_unsigned_bin(rA, buf, sizes[x]));
66 LTC_ARGCHK(yarrow_read(buf, sizes[x], &yarrow_prng) == sizes[x]);
67 DO(mp_read_unsigned_bin(rB, buf, sizes[
[all...]

Completed in 1350 milliseconds

12345678910