HomeSort by relevance Sort by last modified time
    Searched refs:sizes (Results 1 - 25 of 541) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/unittests/DebugInfo/
DWARFFormValueTest.cpp 21 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/
bn_mp_prime_rabin_miller_trials.c 21 } sizes[] = { variable in typeref:struct:__anon19213
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/
web_apps_unittest.cc 38 // Sizes.
45 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())
    [all...]
web_apps.h 23 // on success, false on errors. On success either all the sizes specified in
24 // the attribute are added to sizes, or is_any is set to true.
27 bool ParseIconSizes(const string16& text, std::vector<gfx::Size>* sizes,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 28 sizes = imgfile.getsizes(name)
39 sizes = imgfile.getsizes(name)
41 print 'Opening test image: %s, sizes: %s' % (name, str(sizes))
56 imgfile.write (outputfile, image, sizes[0], sizes[1], sizes[2])
60 print 'Opening scaled test image: %s, sizes: %s' % (name, str(sizes))
62 # is scaled to the given x and y sizes. If the filter and blu
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 28 sizes = imgfile.getsizes(name)
39 sizes = imgfile.getsizes(name)
41 print 'Opening test image: %s, sizes: %s' % (name, str(sizes))
56 imgfile.write (outputfile, image, sizes[0], sizes[1], sizes[2])
60 print 'Opening scaled test image: %s, sizes: %s' % (name, str(sizes))
62 # is scaled to the given x and y sizes. If the filter and blu
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
SSLKeyGeneratorChromium.cpp 45 void getSupportedKeySizes(Vector<String>& sizes)
47 sizes.resize(2);
48 sizes[0] = keygenMenuHighGradeKeySize();
49 sizes[1] = keygenMenuMediumGradeKeySize();
  /external/chromium_org/third_party/WebKit/Source/core/platform/
SSLKeyGenerator.h 36 // Returns strings representing key sizes that may be used
39 void getSupportedKeySizes(Vector<String>& sizes);
  /external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
stacktrace.h 52 // "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 of 0 or less indicate that those frame sizes couldn'
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_with_context.cc 51 int GetStackFramesWithContext(void** pcs, int* sizes, int max_depth,
53 return GetStackFrames(pcs, sizes, max_depth, skip_count + 1);
stacktrace_generic-inl.h 57 // 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/
stacktrace.h 52 // "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 of 0 or less indicate that those frame sizes couldn'
    [all...]
  /external/dropbear/libtommath/etc/
2kprime.c 5 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);
drprime.c 4 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/
policies.py 71 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['tc-total-log']
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stacktrace_generic-inl.h 57 // 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);