HomeSort by relevance Sort by last modified time
    Searched refs:sizes (Results 1 - 25 of 1211) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
arrays.h 70 // TSmallArrayVector is used as the container for the set of sizes in TArraySizes.
77 // Almost all arrays could be handled by two sizes each fitting
79 // are more than 3 sizes or a size needing more than 16 bits.
83 TSmallArrayVector() : sizes(nullptr) { }
89 if (from.sizes == nullptr)
90 sizes = nullptr;
93 *sizes = *from.sizes;
101 if (sizes == nullptr)
103 return (int)sizes->size()
204 TVector<TArraySize>* sizes; \/\/ will either hold such a pointer, or in the future, hold the two array sizes member in struct:glslang::TSmallArrayVector
307 TSmallArrayVector sizes; member in struct:glslang::TArraySizes
    [all...]
  /external/ltp/testcases/kernel/syscalls/getrandom/
getrandom03.c 39 static unsigned int sizes[] = { variable
55 TEST(tst_syscall(__NR_getrandom, buf, sizes[n], 0));
57 if (TEST_RETURN != sizes[n]) {
59 TEST_RETURN, sizes[n]);
67 .tcnt = ARRAY_SIZE(sizes),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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 blur
    [all...]
  /external/python/cpython2/Lib/test/
test_imgfile.py 26 sizes = imgfile.getsizes(name)
37 sizes = imgfile.getsizes(name)
39 print 'Opening test image: %s, sizes: %s' % (name, str(sizes))
54 imgfile.write (outputfile, image, sizes[0], sizes[1], sizes[2])
58 print 'Opening scaled test image: %s, sizes: %s' % (name, str(sizes))
60 # is scaled to the given x and y sizes. If the filter and blu
    [all...]
  /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/mesa3d/src/mesa/drivers/dri/i965/
brw_ir_allocator.h 37 sizes(NULL), offsets(NULL), count(0), total_size(0), capacity(0)
44 free(sizes);
52 sizes = (unsigned *)realloc(sizes, capacity * sizeof(unsigned));
56 sizes[count] = size;
64 * Array of sizes for each allocation. The allocation unit is up to the
68 unsigned *sizes; member in class:brw::simple_allocator
  /external/skia/tests/
YUVTest.cpp 79 SkISize sizes[3]; local
81 sizes[0].set(128, 128);
82 sizes[1].set(64, 64);
83 sizes[2].set(64, 64);
84 codec_yuv(r, "color_wheel.jpg", sizes);
87 sizes[0].set(512, 512);
88 sizes[1].set(256, 256);
89 sizes[2].set(256, 256);
90 codec_yuv(r, "mandrill_512_q075.jpg", sizes);
93 sizes[1].set(512, 512)
    [all...]
  /external/skia/src/core/
SkVertices.cpp 23 struct SkVertices::Sizes {
24 Sizes(int vertexCount, int indexCount, bool hasTexs, bool hasColors) {
58 SkVertices::Sizes(vertexCount, indexCount, hasTexs, hasColors));
62 const SkVertices::Sizes& sizes) {
63 this->init(mode, vertexCount, indexCount, sizes);
67 const SkVertices::Sizes& sizes) {
68 if (!sizes.isValid()) {
72 void* storage = ::operator new (sizes.fTotal)
    [all...]
  /frameworks/ml/nn/common/operations/internal/
types.h 29 int sizes[N]; member in struct:android::nn::Dims
38 dims.sizes[i] = 1;
42 dims.sizes[0] = (int)getSizeOfDimension(shape, 0);
47 dims.sizes[i] = (int)getSizeOfDimension(shape, src);
54 dims.strides[i] = dims.strides[i-1] * dims.sizes[i-1];
60 DCHECK(i0 >= 0 && i0 < dims.sizes[0]);
61 DCHECK(i1 >= 0 && i1 < dims.sizes[1]);
62 DCHECK(i2 >= 0 && i2 < dims.sizes[2]);
63 DCHECK(i3 >= 0 && i3 < dims.sizes[3]);
72 return array.sizes[index]
    [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/eigen/bench/
dense_solvers.cpp 12 std::vector<Array2i> sizes; variable
104 sizes.push_back(Array2i(small,small));
105 sizes.push_back(Array2i(100,100));
106 sizes.push_back(Array2i(1000,1000));
107 sizes.push_back(Array2i(4000,4000));
108 sizes.push_back(Array2i(10000,small));
109 sizes.push_back(Array2i(10000,100));
110 sizes.push_back(Array2i(10000,1000));
111 sizes.push_back(Array2i(10000,4000));
115 for(int k=0; k<sizes.size(); ++k
    [all...]
  /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...]
  /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...]
  /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 47 // Sizes will be used to generate a mask big enough to cover a pointer.
48 CacheLineSizes sizes; local
49 uintptr_t dsize = sizes.dcache_line_size();
50 uintptr_t isize = sizes.icache_line_size();
51 // 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/skia/src/sksl/ast/
SkSLASTType.h 24 ASTType(Position position, String name, Kind kind, std::vector<int> sizes)
28 , fSizes(std::move(sizes)) {}
38 // array sizes, -1 meaning unspecified
  /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...]
  /external/strace/tests/
pkey_mprotect.c 61 static const kernel_ulong_t sizes[] = { local
94 for (j = 0; j < ARRAY_SIZE(sizes); j++) {
98 ptrs[i], sizes[j],
103 (unsigned long long) sizes[j],

Completed in 2049 milliseconds

1 2 3 4 5 6 7 8 91011>>