HomeSort by relevance Sort by last modified time
    Searched defs:endptr (Results 151 - 161 of 161) sorted by null

1 2 3 4 5 67

  /external/opencv/cxcore/src/
cxpersistence.cpp 776 icvProcessSpecialDouble( CvFileStorage* fs, char* buf, double* value, char** endptr )
801 *endptr = buf + 4;
807 static double icv_strtod( CvFileStorage* fs, char* ptr, char** endptr )
809 double fval = strtod( ptr, endptr );
810 if( **endptr == '.' )
812 char* dot_pos = *endptr;
814 double fval2 = strtod( ptr, endptr );
816 if( *endptr > dot_pos )
819 *endptr = dot_pos;
822 if( *endptr == ptr || isalpha(**endptr)
897 char *endptr = ptr - 1, *saveptr; local
936 char* endptr = 0; local
1799 char* endptr; local
2040 char* endptr; local
2990 char* endptr = 0; local
4298 char* endptr = 0; local
4652 char* endptr = 0; local
    [all...]
  /external/python/cpython2/Modules/
cPickle.c 3395 char *endptr, *s; local
3593 char *endptr, *s; local
    [all...]
  /external/toybox/toys/pending/
dhcpd.c 500 char *endptr = NULL; local
509 long ret_val = strtol(str, &endptr, base);
511 else if (endptr && (*endptr!='\0'||endptr == str))
    [all...]
  /external/libevent/
evdns.c 3348 char *endptr; local
3359 char *endptr; local
    [all...]
  /external/pcre/dist2/src/
pcre2test.c 3242 char *endptr; local
4622 char *endptr; local
5637 char *endptr; local
    [all...]
  /external/python/cpython3/Modules/
_pickle.c 4601 char *endptr, *s; local
4824 char *endptr, *s; local
    [all...]
  /external/valgrind/memcheck/
mc_main.c 6465 HChar *endptr; local
6662 const HChar* endptr; local
    [all...]
  /frameworks/av/services/audioflinger/
Threads.cpp 213 char *endptr; local
214 unsigned long ul = strtoul(value, &endptr, 0);
215 if (*endptr == '\0' && kFastTrackMultiplierMin <= ul && ul <= kFastTrackMultiplierMax) {
2808 char *endptr; local
8831 char *endptr; local
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 6015 char *endptr; local
    [all...]
  /external/python/cpython3/Objects/
unicodeobject.c 2258 void *startptr, *endptr; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h 9362 char * endptr = (char *)vptr + Size; local
    [all...]

Completed in 1116 milliseconds

1 2 3 4 5 67