Home
last modified time | relevance | path

Searched refs:rc (Results 1 – 2 of 2) sorted by relevance

/lib/zlib_inflate/
Dinfutil.c14 int rc; in zlib_inflate_blob() local
16 rc = -ENOMEM; in zlib_inflate_blob()
32 rc = zlib_inflateInit2(strm, -MAX_WBITS); in zlib_inflate_blob()
33 if (rc == Z_OK) { in zlib_inflate_blob()
34 rc = zlib_inflate(strm, Z_FINISH); in zlib_inflate_blob()
36 if (rc == Z_STREAM_END) in zlib_inflate_blob()
37 rc = sz - strm->avail_out; in zlib_inflate_blob()
39 rc = -EINVAL; in zlib_inflate_blob()
42 rc = -EINVAL; in zlib_inflate_blob()
48 return rc; /* returns Z_OK (0) if successful */ in zlib_inflate_blob()
/lib/
Ddevres.c258 int i, rc; in pcim_iomap_regions() local
270 rc = -EINVAL; in pcim_iomap_regions()
275 rc = pci_request_region(pdev, i, name); in pcim_iomap_regions()
276 if (rc) in pcim_iomap_regions()
279 rc = -ENOMEM; in pcim_iomap_regions()
296 return rc; in pcim_iomap_regions()
312 int rc; in pcim_iomap_regions_request_all() local
314 rc = pci_request_selected_regions(pdev, request_mask, name); in pcim_iomap_regions_request_all()
315 if (rc) in pcim_iomap_regions_request_all()
316 return rc; in pcim_iomap_regions_request_all()
[all …]