HomeSort by relevance Sort by last modified time
    Searched refs:sizes (Results 76 - 100 of 332) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 60 Matrix<Index,Dynamic,1> 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 Matrix<Index,Dynamic,1> sizes(tmp.outerSize());
81 sizes.setZero();
90 sizes[perm.indices().coeff(it.index())]++;
91 tmp.reserve(sizes);
  /external/chromium_org/components/policy/core/common/
schema.cc 43 // Sizes for the storage arrays. These are calculated in advance so that the
190 // Determines the expected |sizes| of the storage for the representation
193 StorageSizes* sizes);
287 // Determine the sizes of the storage arrays and reserve the capacity before
291 StorageSizes sizes; local
292 DetermineStorageSizes(schema, &sizes);
295 storage->strings_.reserve(sizes.strings);
296 storage->schema_nodes_.reserve(sizes.schema_nodes);
297 storage->property_nodes_.reserve(sizes.property_nodes);
298 storage->properties_nodes_.reserve(sizes.properties_nodes)
    [all...]
  /external/chromium_org/chrome/browser/android/
shortcut_helper.h 66 const std::vector<gfx::Size>& sizes);
123 // Runs an algorithm only based on icon declared sizes. It will try to find
135 // Returns whether the preferred_icon_size_in_px_ is in the given |sizes|.
137 const std::vector<gfx::Size>& sizes) const;
139 // Returns whether the 'any' (ie. gfx::Size(0,0)) is in the given |sizes|.
140 bool IconSizesContainsAny(const std::vector<gfx::Size>& sizes) const;
  /external/chromium_org/third_party/skia/include/core/
SkPixelRef.h 224 * If any planes or rowBytes is NULL, this should output the sizes and return true
228 * into those planes of memory supplied by the caller. It should validate that the sizes
229 * match what it expected. If the sizes do not match, it should return false.
234 bool getYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
236 return this->onGetYUV8Planes(sizes, planes, rowBytes, colorSpace);
326 virtual bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
  /external/chromium_org/third_party/webrtc/modules/video_capture/android/java/src/org/webrtc/videoengine/
VideoCaptureDeviceInfoAndroid.java 70 JSONArray sizes = new JSONArray(); local
75 sizes.put(size);
92 .put("sizes", sizes)
  /development/ndk/platforms/android-3/include/linux/
msm_adsp.h 17 #include <asm/sizes.h>
  /external/chromium_org/v8/test/mjsunit/
object-literal-gc.js 59 // 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]);
big-array-literal.js 86 // The sizes to test.
87 var sizes = [1, 2, 100, 200, 300]; variable
90 for (var i = 0; i < sizes.length; i++) {
91 testLiteral(sizes[i], false);
92 testLiteral(sizes[i], true);
big-object-literal.js 86 // The sizes to test.
87 var sizes = [1, 2, 100, 200]; variable
90 for (var i = 0; i < sizes.length; i++) {
91 testLiteral(sizes[i], false);
92 testLiteral(sizes[i], true);
  /external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.assign/
valarray.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
  /external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
addition.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
and.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
divide.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
modulo.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
multiply.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
or.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
shift_left.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
shift_right.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
subtraction.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
xor.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
  /external/libcxx/test/numerics/numarray/template.valarray/valarray.sub/
gslice_const.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
  /external/chromium_org/third_party/skia/bench/
RectBench.cpp 151 size_t sizes = SK_ARRAY_COUNT(gSizes); local
155 sizes = 1;
162 for (size_t i = 0; i < sizes; i++) {
199 size_t sizes = SK_ARRAY_COUNT(gSizes); local
203 sizes = 1;
221 for (size_t i = 0; i < sizes; i++) {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1401.js 31 var sizes = new Array();
34 sizes[i] = 0;
39 var t = (sizes[++bottom] = size);
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ThemeMac.mm 110 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
112 IntSize controlSize = sizes[nsControlSize];
123 static LengthSize sizeFromFont(const FontDescription& fontDescription, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
125 return sizeFromNSControlSize(controlSizeForFont(fontDescription), zoomedSize, zoomFactor, sizes);
128 static ControlSize controlSizeFromPixelSize(const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor)
130 if (minZoomedSize.width() >= static_cast<int>(sizes[NSRegularControlSize].width() * zoomFactor) &&
131 minZoomedSize.height() >= static_cast<int>(sizes[NSRegularControlSize].height() * zoomFactor))
133 if (minZoomedSize.width() >= static_cast<int>(sizes[NSSmallControlSize].width() * zoomFactor) &&
134 minZoomedSize.height() >= static_cast<int>(sizes[NSSmallControlSize].height() * zoomFactor))
139 static void setControlSize(NSCell* cell, const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor
    [all...]
  /external/chromium_org/printing/backend/
print_backend_win.cc 75 std::vector<POINT> sizes; local
76 GetDeviceCapabilityArray(printer, port, DC_PAPERSIZE, &sizes);
81 DCHECK_EQ(ids.size(), sizes.size());
82 DCHECK_EQ(names.size(), sizes.size());
84 if (ids.size() != sizes.size())
86 if (names.size() != sizes.size())
89 for (size_t i = 0; i < sizes.size(); ++i) {
91 paper.size_um.SetSize(sizes[i].x * kToUm, sizes[i].y * kToUm);

Completed in 4309 milliseconds

1 2 34 5 6 7 8 91011>>