HomeSort by relevance Sort by last modified time
    Searched refs:str_size (Results 1 - 18 of 18) sorted by null

  /external/stlport/test/unit/
find_test.cpp 122 size_t str_size = sizeof(str) / sizeof(char); local
124 char *d = find(pstr, pstr + str_size, 'd');
127 const char *e = find(cpstr, cpstr + str_size, 'e');
130 char *last = find(pstr, pstr + str_size, 'x');
131 CPPUNIT_ASSERT( last == pstr + str_size );
133 const char *clast = find(cpstr, cpstr + str_size, 'x');
134 CPPUNIT_ASSERT( clast == cpstr + str_size );
  /ndk/tests/device/test-gnustl-full/unit/
find_test.cpp 122 size_t str_size = sizeof(str) / sizeof(char); local
124 char *d = find(pstr, pstr + str_size, 'd');
127 const char *e = find(cpstr, cpstr + str_size, 'e');
130 char *last = find(pstr, pstr + str_size, 'x');
131 CPPUNIT_ASSERT( last == pstr + str_size );
133 const char *clast = find(cpstr, cpstr + str_size, 'x');
134 CPPUNIT_ASSERT( clast == cpstr + str_size );
  /ndk/tests/device/test-stlport/unit/
find_test.cpp 122 size_t str_size = sizeof(str) / sizeof(char); local
124 char *d = find(pstr, pstr + str_size, 'd');
127 const char *e = find(cpstr, cpstr + str_size, 'e');
130 char *last = find(pstr, pstr + str_size, 'x');
131 CPPUNIT_ASSERT( last == pstr + str_size );
133 const char *clast = find(cpstr, cpstr + str_size, 'x');
134 CPPUNIT_ASSERT( clast == cpstr + str_size );
  /external/stlport/src/
num_put.cpp 34 typedef string::size_type str_size; typedef
52 for ( str_size n = 0; ; ) { // Index of the current group
78 typedef string::size_type str_size; typedef
97 for ( str_size n = 0; ; ) { // Index of the current group
  /ndk/sources/cxx-stl/stlport/src/
num_put.cpp 34 typedef string::size_type str_size; typedef
52 for ( str_size n = 0; ; ) { // Index of the current group
78 typedef string::size_type str_size; typedef
97 for ( str_size n = 0; ; ) { // Index of the current group
  /external/libcxx/include/support/ibm/
xlocale.h 306 int str_size; local
311 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL)
317 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
319 return str_size;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
xlocale.h 306 int str_size; local
311 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL)
317 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
319 return str_size;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
xlocale.h 306 int str_size; local
311 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL)
317 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
319 return str_size;
  /external/ltrace/
glob.c 80 append(char **bufp, const char *str, size_t str_size,
83 if (str_size == 0)
84 str_size = strlen(str);
85 size_t nsize = *sizep + str_size;
95 memcpy(*bufp + *sizep, str, str_size);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/detail/
implementation_help.hpp 79 inline std::size_t str_size( const Char* const& s ) function in namespace:boost::range_detail
  /external/chromium_org/chrome/installer/mini_installer/
mini_string.cc 26 bool HexEncode(const void* bytes, size_t size, wchar_t* str, size_t str_size) {
27 if (str_size <= (size * 2))
mini_string.h 24 bool HexEncode(const void* bytes, size_t size, wchar_t* str, size_t str_size);
  /external/qemu/android/camera/
camera-service.c 168 * str_size - Contains byte size of the buffer addressed by 'str' parameter.
173 _camera_info_to_string(const CameraInfo* ci, char** str, size_t* str_size) {
180 res = _append_string(str, str_size, tmp);
186 res = _append_string(str, str_size, tmp);
192 res = _append_string(str, str_size, tmp);
198 res = _append_string(str, str_size, tmp);
205 res = _append_string(str, str_size, tmp);
212 res = _append_string(str, str_size, tmp);
219 return _append_string(str, str_size, "\n");
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Parm.cpp 2775 int str_size = strlen(str); local
    [all...]
  /device/lge/mako/camera/
QCameraHWI_Parm.cpp 2919 int str_size = strlen(str); local
    [all...]
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Parm.cpp 2837 int str_size = strlen(str); local
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndldic.c 91 #define USE_QUE_NUM(que_size, str_size) \
92 ( (((str_size) % ((que_size) - 1)) == 0) \
93 ? ((str_size) / ((que_size) - 1)) \
94 : ((str_size) / ((que_size) - 1) + 1) )
    [all...]
  /external/valgrind/main/VEX/priv/
host_ppc_defs.c 1908 const HChar* str_size; local
    [all...]

Completed in 364 milliseconds