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

1 2 3 4 56 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
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])),
  /ndk/sources/cxx-stl/llvm-libc++/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/v8/test/mjsunit/regress/
regress-1401.js 31 var sizes = new Array();
34 sizes[i] = 0;
39 var t = (sizes[++bottom] = size);
  /external/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/core/platform/mac/
ThemeMac.mm 119 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
121 IntSize controlSize = sizes[nsControlSize];
132 static LengthSize sizeFromFont(const FontDescription& fontDescription, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
134 return sizeFromNSControlSize(controlSizeForFont(fontDescription), zoomedSize, zoomFactor, sizes);
137 static ControlSize controlSizeFromPixelSize(const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor)
139 if (minZoomedSize.width() >= static_cast<int>(sizes[NSRegularControlSize].width() * zoomFactor) &&
140 minZoomedSize.height() >= static_cast<int>(sizes[NSRegularControlSize].height() * zoomFactor))
142 if (minZoomedSize.width() >= static_cast<int>(sizes[NSSmallControlSize].width() * zoomFactor) &&
143 minZoomedSize.height() >= static_cast<int>(sizes[NSSmallControlSize].height() * zoomFactor))
148 static void setControlSize(NSCell* cell, const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor
    [all...]
  /external/chromium_org/v8/test/mjsunit/
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/v8/test/mjsunit/
big-array-literal.js 83 // The sizes to test.
84 var sizes = [1, 2, 100, 200, 300]; variable
87 for (var i = 0; i < sizes.length; i++) {
88 testLiteral(sizes[i], false);
89 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/chromium_org/content/common/gpu/client/
gl_helper_unittests.cc 1242 int sizes[] = { 2, 4, 14 }; local
1286 int sizes[] = {3, 6, 16}; local
1315 int sizes[] = {7, 99, 128, 256, 512, 719, 720, 721, 1920, 2011, 3217, 4096}; local
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java 112 private int[] sizes; field in class:DDSLoader
135 return new Image(pixelFormat, width, height, depth, data, sizes);
147 return new Image(pixelFormat, width, height, depth, data, sizes);
388 * Computes the sizes of each mipmap level in bytes, and stores it in sizes_[].
394 sizes = new int[mipMapCount];
404 sizes[i] = ((size + 3) / 4) * 4;
450 byte[] data = new byte[sizes[mip]];
548 byte[] data = new byte[sizes[mip]];
555 byte[] data = new byte[sizes[mip]];
590 byte[] data = new byte[sizes[mip]]
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticlePointMesh.java 89 // set sizes
123 FloatBuffer sizes = (FloatBuffer) svb.getData(); local
133 sizes.rewind();
142 sizes.put(p.size * sizeScale);
157 sizes.flip();
163 svb.updateData(sizes);
  /external/lzma/CPP/7zip/Archive/Common/
CoderMixer2MT.cpp 52 static void SetSizes(const UInt64 **srcSizes, CRecordVector<UInt64> &sizes,
55 sizes.Clear();
61 sizes.Add(0);
66 sizes.Add(*srcSizes[i]);
67 sizePointers.Add(&sizes.Back());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imageop.py 14 SIZES = (1, 2, 3, 4)
44 for size in SIZES:
185 sizes = imgfile.getsizes(name)
188 sizes = imgfile.getsizes(name)
190 print 'imgfile opening test image: %s, sizes: %s' % (name, str(sizes))
193 return (image, sizes[0], sizes[1])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imageop.py 14 SIZES = (1, 2, 3, 4)
44 for size in SIZES:
185 sizes = imgfile.getsizes(name)
188 sizes = imgfile.getsizes(name)
190 print 'imgfile opening test image: %s, sizes: %s' % (name, str(sizes))
193 return (image, sizes[0], sizes[1])
  /external/chromium_org/ash/wm/workspace/
workspace_window_resizer.cc 547 // Calculate sizes so that we can maintain the ratios if we need to resize.
583 std::vector<int> sizes; local
584 int leftovers = CalculateAttachedSizes(delta, available_size, &sizes);
601 DCHECK_EQ(attached_windows_.size(), sizes.size());
607 attached_bounds.set_width(sizes[i]);
610 attached_bounds.set_height(sizes[i]);
613 last += sizes[i];
620 std::vector<int>* sizes) const {
648 sizes->push_back(window_sizes[i].size());
655 std::vector<WindowSize>& sizes) const
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
camera.cc 76 // Enumerates available frame sizes for specified pixel format and picks up the
85 std::vector<gfx::Size> sizes; local
89 sizes.push_back(gfx::Size(size.discrete.width, size.discrete.height));
94 if (sizes.empty()) {
98 for (size_t i = 0; i < sizes.size(); ++i) {
99 if (sizes[i].width() >= desired_width &&
100 sizes[i].height() >= desired_height)
101 return sizes[i];
105 int max_area = sizes[0].GetArea();
106 for (size_t i = 1; i < sizes.size(); ++i)
    [all...]
  /frameworks/av/include/camera/
CameraParameters.h 61 void getSupportedPreviewSizes(Vector<Size> &sizes) const;
76 // in pixels for video frames. If sizes returned from the method
81 void getSupportedVideoSizes(Vector<Size> &sizes) const;
84 // supported preview sizes returned from getSupportedPreviewSizes().
98 void getSupportedPictureSizes(Vector<Size> &sizes) const;
112 // Supported preview frame sizes in pixels.
163 // Supported EXIF thumbnail sizes (width x height). 0x0 means not thumbnail
440 // The width and height must be one of the supported sizes retrieved
461 // The width and height must be one of the supported sizes retrieved
    [all...]
  /external/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++) {
253 size_t sizes = SK_ARRAY_COUNT(gSizes); local
257 sizes = 1;
276 for (size_t i = 0; i < sizes; i++) {
  /external/chromium_org/tools/win/sizeviewer/
sizeviewer.py 82 for source, sizes in by_source.iteritems():
83 InsertIntoTree(data, source, sum(sizes))
  /frameworks/av/camera/
CameraParameters.cpp 321 static void parseSizesList(const char *sizesStr, Vector<Size> &sizes)
334 ALOGE("Picture sizes string \"%s\" contains invalid character.", sizesStr);
337 sizes.push(Size(width, height));
370 void CameraParameters::getSupportedPreviewSizes(Vector<Size> &sizes) const
373 parseSizesList(previewSizesStr, sizes);
391 void CameraParameters::getSupportedVideoSizes(Vector<Size> &sizes) const
394 parseSizesList(videoSizesStr, sizes);
441 void CameraParameters::getSupportedPictureSizes(Vector<Size> &sizes) const
444 parseSizesList(pictureSizesStr, sizes);
  /external/clang/utils/ABITest/
TypeGen.py 292 def __init__(self, typeGen, sizes):
295 self.sizes = tuple(map(int,sizes))
299 self.cardinality = len(self.sizes)*self.typeGen.cardinality
302 S,T = getNthPairBounded(N, len(self.sizes), self.typeGen.cardinality)
303 return ArrayType(N, True, self.typeGen.get(T), self.sizes[S])
306 def __init__(self, typeGen, sizes):
309 self.sizes = tuple(size)
313 self.cardinality = len(self.sizes)*self.typeGen.cardinality
316 S,T = getNthPairBounded(N, len(self.sizes), self.typeGen.cardinality
    [all...]

Completed in 2340 milliseconds

1 2 3 4 56 7 8 91011>>