HomeSort by relevance Sort by last modified time
    Searched full:size (Results 51 - 75 of 56221) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/lzma/C/
Alloc.h 13 void *MyAlloc(size_t size);
20 void *MidAlloc(size_t size);
22 void *BigAlloc(size_t size);
27 #define MidAlloc(size) MyAlloc(size)
29 #define BigAlloc(size) MyAlloc(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...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/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...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/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...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/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...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/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...]