HomeSort by relevance Sort by last modified time
    Searched refs:sizes (Results 51 - 75 of 547) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_powerpc-inl.h 90 // int* sizes: the size of each stack frame, as an array
92 // int max_depth: the size of the result (and sizes) array(s)
159 sizes[n] = (uintptr_t)next_sp - (uintptr_t)sp;
162 sizes[n] = 0;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stacktrace_arm-inl.h 99 // int* sizes: the size of each stack frame, as an array
101 // int max_depth: the size of the result (and sizes) array(s)
134 sizes[n] = (uintptr_t)next_sp - (uintptr_t)sp;
137 sizes[n] = 0;
stacktrace_powerpc-inl.h 90 // int* sizes: the size of each stack frame, as an array
92 // int max_depth: the size of the result (and sizes) array(s)
159 sizes[n] = (uintptr_t)next_sp - (uintptr_t)sp;
162 sizes[n] = 0;
  /external/eigen/test/
geo_alignedbox.cpp 105 VERIFY_IS_APPROX(sides, box.sizes() );
106 VERIFY_IS_APPROX(sides[1], box.sizes()[1] );
107 VERIFY_IS_APPROX(sides[1], box.sizes().maxCoeff() );
108 VERIFY_IS_APPROX(sides[0], box.sizes().minCoeff() );
132 VERIFY_IS_APPROX(sides, box.sizes() );
133 VERIFY_IS_APPROX(sides[1], box.sizes()[1] );
134 VERIFY_IS_APPROX(sides[1], box.sizes().maxCoeff() );
135 VERIFY_IS_APPROX(sides[0], box.sizes().minCoeff() );
  /external/openssl/crypto/bn/
expspeed.c 194 static int sizes[NUM_SIZES]={128,256,512,1024,2048,4096,8192}; variable
196 /*static int sizes[NUM_SIZES]={59,179,299,419,539}; */
245 if (!BN_generate_prime(c,sizes[i],0,ADD,REM,genprime_cb,NULL)) goto err;
254 if (!BN_pseudo_rand(a,sizes[i],1,0)) goto err;
256 if (!BN_pseudo_rand(b,sizes[i],1,0)) goto err;
259 if (!BN_pseudo_rand(c,sizes[i],1,1)) goto err;
328 sizes[i],sizes[i],sizes[i],tm*1000.0/num,tm*mul_c[i]/num, num);
  /external/skia/tests/
StreamTest.cpp 145 const size_t sizes[] = { local
154 char buffer[sizeof(sizes) * 4];
157 for (i = 0; i < SK_ARRAY_COUNT(sizes); ++i) {
158 bool success = wstream.writePackedUInt(sizes[i]);
164 for (i = 0; i < SK_ARRAY_COUNT(sizes); ++i) {
166 if (sizes[i] != n) {
167 SkDebugf("-- %d: sizes:%x n:%x\n", i, sizes[i], n);
169 REPORTER_ASSERT(reporter, sizes[i] == n);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.fill/
assign_value.pass.cpp 28 typedef std::valarray<std::size_t> sizes; typedef
30 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.assign/
gslice_array_assign.pass.cpp 28 typedef std::valarray<std::size_t> sizes; typedef
31 v = v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.cons/
gslice_array.pass.cpp 28 typedef std::valarray<std::size_t> sizes; typedef
30 std::valarray<int> v(v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.sub/
gslice_non_const.pass.cpp 28 typedef std::valarray<std::size_t> sizes; typedef
30 std::valarray<int> v(v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
  /external/chromium_org/third_party/skia/src/core/
SkDataTable.cpp 89 const size_t sizes[], int count) {
96 dataSize += sizes[i];
106 dir[i].fSize = sizes[i];
107 memcpy(elem, ptrs[i], sizes[i]);
108 elem += sizes[i];
  /external/lzma/CPP/7zip/Archive/Common/
CoderMixer2.cpp 94 static void SetSizes(const UInt64 **srcSizes, CRecordVector<UInt64> &sizes,
97 sizes.Clear();
103 sizes.Add(0);
108 sizes.Add(*srcSizes[i]);
109 sizePointers.Add(&sizes.Back());
  /external/skia/src/core/
SkDataTable.cpp 89 const size_t sizes[], int count) {
96 dataSize += sizes[i];
106 dir[i].fSize = sizes[i];
107 memcpy(elem, ptrs[i], sizes[i]);
108 elem += sizes[i];
  /external/chromium_org/v8/test/mjsunit/
large-object-literal.js 28 // 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]);
  /external/v8/test/mjsunit/
large-object-literal.js 28 // 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]);
  /external/chromium_org/components/policy/core/common/
schema.cc 38 // Sizes for the storage arrays. These are calculated in advance so that the
117 // Determines the expected |sizes| of the storage for the representation
120 StorageSizes* sizes);
189 // Determine the sizes of the storage arrays and reserve the capacity before
193 StorageSizes sizes; local
194 DetermineStorageSizes(schema, &sizes);
197 storage->strings_.reserve(sizes.strings);
198 storage->schema_nodes_.reserve(sizes.schema_nodes);
199 storage->property_nodes_.reserve(sizes.property_nodes);
200 storage->properties_nodes_.reserve(sizes.properties_nodes)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
image_loader_unittest.cc 161 std::set<int> sizes; local
162 sizes.insert(extension_misc::EXTENSION_ICON_SMALLISH);
202 int sizes[] = {extension_misc::EXTENSION_ICON_SMALLISH, local
204 for (size_t i = 0; i < arraysize(sizes); ++i) {
206 extension.get(), sizes[i], ExtensionIconSet::MATCH_EXACTLY);
210 gfx::Size(sizes[i], sizes[i]),
  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 60 VectorXi sizes(m_matrix.outerSize());
64 sizes[((Side==OnTheLeft) ^ Transposed) ? jp : j] = m_matrix.innerVector(((Side==OnTheRight) ^ Transposed) ? jp : j).size();
66 tmp.reserve(sizes);
80 VectorXi sizes(tmp.outerSize());
81 sizes.setZero();
90 sizes[perm.indices().coeff(it.index())]++;
91 tmp.reserve(sizes);
  /external/chromium/chrome/common/
web_apps.cc 41 // Sizes a single size (the width or height) from a 'sizes' attribute. A size
70 if (!link.hasAttribute("sizes"))
75 if (!web_apps::ParseIconSizes(link.getAttribute("sizes"), &icon_sizes,
113 std::vector<string16> sizes; local
114 base::SplitStringDontTrim(text, L'x', &sizes);
115 if (sizes.size() != 2)
118 return gfx::Size(ParseSingleIconSize(sizes[0]),
119 ParseSingleIconSize(sizes[1]));
123 std::vector<gfx::Size>* sizes,
    [all...]
web_apps.h 80 // on success, false on errors. On success either all the sizes specified in
81 // the attribute are added to sizes, or is_any is set to true.
84 bool ParseIconSizes(const string16& text, std::vector<gfx::Size>* sizes,
  /frameworks/av/include/camera/
CameraParameters2.h 68 void getSupportedPreviewSizes(Vector<Size> &sizes) const;
83 // in pixels for video frames. If sizes returned from the method
88 void getSupportedVideoSizes(Vector<Size> &sizes) const;
91 // supported preview sizes returned from getSupportedPreviewSizes().
106 void getSupportedPictureSizes(Vector<Size> &sizes) const;
  /development/ndk/platforms/android-3/include/linux/
msm_adsp.h 17 #include <asm/sizes.h>
  /packages/wallpapers/Basic/src/com/android/wallpaper/walkaround/
WalkAroundWallpaper.java 169 final List<Camera.Size> sizes = params.getSupportedPreviewSizes(); local
173 for (Camera.Size size : sizes) {
185 for (Camera.Size size : sizes) {
205 Camera.Size size = sizes.get(0);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
msm_adsp.h 17 #include <asm/sizes.h>
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
msm_adsp.h 17 #include <asm/sizes.h>

Completed in 1959 milliseconds

1 23 4 5 6 7 8 91011>>