HomeSort by relevance Sort by last modified time
    Searched defs:sizes (Results 26 - 50 of 248) sorted by null

12 3 4 5 6 7 8 910

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
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])),
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])),
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])),
  /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_const.pass.cpp 31 typedef std::valarray<std::size_t> sizes; typedef
33 v1[std::gslice(3, sizes(sz, sizeof(sz)/sizeof(sz[0])),
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])),
  /bootable/recovery/
interlace-frames.py 30 sizes = set() variable
32 sizes.add(fr.size)
34 assert len(sizes) == 1, "All input images must have the same size."
35 w, h = sizes.pop()
  /external/libcxx/test/std/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])),
  /external/skia/tests/
ImageGeneratorTest.cpp 18 SkISize sizes[3]; local
19 sizes[0] = SkISize::Make(200, 200);
20 sizes[1] = SkISize::Make(100, 100);
21 sizes[2] = SkISize::Make( 50, 50);
27 ig.getYUV8Planes(sizes, NULL, NULL, &colorSpace);
28 ig.getYUV8Planes(sizes, NULL, NULL, NULL);
29 ig.getYUV8Planes(sizes, planes, NULL, NULL);
30 ig.getYUV8Planes(sizes, NULL, rowBytes, NULL);
31 ig.getYUV8Planes(sizes, planes, rowBytes, NULL);
32 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace)
    [all...]
JpegTest.cpp 482 size_t sizes[3], rowBytes[3]; local
486 totalSize += sizes[i] = rowBytes[i] * yuvSizes[i].fHeight;
494 planes[1] = (uint8_t*)planes[0] + sizes[0];
495 planes[2] = (uint8_t*)planes[1] + sizes[1];
  /external/v8/test/mjsunit/
sparse-array-reverse.js 66 var sizes = [140, 40000, VERYLARGE]; variable
72 for (var size_pos = 0; size_pos < sizes.length; size_pos++) {
73 var size = sizes[size_pos];
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_utils.c 188 viddec_parser_memory_sizes_t sizes; local
200 pcontext->parser_ops->get_cxt_size(&sizes);
203 if (sizes.persist_size)
205 pcontext->persist_mem = g_try_malloc(sizes.persist_size);
  /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...]
CameraPictureSizesCacher.java 31 * Facilitates caching of camera supported picture sizes, which is slow
39 * Opportunistically update the picture sizes cache, if needed.
41 * @param cameraId cameraID we have sizes for.
42 * @param sizes List of valid sizes.
44 public static void updateSizesForCamera(Context context, int cameraId, List<Size> sizes) {
53 editor.putString(key_sizes, Size.listToString(sizes));
59 * Return list of Sizes for provided cameraId. Check first to see if we
62 * before calling or null will be returned if sizes were not previously
65 * @param cameraId cameraID we would like sizes for
88 List<Size> sizes = Size.buildListFromCameraSizes(thisCamera.getParameters() local
    [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/freetype/src/cache/
ftcmanag.h 105 FTC_MruListRec sizes; member in struct:FTC_ManagerRec_
  /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/llvm/unittests/DebugInfo/DWARF/
DWARFFormValueTest.cpp 25 ArrayRef<uint8_t> sizes = DWARFFormValue::getFixedFormSizes(4, 2); local
26 EXPECT_EQ(sizes[DW_FORM_addr], sizes[DW_FORM_ref_addr]);
27 sizes = DWARFFormValue::getFixedFormSizes(8, 2);
28 EXPECT_EQ(sizes[DW_FORM_addr], sizes[DW_FORM_ref_addr]);
29 sizes = DWARFFormValue::getFixedFormSizes(8, 3);
30 EXPECT_EQ(4, sizes[DW_FORM_ref_addr]);
31 // Check that we don't have fixed form sizes for weird address sizes
    [all...]
  /external/webrtc/src/system_wrappers/source/
data_log_unittest.cc 135 WebRtc_UWord32 sizes[5] = {1400, 1500, 1600, 1700, 1800}; local
141 DataLog::InsertCell(DataLog::Combine("table", 1), "size", sizes, 5);

Completed in 2038 milliseconds

12 3 4 5 6 7 8 910