HomeSort by relevance Sort by last modified time
    Searched defs:valuep (Results 1 - 2 of 2) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_string.c 33 static size_t SDL_ScanLong(const char *text, int radix, long *valuep)
61 if ( valuep ) {
63 *valuep = -value;
65 *valuep = value;
73 static size_t SDL_ScanUnsignedLong(const char *text, int radix, unsigned long *valuep)
96 if ( valuep ) {
97 *valuep = value;
104 static size_t SDL_ScanUintPtrT(const char *text, int radix, uintptr_t *valuep)
127 if ( valuep ) {
128 *valuep = value
782 char *valuep = va_arg(ap, char*); local
838 Sint64 *valuep = va_arg(ap, Sint64*); local
851 { short* valuep = va_arg(ap, short*); local
856 { int* valuep = va_arg(ap, int*); local
861 { long* valuep = va_arg(ap, long*); local
891 Uint64 *valuep = va_arg(ap, Uint64*); local
904 { short* valuep = va_arg(ap, short*); local
909 { int* valuep = va_arg(ap, int*); local
914 { long* valuep = va_arg(ap, long*); local
932 void** valuep = va_arg(ap, void**); local
944 float* valuep = va_arg(ap, float*); local
962 char *valuep = va_arg(ap, char*); local
    [all...]
  /external/libxml2/
xmlregexp.c 187 void *valuep; member in struct:_xmlRegAtom
498 value = ret->atoms[i]->valuep;
809 if ((atom->type == XML_REGEXP_STRING) && (atom->valuep != NULL))
810 xmlFree(atom->valuep);
813 if ((atom->type == XML_REGEXP_BLOCK_NAME) && (atom->valuep != NULL))
814 xmlFree(atom->valuep);
1088 fprintf(output, "'%s' ", (char *) atom->valuep);
    [all...]

Completed in 94 milliseconds