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

1 2 3 4 56 7 8 91011>>

  /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 Font& font, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
134 return sizeFromNSControlSize(controlSizeForFont(font), 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 1119 int sizes[] = { 2, 4, 14 }; local
1160 int sizes[] = {3, 6, 16}; local
1186 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/chromium_org/third_party/skia/src/core/
SkDataTable.cpp 151 const size_t sizes[], int count) {
158 dataSize += sizes[i];
168 dir[i].fSize = sizes[i];
169 memcpy(elem, ptrs[i], sizes[i]);
170 elem += sizes[i];
  /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());
  /external/skia/src/core/
SkDataTable.cpp 151 const size_t sizes[], int count) {
158 dataSize += sizes[i];
168 dir[i].fSize = sizes[i];
169 memcpy(elem, ptrs[i], sizes[i]);
170 elem += sizes[i];
  /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 488 // Calculate sizes so that we can maintain the ratios if we need to resize.
523 std::vector<int> sizes; local
524 int leftovers = CalculateAttachedSizes(delta, available_size, &sizes);
541 DCHECK_EQ(attached_windows_.size(), sizes.size());
547 attached_bounds.set_width(sizes[i]);
550 attached_bounds.set_height(sizes[i]);
553 last += sizes[i];
560 std::vector<int>* sizes) const {
588 sizes->push_back(window_sizes[i].size());
595 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...]
  /external/chromium_org/remoting/host/
desktop_resizer_win.cc 71 // Enumerate the sizes to return, and where there are multiple modes of
79 std::list<SkISize> sizes;
117 sizes.push_back(candidate_size);
123 return sizes;
  /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 145 size_t sizes = SK_ARRAY_COUNT(gSizes); local
149 sizes = 1;
155 for (size_t i = 0; i < sizes; i++) {
243 size_t sizes = SK_ARRAY_COUNT(gSizes); local
247 sizes = 1;
265 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...]
  /build/tools/
dump-package-stats 34 Dumps a summary of the compressed and uncompressed sizes of various
  /development/ndk/platforms/android-3/include/linux/
msm_audio.h 17 #include <asm/sizes.h>

Completed in 4258 milliseconds

1 2 3 4 56 7 8 91011>>