Home
last modified time | relevance | path

Searched refs:cpy (Results 1 – 8 of 8) sorted by relevance

/external/libpcap/
Dnametoaddr.c228 char *off, *cpy; in pcap_nametoportrange() local
232 if ((cpy = strdup(name)) == NULL) in pcap_nametoportrange()
235 if ((off = strchr(cpy, '-')) == NULL) { in pcap_nametoportrange()
236 free(cpy); in pcap_nametoportrange()
242 if (pcap_nametoport(cpy, port1, proto) == 0) { in pcap_nametoportrange()
243 free(cpy); in pcap_nametoportrange()
249 free(cpy); in pcap_nametoportrange()
/external/openssl/crypto/engine/
Deng_dyn.c435 ENGINE cpy; in dynamic_load() local
493 memcpy(&cpy, e, sizeof(ENGINE)); in dynamic_load()
523 memcpy(e, &cpy, sizeof(ENGINE)); in dynamic_load()
/external/webkit/WebCore/platform/graphics/win/
DFontCGWin.cpp89 CGFloat cpy; in createPathForGlyph() local
93 cpy = toCGFloat(segment->apfx[i + 1].y); in createPathForGlyph()
97cpy = (toCGFloat(segment->apfx[i].y) + toCGFloat(segment->apfx[i + 1].y)) / 2; in createPathForGlyph()
100 CGPathAddQuadCurveToPoint(path, 0, x, y, cpx, cpy); in createPathForGlyph()
/external/webkit/WebCore/html/canvas/
DCanvasRenderingContext2D.h130 void quadraticCurveTo(float cpx, float cpy, float x, float y);
DCanvasRenderingContext2D.idl69 void quadraticCurveTo(in float cpx, in float cpy, in float x, in float y);
DCanvasRenderingContext2D.cpp555 void CanvasRenderingContext2D::quadraticCurveTo(float cpx, float cpy, float x, float y) in quadraticCurveTo() argument
557 if (!isfinite(cpx) | !isfinite(cpy) | !isfinite(x) | !isfinite(y)) in quadraticCurveTo()
564 m_path.addQuadCurveTo(FloatPoint(cpx, cpy), FloatPoint(x, y)); in quadraticCurveTo()
/external/bluetooth/bluez/lib/
Dsdp.c1618 sdp_record_t *cpy; in sdp_copy_record() local
1620 cpy = sdp_record_alloc(); in sdp_copy_record()
1622 cpy->handle = rec->handle; in sdp_copy_record()
1624 sdp_list_foreach(rec->pattern, sdp_copy_pattern, cpy); in sdp_copy_record()
1625 sdp_list_foreach(rec->attrlist, sdp_copy_attrlist, cpy); in sdp_copy_record()
1627 cpy->svclass = rec->svclass; in sdp_copy_record()
1629 return cpy; in sdp_copy_record()
/external/libxml2/
Dtree.c1039 #define DICT_COPY(str, cpy) \ argument
1043 cpy = (xmlChar *) (str); \
1045 cpy = (xmlChar *) xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1047 cpy = xmlStrdup((const xmlChar *)(str)); }
1056 #define DICT_CONST_COPY(str, cpy) \ argument
1060 cpy = (const xmlChar *) (str); \
1062 cpy = xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1064 cpy = (const xmlChar *) xmlStrdup((const xmlChar *)(str)); }