HomeSort by relevance Sort by last modified time
    Searched full:size (Results 1 - 25 of 36904) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
Tutorial_AdvancedInitialization_ThreeWays.cpp 1 const int size = 6; variable
2 MatrixXd mat1(size, size);
3 mat1.topLeftCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2);
4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2)
    [all...]
  /external/e2fsprogs/tests/f_zero_inode_size/
name 1 superblock with a zero inode size
  /external/llvm/tools/llvm-size/
CMakeLists.txt 3 add_llvm_tool(llvm-size
4 llvm-size.cpp
  /external/kernel-headers/original/asm-generic/bitops/
find.h 5 size, unsigned long offset);
8 long size, unsigned long offset);
10 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0)
11 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
  /external/eigen/bench/btl/data/
action_settings.txt 1 aat ; "{/*1.5 A x A^T}" ; "matrix size" ; 4:3000
2 ata ; "{/*1.5 A^T x A}" ; "matrix size" ; 4:3000
3 atv ; "{/*1.5 matrix^T x vector}" ; "matrix size" ; 4:3000
4 axpby ; "{/*1.5 Y = alpha X + beta Y}" ; "vector size" ; 5:1000000
5 axpy ; "{/*1.5 Y += alpha X}" ; "vector size" ; 5:1000000
6 matrix_matrix ; "{/*1.5 matrix matrix product}" ; "matrix size" ; 4:3000
7 matrix_vector ; "{/*1.5 matrix vector product}" ; "matrix size" ; 4:3000
8 trmm ; "{/*1.5 triangular matrix matrix product}" ; "matrix size" ; 4:3000
9 trisolve_vector ; "{/*1.5 triangular solver - vector (X = inv(L) X)}" ; "size" ; 4:3000
10 trisolve_matrix ; "{/*1.5 triangular solver - matrix (M = inv(L) M)}" ; "size" ; 4:300
    [all...]
  /external/llvm/test/MC/AsmParser/
rename.s 3 .size bar, . - bar
5 .size foo, .Ltmp01 - foo
7 .size qux, .Ltmp0 - qux
10 // CHECK: .size bar, .Ltmp0-bar
12 // CHECK: .size foo, .Ltmp01-foo
14 // CHECK: .size qux, .Ltmp02-qux
  /external/clang/test/Sema/
warn-strlcpycat-size.c 1 // RUN: %clang_cc1 -Wstrlcpy-strlcat-size -verify -fsyntax-only %s
4 size_t strlcpy (char * restrict dst, const char * restrict src, size_t size);
5 size_t strlcat (char * restrict dst, const char * restrict src, size_t size);
22 strlcpy(s1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
23 strlcpy(s1, s3, strlen(s3)+1); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be t (…)
    [all...]
  /external/libselinux/src/
fgetfilecon.c 13 ssize_t size; local
16 size = INITCONTEXTLEN + 1;
17 buf = malloc(size);
20 memset(buf, 0, size);
22 ret = fgetxattr(fd, XATTR_NAME_SELINUX, buf, size - 1);
26 size = fgetxattr(fd, XATTR_NAME_SELINUX, NULL, 0);
27 if (size < 0)
30 size++;
31 newbuf = realloc(buf, size);
36 memset(buf, 0, size);
    [all...]
getfilecon.c 13 ssize_t size; local
16 size = INITCONTEXTLEN + 1;
17 buf = malloc(size);
20 memset(buf, 0, size);
22 ret = getxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
26 size = getxattr(path, XATTR_NAME_SELINUX, NULL, 0);
27 if (size < 0)
30 size++;
31 newbuf = realloc(buf, size);
36 memset(buf, 0, size);
    [all...]
lgetfilecon.c 13 ssize_t size; local
16 size = INITCONTEXTLEN + 1;
17 buf = malloc(size);
20 memset(buf, 0, size);
22 ret = lgetxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
26 size = lgetxattr(path, XATTR_NAME_SELINUX, NULL, 0);
27 if (size < 0)
30 size++;
31 newbuf = realloc(buf, size);
36 memset(buf, 0, size);
    [all...]
  /external/elfutils/libasm/
asm_adduint8.c 33 #ifndef SIZE
34 # define SIZE 8
37 #define UFCT(size) _UFCT(size)
38 #define _UFCT(size) asm_adduint##size
39 #define FCT(size) _FCT(size)
40 #define _FCT(size) asm_addint##size
    [all...]
  /external/valgrind/main/memcheck/tests/
sbfragment.stdout.exp 1 after 3000 loops, last size block requested 96032008
  /external/webkit/Source/WebKit/chromium/tests/data/
zero_sized_iframe.html 3 This is an iframe with zero size.
  /external/webkit/Tools/QueueStatusServer/stylesheets/
main.css 7 font-size: larger;
11 font-size: small;
19 font-size: small;
24 font-size: small;
  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
alloca.h 9 pointer alloca(unsigned size);
  /external/eigen/Eigen/src/Eigen2Support/
VectorBlock.h 19 MatrixBase<Derived>::start(Index size)
22 return VectorBlock<Derived>(derived(), 0, size);
28 MatrixBase<Derived>::start(Index size) const
31 return VectorBlock<const Derived>(derived(), 0, size);
37 MatrixBase<Derived>::end(Index size)
40 return VectorBlock<Derived>(derived(), this->size() - size, size);
46 MatrixBase<Derived>::end(Index size) const
49 return VectorBlock<const Derived>(derived(), this->size() - size, size)
    [all...]
  /external/skia/src/ports/
SkMemory_mozalloc.cpp 25 void* sk_malloc_throw(size_t size) {
26 return sk_malloc_flags(size, SK_MALLOC_THROW);
29 void* sk_realloc_throw(void* addr, size_t size) {
30 return moz_xrealloc(addr, size);
37 void* sk_malloc_flags(size_t size, unsigned flags) {
38 return (flags & SK_MALLOC_THROW) ? moz_xmalloc(size) : moz_malloc(size);
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh-alloca-1.cpp 14 bar (char *p, int size)
16 __builtin_strncpy (p, "good", size);
29 foo (int size) throw (B,A)
31 char *p = (char*) __builtin_alloca (size + 1);
34 bar (p, size);
35 if (__builtin_strncmp (p, "good", size) != 0)
38 p[size] = '\0';
eh-inline-2.cpp 14 bar (char *p, int size)
16 __builtin_strncpy (p, "good", size);
30 foo (int size) throw (B,A)
32 char *p = (char *) __builtin_alloca (size + 1);
35 bar (p, size);
36 if (__builtin_strncmp (p, "good", size) != 0)
39 p[size] = '\0';
  /ndk/tests/device/test-stlport_static-exception/jni/
eh-alloca-1.cpp 14 bar (char *p, int size)
16 __builtin_strncpy (p, "good", size);
29 foo (int size) throw (B,A)
31 char *p = (char*) __builtin_alloca (size + 1);
34 bar (p, size);
35 if (__builtin_strncmp (p, "good", size) != 0)
38 p[size] = '\0';
eh-inline-2.cpp 14 bar (char *p, int size)
16 __builtin_strncpy (p, "good", size);
30 foo (int size) throw (B,A)
32 char *p = (char *) __builtin_alloca (size + 1);
35 bar (p, size);
36 if (__builtin_strncmp (p, "good", size) != 0)
39 p[size] = '\0';
  /development/ndk/platforms/android-3/include/linux/
circ_buf.h 21 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
23 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;}
    [all...]
  /external/stlport/test/unit/
lexcmp_test.cpp 33 const unsigned size = 6; local
34 char n1[size] = "shoe";
35 char n2[size] = "shine";
37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size);
42 const unsigned size = 6; local
43 char n1[size] = "shoe";
44 char n2[size] = "shine";
46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greater<char>())
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
lexcmp_test.cpp 33 const unsigned size = 6; local
34 char n1[size] = "shoe";
35 char n2[size] = "shine";
37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size);
42 const unsigned size = 6; local
43 char n1[size] = "shoe";
44 char n2[size] = "shine";
46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greater<char>())
    [all...]
  /ndk/tests/device/test-stlport/unit/
lexcmp_test.cpp 33 const unsigned size = 6; local
34 char n1[size] = "shoe";
35 char n2[size] = "shine";
37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size);
42 const unsigned size = 6; local
43 char n1[size] = "shoe";
44 char n2[size] = "shine";
46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greater<char>())
    [all...]

Completed in 2246 milliseconds

1 2 3 4 5 6 7 8 91011>>