HomeSort by relevance Sort by last modified time
    Searched full:dstfp (Results 1 - 7 of 7) sorted by null

  /build/make/tools/zipalign/
ZipFile.h 221 /* copy all of "srcFp" into "dstFp" */
222 status_t copyFpToFp(FILE* dstFp, FILE* srcFp, uint32_t* pCRC32);
223 /* copy all of "data" into "dstFp" */
224 status_t copyDataToFp(FILE* dstFp,
226 /* copy some of "srcFp" into "dstFp" */
227 status_t copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length,
231 /* compress all of "srcFp" into "dstFp", using Deflate */
232 status_t compressFpToFp(FILE* dstFp, FILE* srcFp,
ZipFile.cpp 752 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
755 status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, uint32_t* pCRC32)
764 if (ferror(srcFp) || ferror(dstFp))
771 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
783 * On exit, "dstFp" will be seeked immediately past the data.
785 status_t ZipFile::copyDataToFp(FILE* dstFp,
793 if (fwrite(data, 1, size, dstFp) != size) {
807 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
810 status_t ZipFile::copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length,
835 if (fwrite(tmpBuf, 1, count, dstFp) != count)
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.h 228 /* copy all of "srcFp" into "dstFp" */
229 status_t copyFpToFp(FILE* dstFp, FILE* srcFp, unsigned long* pCRC32);
230 /* copy all of "data" into "dstFp" */
231 status_t copyDataToFp(FILE* dstFp,
233 /* copy some of "srcFp" into "dstFp" */
234 status_t copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length,
238 /* compress all of "srcFp" into "dstFp", using Deflate */
239 status_t compressFpToFp(FILE* dstFp, FILE* srcFp,
ZipFile.cpp 642 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
645 status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, unsigned long* pCRC32)
654 if (ferror(srcFp) || ferror(dstFp))
661 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
673 * On exit, "dstFp" will be seeked immediately past the data.
675 status_t ZipFile::copyDataToFp(FILE* dstFp,
681 if (fwrite(data, 1, size, dstFp) != size) {
695 * On exit, "srcFp" will be seeked to the end of the file, and "dstFp"
698 status_t ZipFile::copyPartialFpToFp(FILE* dstFp, FILE* srcFp, long length,
723 if (fwrite(tmpBuf, 1, count, dstFp) != count)
    [all...]
  /external/libcups/cups/
adminutil.c 45 static void write_option(cups_file_t *dstfp, int order,
68 *dstfp; /* Destination PPD file */ local
153 if ((dstfp = cupsTempFile2(buffer, bufsize)) == NULL)
166 cupsFilePuts(dstfp, "*PPD-Adobe: \"4.3\"\n");
171 cupsFilePrintf(dstfp, "*%% Modified on %04d%02d%02d%02d%02d%02d+0000 "
207 cupsFilePrintf(dstfp, "*%% Commented out for CUPS Windows Driver...\n"
214 cupsFilePrintf(dstfp, "%s\n", line);
219 cupsFilePrintf(dstfp, "%s\n", line);
229 cupsFilePrintf(dstfp, "*OrderDependency: %d%s\n", jclorder, ptr);
233 cupsFilePrintf(dstfp, "%s\n", line)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86FloatingPoint.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp     [all...]

Completed in 598 milliseconds