Home
last modified time | relevance | path

Searched refs:fpdst (Results 1 – 6 of 6) sorted by relevance

/dports/net-im/libpurple/pidgin-2.14.8/pidgin/win32/
H A Duntar.c191 FILE *fpdst; local
205 fpdst = createpath(dst);
206 if (!fpdst) {
215 fclose(fpdst);
234 fpdst = g_fopen(dst, "wb");
242 putc(c, fpdst);
246 fclose(fpdst);
/dports/net-im/pidgin/pidgin-2.14.8/pidgin/win32/
H A Duntar.c191 FILE *fpdst; local
205 fpdst = createpath(dst);
206 if (!fpdst) {
215 fclose(fpdst);
234 fpdst = g_fopen(dst, "wb");
242 putc(c, fpdst);
246 fclose(fpdst);
/dports/net-im/finch/pidgin-2.14.8/pidgin/win32/
H A Duntar.c191 FILE *fpdst; local
205 fpdst = createpath(dst);
206 if (!fpdst) {
215 fclose(fpdst);
234 fpdst = g_fopen(dst, "wb");
242 putc(c, fpdst);
246 fclose(fpdst);
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/
H A DLowPrecisionOptPass.cpp376 … auto fpdst = m_builder->CreateFPTrunc(fSub, Type::getHalfTy(m_builder->getContext())); in visitIntrinsicInst() local
377 hfSub->replaceAllUsesWith(fpdst); in visitIntrinsicInst()
383 auto fpdst = m_builder->CreateFPTrunc(floor32, Type::getHalfTy(m_builder->getContext())); in visitIntrinsicInst() local
384 I.replaceAllUsesWith(fpdst); in visitIntrinsicInst()
/dports/lang/asn1c/asn1c-0.9.27/libasn1compiler/
H A Dasn1c_save.c395 FILE *fpsrc, *fpdst; in real_copy() local
404 fpdst = asn1c_open_file(dst, "", &tmpname); in real_copy()
405 if(!fpdst) { fclose(fpsrc); errno = EIO; return -1; } in real_copy()
409 if(fwrite(buf, 1, len, fpdst) != len) { in real_copy()
417 fclose(fpdst); in real_copy()
/dports/lang/fth/fth-1.4.1/src/
H A Dfile.c412 FILE *fpsrc, *fpdst; in fth_file_copy() local
431 fpdst = fopen(buf, "w"); in fth_file_copy()
433 fpdst = fopen(dst, "w"); in fth_file_copy()
435 if (fpdst == NULL) { in fth_file_copy()
441 fputc(c, fpdst); in fth_file_copy()
444 fclose(fpdst); in fth_file_copy()