/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/skia/tests/ |
YUVTest.cpp | 74 SkISize sizes[3]; local 76 sizes[0].set(128, 128); 77 sizes[1].set(64, 64); 78 sizes[2].set(64, 64); 79 codec_yuv(r, "color_wheel.jpg", sizes); 82 sizes[0].set(512, 512); 83 sizes[1].set(256, 256); 84 sizes[2].set(256, 256); 85 codec_yuv(r, "mandrill_512_q075.jpg", sizes); 88 sizes[1].set(512, 512) [all...] |
ImageGeneratorTest.cpp | 49 SkISize sizes[3]; local 50 sizes[0] = SkISize::Make(200, 200); 51 sizes[1] = SkISize::Make(100, 100); 52 sizes[2] = SkISize::Make( 50, 50); 58 ig.getYUV8Planes(sizes, nullptr, nullptr, &colorSpace); 59 ig.getYUV8Planes(sizes, nullptr, nullptr, nullptr); 60 ig.getYUV8Planes(sizes, planes, nullptr, nullptr); 61 ig.getYUV8Planes(sizes, nullptr, rowBytes, nullptr); 62 ig.getYUV8Planes(sizes, planes, rowBytes, nullptr); 63 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace) [all...] |
/external/skia/src/gpu/ |
GrYUVProvider.h | 53 * ignore the sizes parameter. Typical failure is that the provider does not contain YUV 56 virtual bool onGetYUVSizes(SkISize sizes[kPlaneCount]) = 0; 59 * On success, return true, and set sizes, rowbytes and colorspace to the appropriate values. 60 * planes[] will have already been allocated by the client (based on the worst-case sizes 65 virtual bool onGetYUVPlanes(SkISize sizes[kPlaneCount], void* planes[kPlaneCount],
|
GrTextureToYUVPlanes.cpp | 50 bool GrTextureToYUVPlanes(GrTexture* texture, const SkISize sizes[3], void* const planes[3], 53 // Depending on the relative sizes of the y, u, and v planes we may do 1 to 3 draws/ 69 // sizes however we optimize for two other cases - all planes are the same (1 draw to YUV), 71 if (sizes[0] == sizes[1] && sizes[1] == sizes[2]) { 75 yuvDesc.fWidth = sizes[0].fWidth; 76 yuvDesc.fHeight = sizes[0].fHeight; 85 yDesc.fWidth = sizes[0].fWidth [all...] |
/external/skia/src/codec/ |
SkCodecImageGenerator.cpp | 54 bool SkCodecImageGenerator::onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], 70 // Set the sizes so that the client allocates enough memory 71 sizes[0].fWidth = (int) sizeInfo.fYWidthBytes; 72 sizes[0].fHeight = sizeInfo.fYSize.height(); 73 sizes[1].fWidth = (int) sizeInfo.fUWidthBytes; 74 sizes[1].fHeight = sizeInfo.fUSize.height(); 75 sizes[2].fWidth = (int) sizeInfo.fVWidthBytes; 76 sizes[2].fHeight = sizeInfo.fVSize.height(); 83 sizeInfo.fYSize.set(fYWidth, sizes[0].height()); 84 sizeInfo.fUSize.set(fUWidth, sizes[1].height()) [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/ |
binop.s | 2 ; Generic binary operations supporting all sizes and their various
|
unop.s | 2 ; Generic unary operations supporting all sizes and their various
|
/external/libdrm/radeon/ |
radeon_cs_space.c | 45 static inline int radeon_cs_setup_bo(struct radeon_cs_space_check *sc, struct rad_sizes *sizes) 74 sizes->op_vram_write += bo->size; 76 sizes->op_gart_write += bo->size; 79 sizes->op_read += bo->size; 92 sizes->op_read -= bo->size; 93 sizes->op_vram_write += bo->size; 95 sizes->op_read -= bo->size; 96 sizes->op_gart_write += bo->size; 117 struct rad_sizes sizes; local 125 memset(&sizes, 0, sizeof(struct rad_sizes)) [all...] |
/external/skia/gm/ |
imagetoyuvplanes.cpp | 58 // A mix of rowbytes triples to go with the above sizes. 70 const SkISize *sizes = kSizes[s]; local 75 SkAutoTDeleteArray<uint8_t> yPlane(new uint8_t[realRowBytes[0] * sizes[0].fHeight]); 76 SkAutoTDeleteArray<uint8_t> uPlane(new uint8_t[realRowBytes[1] * sizes[1].fHeight]); 77 SkAutoTDeleteArray<uint8_t> vPlane(new uint8_t[realRowBytes[2] * sizes[2].fHeight]); 84 yuvBmps[0].setInfo(SkImageInfo::MakeA8(sizes[0].fWidth, sizes[0].fHeight), kRowBytes[s][0]); 85 yuvBmps[1].setInfo(SkImageInfo::MakeA8(sizes[1].fWidth, sizes[1].fHeight), kRowBytes[s][1]); 86 yuvBmps[2].setInfo(SkImageInfo::MakeA8(sizes[2].fWidth, sizes[2].fHeight), kRowBytes[s][2]) [all...] |
/packages/apps/Camera2/src/com/android/camera/settings/ |
PictureSizeLoader.java | 37 * Loads the camera picture sizes that can be set by the user. 45 * Holds the sizes for the back- and front cameras which will be available 77 * @param context used to load caches sizes from preferences. 86 * @param context used to load caches sizes from preferences. 88 * sizes. If the cache is empty, this will NOT attempt to open 89 * the camera devices in order to obtain the sizes. 101 * Computes the list of picture sizes that should be displayed by settings. 104 * sizes, if the sizes are not already cached. This is to be compatible with 122 List<Size> sizes; local [all...] |
ListPreferenceFiller.java | 29 public void fill(List<Size> sizes, ListPreference preference);
|
/external/opencv3/3rdparty/libtiff/ |
tif_flush.c | 50 uint64 *offsets=NULL, *sizes=NULL; local 55 && TIFFGetField( tif, TIFFTAG_TILEBYTECOUNTS, &sizes ) 59 tif->tif_dir.td_nstrips, sizes ) ) 69 && TIFFGetField( tif, TIFFTAG_STRIPBYTECOUNTS, &sizes ) 73 tif->tif_dir.td_nstrips, sizes ) )
|
/external/pdfium/third_party/libtiff/ |
tif_flush.c | 50 uint64 *offsets=NULL, *sizes=NULL; local 55 && TIFFGetField( tif, TIFFTAG_TILEBYTECOUNTS, &sizes ) 59 tif->tif_dir.td_nstrips, sizes ) ) 69 && TIFFGetField( tif, TIFFTAG_STRIPBYTECOUNTS, &sizes ) 73 tif->tif_dir.td_nstrips, sizes ) )
|
/external/v8/src/arm64/ |
cpu-arm64.cc | 48 // Sizes will be used to generate a mask big enough to cover a pointer. 49 CacheLineSizes sizes; local 50 uintptr_t dsize = sizes.dcache_line_size(); 51 uintptr_t isize = sizes.icache_line_size(); 52 // Cache line sizes are always a power of 2.
|
/frameworks/base/core/java/android/hardware/camera2/legacy/ |
SizeAreaComparator.java | 62 * @param sizes a non-{@code null} list of non-{@code null} sizes 65 * @throws NullPointerException if {@code sizes} or any elements in it were {@code null} 67 public static Camera.Size findLargestByArea(List<Camera.Size> sizes) { 68 checkNotNull(sizes, "sizes must not be null"); 70 return Collections.max(sizes, new SizeAreaComparator());
|
/frameworks/base/core/java/android/hardware/camera2/utils/ |
SizeAreaComparator.java | 61 * @param sizes a non-{@code null} list of non-{@code null} sizes 64 * @throws NullPointerException if {@code sizes} or any elements in it were {@code null} 66 public static Size findLargestByArea(List<Size> sizes) { 67 checkNotNull(sizes, "sizes must not be null"); 69 return Collections.max(sizes, new SizeAreaComparator());
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
timelapsers.hpp | 67 virtual void initialize(const std::vector<Point> &corners, const std::vector<Size> &sizes); 83 virtual void initialize(const std::vector<Point> &corners, const std::vector<Size> &sizes);
|
/external/skia/src/core/ |
SkImageGenerator.cpp | 55 bool SkImageGenerator::getYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], 58 // In all cases, we need the sizes array 59 SkASSERT(sizes); 74 // If we do have planes information, make sure all sizes are non 0 77 ((sizes[0].fWidth >= 0) && 78 (sizes[0].fHeight >= 0) && 79 (sizes[1].fWidth >= 0) && 80 (sizes[1].fHeight >= 0) && 81 (sizes[2].fWidth >= 0) && 82 (sizes[2].fHeight >= 0) & [all...] |
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_mpeg12_bitstream.h | 54 const unsigned *sizes);
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/ |
SampleList.java | 19 long[] sizes; field in class:SampleList 55 sizes = new long[l2i(sampleSizeBox.getSampleCount())]; 56 Arrays.fill(sizes, sampleSizeBox.getSampleSize()); 58 sizes = sampleSizeBox.getSampleSizes(); 60 offsets = new long[sizes.length]; 66 long sampleSize = sizes[sampleIndex]; 90 if (sizes == null || offsets == null) { 91 sizes = new long[0]; 98 // We have now a map from all sample offsets to their sizes 105 long[] nuSizes = new long[sizes.length + keys.size()] [all...] |
/prebuilts/go/darwin-x86/src/crypto/dsa/ |
dsa_test.go | 26 func testParameterGeneration(t *testing.T, sizes ParameterSizes, L, N int) { 30 err := GenerateParameters(params, rand.Reader, sizes) 32 t.Errorf("%d: %s", int(sizes), err) 37 t.Errorf("%d: params.BitLen got:%d want:%d", int(sizes), params.P.BitLen(), L) 41 t.Errorf("%d: q.BitLen got:%d want:%d", int(sizes), params.Q.BitLen(), L) 49 t.Errorf("%d: p-1 mod q != 0", int(sizes)) 53 t.Errorf("%d: invalid generator", int(sizes)) 62 testSignAndVerify(t, int(sizes), &priv)
|