Searched defs:cpy (Results 1 - 7 of 7) sorted by relevance

/external/collada/src/dae/
H A DdaeMetaElementAttribute.cpp41 daeElement *cpy = (*(daeElementRef*)(getWritableMemory(from)))->clone(); local
42 (*(daeElementRef*)(getWritableMemory(to))) = cpy;
/external/libpcap/
H A Dnametoaddr.c228 char *off, *cpy; local
232 if ((cpy = strdup(name)) == NULL)
235 if ((off = strchr(cpy, '-')) == NULL) {
236 free(cpy);
242 if (pcap_nametoport(cpy, port1, proto) == 0) {
243 free(cpy);
249 free(cpy);
/external/openssl/crypto/engine/
H A Deng_dyn.c435 ENGINE cpy; local
493 memcpy(&cpy, e, sizeof(ENGINE));
523 memcpy(e, &cpy, sizeof(ENGINE));
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontCGWin.cpp89 CGFloat cpy; local
93 cpy = toCGFloat(segment->apfx[i + 1].y);
97 cpy = (toCGFloat(segment->apfx[i].y) + toCGFloat(segment->apfx[i + 1].y)) / 2;
100 CGPathAddQuadCurveToPoint(path, 0, x, y, cpx, cpy);
/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp334 bool performCallSlotOptzn(Instruction *cpy, Value *cpyDst, Value *cpySrc,
560 bool MemCpyOpt::performCallSlotOptzn(Instruction *cpy, argument
648 } else if (UI != C && UI != cpy) {
691 MD->removeInstruction(cpy);
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp785 void CanvasRenderingContext2D::quadraticCurveTo(float cpx, float cpy, float x, float y) argument
787 if (!isfinite(cpx) | !isfinite(cpy) | !isfinite(x) | !isfinite(y))
792 m_path.moveTo(FloatPoint(cpx, cpy));
796 m_path.addQuadCurveTo(FloatPoint(cpx, cpy), p1);
/external/bluetooth/bluez/lib/
H A Dsdp.c1588 sdp_record_t *cpy; local
1590 cpy = sdp_record_alloc();
1592 cpy->handle = rec->handle;
1594 sdp_list_foreach(rec->pattern, sdp_copy_pattern, cpy);
1595 sdp_list_foreach(rec->attrlist, sdp_copy_attrlist, cpy);
1597 cpy->svclass = rec->svclass;
1599 return cpy;

Completed in 495 milliseconds