HomeSort by relevance Sort by last modified time
    Searched refs:sizes (Results 251 - 275 of 325) sorted by null

<<111213

  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/media/
msm_camera.h 16 #include <asm/sizes.h>
  /system/media/camera/docs/
html.mako 27 /* table column sizes */
37 /* hide the first thead, we need it there only to enforce column sizes */
  /external/qemu/
qemu-io.c 130 size_t *sizes = calloc(nr_iov, sizeof(size_t)); local
158 sizes[i] = len;
167 qemu_iovec_add(qiov, p, sizes[i]);
168 p += sizes[i];
172 free(sizes);
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 1363 int[] sizes = new int[N]; local
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 1286 int[] sizes = new int[N]; local
    [all...]
  /external/skia/legacy/src/ports/
SkFontHost_mac_atsui.cpp 154 static const ByteCount sizes[] = { local
161 tags, sizes, values);
  /external/skia/src/ports/
SkFontHost_mac_atsui.cpp 154 static const ByteCount sizes[] = { local
161 tags, sizes, values);
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 335 private static List<String> sizeListToStringList(List<Size> sizes) {
337 for (Size size : sizes) {
  /packages/apps/Gallery2/src/com/android/camera/
CameraSettings.java 341 private static List<String> sizeListToStringList(List<Size> sizes) {
343 for (Size size : sizes) {
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraSettings.java 279 private static List<String> sizeListToStringList(List<Size> sizes) {
281 for (Size size : sizes) {
  /external/chromium/net/tools/dump_cache/
dump_files.cc 71 printf("size %d: 0x%x\n", i, header.lru.sizes[i]);
  /external/opencv/cxcore/src/
cxpersistence.cpp 3631 int dims, sizes[CV_MAX_DIM]; local
3668 int sizes[CV_MAX_DIM], dims, elem_type; local
3828 int* sizes = 0, dims, elem_type, cn; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java 628 Map<INode, Rect> sizes = mRulesEngine.measureChildren(parent, local
646 if (sizes != null) {
647 state.wrapBounds = sizes.get(child);
    [all...]
LinearLayoutRule.java 597 // sizes, if used.
793 // Clear out layout weights; we need to measure the unweighted sizes
    [all...]
  /external/opencv/cxcore/include/
cxcore.h 236 CVAPI(CvMatND*) cvCreateMatNDHeader( int dims, const int* sizes, int type );
239 CVAPI(CvMatND*) cvCreateMatND( int dims, const int* sizes, int type );
242 CVAPI(CvMatND*) cvInitMatNDHeader( CvMatND* mat, int dims, const int* sizes,
255 CVAPI(CvSparseMat*) cvCreateSparseMat( int dims, const int* sizes, int type );
326 optionally sizes of the dimensions */
327 CVAPI(int) cvGetDims( const CvArr* arr, int* sizes CV_DEFAULT(NULL) );
395 new_dims == 0 means that number and sizes of dimensions remain the same
397 if new_dims == 1, there is no need to specify new dimension sizes
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelTest.java 1875 int[] sizes = { local
    [all...]
  /bionic/libc/upstream-dlmalloc/
malloc.c 48 Minimum overhead per allocated chunk: 4 or 8 bytes (if 4byte sizes)
49 8 or 16 bytes (if 8byte sizes)
    [all...]
  /external/ceres-solver/docs/
modeling.tex 27 The signature of the function (number and sizes of input parameter blocks and number of outputs)
171 where \texttt{MyCostFunction} has 1 residual and 2 parameter blocks with sizes 4 and 8
416 For example a problem containing 3 parameter blocks of sizes 3, 4 and 5
433 function carries with it information about the sizes of the
435 the sizes of the parameter blocks listed in \texttt{parameter\_blocks}. The
introduction.tex 8 Ceres has been used for solving a variety of problems in computer vision and machine learning at Google with sizes that range from a tens of variables and objective functions with a few hundred terms to problems with millions of variables and objective functions with tens of millions of terms.
  /external/eigen/unsupported/test/mpreal/
dlmalloc.c 49 Minimum overhead per allocated chunk: 4 or 8 bytes (if 4byte sizes)
50 8 or 16 bytes (if 8byte sizes)
    [all...]
  /external/libffi/src/
dlmalloc.c 49 Minimum overhead per allocated chunk: 4 or 8 bytes (if 4byte sizes)
50 8 or 16 bytes (if 8byte sizes)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_malloc.c 85 Minimum overhead per allocated chunk: 4 or 8 bytes (if 4byte sizes)
86 8 or 16 bytes (if 8byte sizes)
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/javassist/src/main/javassist/
CtField.java 786 * @param sizes an <code>int</code> array of the size in every
791 public static Initializer byNewArray(CtClass type, int[] sizes) {
792 return new MultiArrayInitializer(type, sizes);
    [all...]
  /external/libvorbis/doc/
01-introduction.tex 343 Vorbis frames may be one of two PCM sample sizes specified during
344 codec setup. In Vorbis I, legal frame sizes are powers of two from 64
346 independent vectors and these frame sizes are in samples per channel.
372 knowing the sizes of the current, previous and next window. It is

Completed in 1469 milliseconds

<<111213