/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/clang/test/SemaCXX/ |
D | warn-memset-bad-sizeof.cpp | 73 char *cptr; in f() local 74 memcpy(&cptr, buffer, sizeof(cptr)); in f() 75 memcpy((char*)&cptr, buffer, sizeof(cptr)); in f()
|
D | overloaded-operator.cpp | 132 void test_smartptr(SmartPtr ptr, const SmartPtr cptr, in test_smartptr() argument 135 long &lr = *cptr; in test_smartptr()
|
/external/llvm/test/CodeGen/Generic/ |
D | 2003-07-29-BadConstSbyte.ll | 29 %cptr = getelementptr [6 x i8]* @yy_ec, i64 0, i64 %i ; <i8*> [#uses=1] 30 %c = load i8* %cptr ; <i8> [#uses=1]
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | V8DOMWrapper.h | 69 static void setDOMWrapper(v8::Handle<v8::Object> object, WrapperTypeInfo* type, void* cptr) in setDOMWrapper() argument 72 object->SetPointerInInternalField(v8DOMWrapperObjectIndex, cptr); in setDOMWrapper()
|
/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 | 9252 xmlChar *cptr; in xmlXPathTranslateFunction() local 9266 for (cptr = str->stringval; (ch=*cptr); ) { in xmlXPathTranslateFunction() 9267 offset = xmlUTF8Strloc(from->stringval, cptr); in xmlXPathTranslateFunction() 9275 xmlBufferAdd(target, cptr, xmlUTF8Strsize(cptr, 1)); in xmlXPathTranslateFunction() 9278 cptr++; in xmlXPathTranslateFunction() 9288 if ( (*cptr++ & 0xc0) != 0x80 ) { in xmlXPathTranslateFunction() 15008 xmlChar *cptr; in xmlXPathEscapeUriFunction() local 15024 for (cptr = str->stringval; *cptr; cptr++) { in xmlXPathEscapeUriFunction() 15025 if ((*cptr >= 'A' && *cptr <= 'Z') || in xmlXPathEscapeUriFunction() 15026 (*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 | 2256 xmlChar *cptr = cval; in xmlSchemaValAtomicType() local 2300 *cptr++ = *cur++; in xmlSchemaValAtomicType() 2307 *cptr++ = *cur++; in xmlSchemaValAtomicType() 2339 while ((len != integ) && (*(cptr-1) == '0')) { in xmlSchemaValAtomicType() 2340 cptr--; in xmlSchemaValAtomicType() 2348 *cptr = 0; in xmlSchemaValAtomicType() 2349 cptr = cval; in xmlSchemaValAtomicType() 2351 xmlSchemaParseUInt((const xmlChar **)&cptr, in xmlSchemaValAtomicType()
|
D | xmlIO.c | 2473 char *cptr, buff4[4]; in __xmlParserInputBufferCreateFilename() local 2474 cptr = (char *) ((z_stream *)context)->next_in; in __xmlParserInputBufferCreateFilename() 2476 if (strncmp(buff4, cptr, 4) == 0) in __xmlParserInputBufferCreateFilename()
|
/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()
|
/external/pcre/ |
D | pcre_compile.c | 2423 get_othercase_range(unsigned int *cptr, unsigned int d, unsigned int *ocptr, in get_othercase_range() argument 2428 for (c = *cptr; c <= d; c++) in get_othercase_range() 2443 *cptr = c; in get_othercase_range()
|