Searched refs:cptr (Results 1 – 9 of 9) sorted by relevance
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/ |
D | SDL_sysmouse.cc | 49 char *cptr; in BE_CreateWMCursor() local 75 cptr = &cursor->bits[4]; in BE_CreateWMCursor() 81 SDL_memcpy(cptr, data, run); in BE_CreateWMCursor() 82 SDL_memset(cptr+run, 0, pad); in BE_CreateWMCursor() 84 cptr += (run+pad); in BE_CreateWMCursor() 87 SDL_memset(cptr, 0, run+pad); in BE_CreateWMCursor() 88 cptr += (run+pad); in BE_CreateWMCursor() 95 SDL_memcpy(cptr, mask, run); in BE_CreateWMCursor() 96 SDL_memset(cptr+run, 0, pad); in BE_CreateWMCursor() 98 cptr += (run+pad); in BE_CreateWMCursor() [all …]
|
/external/jpeg/ |
D | jquant2.c | 787 JSAMPLE * cptr; /* pointer into bestcolor[] array */ in find_best_colors() local 826 cptr = bestcolor; in find_best_colors() 837 *cptr = (JSAMPLE) icolor; in find_best_colors() 842 cptr++; in find_best_colors() 864 register JSAMPLE * cptr; /* pointer into bestcolor[] array */ in fill_inverse_cmap() local 898 cptr = bestcolor; in fill_inverse_cmap() 903 *cachep++ = (histcell) (GETJSAMPLE(*cptr++) + 1); in fill_inverse_cmap()
|
/external/libxml2/ |
D | xpath.c | 9228 xmlChar *cptr; in xmlXPathTranslateFunction() local 9242 for (cptr = str->stringval; (ch=*cptr); ) { in xmlXPathTranslateFunction() 9243 offset = xmlUTF8Strloc(from->stringval, cptr); in xmlXPathTranslateFunction() 9251 xmlBufferAdd(target, cptr, xmlUTF8Strsize(cptr, 1)); in xmlXPathTranslateFunction() 9254 cptr++; in xmlXPathTranslateFunction() 9264 if ( (*cptr++ & 0xc0) != 0x80 ) { in xmlXPathTranslateFunction() 14978 xmlChar *cptr; in xmlXPathEscapeUriFunction() local 14994 for (cptr = str->stringval; *cptr; cptr++) { in xmlXPathEscapeUriFunction() 14995 if ((*cptr >= 'A' && *cptr <= 'Z') || in xmlXPathEscapeUriFunction() 14996 (*cptr >= 'a' && *cptr <= 'z') || in xmlXPathEscapeUriFunction() [all …]
|
D | nanoftp.c | 340 char *cptr; in xmlNanoFTPScanURL() local 341 if ((cptr=strchr(uri->user, ':')) == NULL) in xmlNanoFTPScanURL() 345 (cptr - uri->user)); in xmlNanoFTPScanURL() 346 ctxt->passwd = xmlMemStrdup(cptr+1); in xmlNanoFTPScanURL()
|
D | xmlschemastypes.c | 2253 xmlChar *cptr = cval; in xmlSchemaValAtomicType() local 2297 *cptr++ = *cur++; in xmlSchemaValAtomicType() 2304 *cptr++ = *cur++; in xmlSchemaValAtomicType() 2336 while ((len != integ) && (*(cptr-1) == '0')) { in xmlSchemaValAtomicType() 2337 cptr--; in xmlSchemaValAtomicType() 2345 *cptr = 0; in xmlSchemaValAtomicType() 2346 cptr = cval; in xmlSchemaValAtomicType() 2348 xmlSchemaParseUInt((const xmlChar **)&cptr, in xmlSchemaValAtomicType()
|
D | xmlIO.c | 2409 char *cptr, buff4[4]; in __xmlParserInputBufferCreateFilename() local 2410 cptr = (char *) ((z_stream *)context)->next_in; in __xmlParserInputBufferCreateFilename() 2412 if (strncmp(buff4, cptr, 4) == 0) in __xmlParserInputBufferCreateFilename()
|
/external/webkit/JavaScriptCore/pcre/ |
D | pcre_compile.cpp | 487 static bool getOthercaseRange(int* cptr, int d, int* ocptr, int* odptr) in getOthercaseRange() argument 491 for (c = *cptr; c <= d; c++) { in getOthercaseRange() 509 *cptr = c; in getOthercaseRange()
|
/external/libffi/src/ |
D | dlmalloc.c | 1332 char* cptr = ptr; in win32munmap() local 1334 if (VirtualQuery(cptr, &minfo, sizeof(minfo)) == 0) in win32munmap() 1336 if (minfo.BaseAddress != cptr || minfo.AllocationBase != cptr || in win32munmap() 1339 if (VirtualFree(cptr, 0, MEM_RELEASE) == 0) in win32munmap() 1341 cptr += minfo.RegionSize; in win32munmap()
|
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
D | SDL_malloc.c | 1378 char* cptr = ptr; in win32munmap() local 1380 if (VirtualQuery(cptr, &minfo, sizeof(minfo)) == 0) in win32munmap() 1382 if (minfo.BaseAddress != cptr || minfo.AllocationBase != cptr || in win32munmap() 1385 if (VirtualFree(cptr, 0, MEM_RELEASE) == 0) in win32munmap() 1387 cptr += minfo.RegionSize; in win32munmap()
|