Searched refs:dstptr (Results 1 – 6 of 6) sorted by relevance
/external/libcups/cups/ |
D | snmp.c | 260 char *dstptr, /* Pointer into string buffer */ in _cupsSNMPOIDToString() local 278 for (dstptr = dst, dstend = dstptr + dstsize - 1; in _cupsSNMPOIDToString() 279 *src >= 0 && dstptr < dstend; in _cupsSNMPOIDToString() 280 src ++, dstptr += strlen(dstptr)) in _cupsSNMPOIDToString() 281 snprintf(dstptr, (size_t)(dstend - dstptr + 1), ".%d", *src); in _cupsSNMPOIDToString() 482 int *dstptr, /* Pointer into OID array */ in _cupsSNMPStringToOID() local 507 for (dstend = dst + dstsize - 1, dstptr = dst, *dstptr = 0; in _cupsSNMPStringToOID() 508 *src && dstptr < dstend; in _cupsSNMPStringToOID() 513 dstptr ++; in _cupsSNMPStringToOID() 514 *dstptr = 0; in _cupsSNMPStringToOID() [all …]
|
/external/mesa3d/src/mesa/vbo/ |
D | vbo_split_copy.c | 89 GLubyte *dstptr; /**< dstptr == dstbuf + dstelt_max * vertsize */ member 215 copy->dstptr = copy->dstbuf; in flush() 252 GLubyte *csr = copy->dstptr; in elt() 285 copy->dstptr += copy->vertex_size; in elt() 287 assert(csr == copy->dstptr); in elt() 288 assert(copy->dstptr == (copy->dstbuf + in elt() 507 copy->dstptr = copy->dstbuf; in replay_init()
|
/external/swiftshader/third_party/LLVM/test/Analysis/ScalarEvolution/ |
D | 2008-07-12-UnneededSelect1.ll | 6 define void @foo(i32 %count, i32* %srcptr, i32* %dstptr) nounwind { 23 store i32 %7, i32* %dstptr, align 4
|
/external/llvm/test/Analysis/ScalarEvolution/ |
D | 2008-07-12-UnneededSelect1.ll | 9 define void @foo(i32 %count, i32* %srcptr, i32* %dstptr) nounwind { 26 store i32 %7, i32* %dstptr, align 4
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ScalarEvolution/ |
D | 2008-07-12-UnneededSelect1.ll | 9 define void @foo(i32 %count, i32* %srcptr, i32* %dstptr) nounwind { 26 store i32 %7, i32* %dstptr, align 4
|
/external/libjpeg-turbo/ |
D | turbojpeg.c | 2057 unsigned char *dstptr; in tjLoadImage() local 2061 if (invert) dstptr = &dstBuf[((*height) - row - 1) * pitch]; in tjLoadImage() 2062 else dstptr = &dstBuf[row * pitch]; in tjLoadImage() 2063 memcpy(dstptr, src->buffer[i], (*width) * tjPixelSize[*pixelFormat]); in tjLoadImage()
|