Home
last modified time | relevance | path

Searched refs:cip (Results 51 – 75 of 2439) sorted by relevance

12345678910>>...98

/dports/devel/configkit/ConfigKit/libconfigkit/
H A Dinstance.c23 struct ck_instance *cip; in __ck_walk_word() local
30 TAILQ_FOREACH(cip, ciph, next) in __ck_walk_word()
31 ck_printf(CK_PASS, " %s", cip->idx.word); in __ck_walk_word()
37 TAILQ_FOREACH(cip, ciph, next) { in __ck_walk_word()
38 if (cip->parent != priv) in __ck_walk_word()
40 cfa->priv = cip->obj; in __ck_walk_word()
56 struct ck_instance *cip; in __ck_walk_uint() local
63 TAILQ_FOREACH(cip, ciph, next) in __ck_walk_uint()
70 TAILQ_FOREACH(cip, ciph, next) { in __ck_walk_uint()
71 if (cip->parent != priv) in __ck_walk_uint()
[all …]
/dports/ftp/ncftp3/ncftp-3.2.6/libncftp/
H A Drglob.c34 PrintF(cip, " Rglob omitted: [%s] (type 1)\n", lp->line); in StripUnneccesaryGlobEntries()
177 PrintF(cip, " Rglob omitted: [%s] (type 4)\n", lp->line); in RemoteGlobCollapse()
200 if (cip == NULL) in FTPRemoteGlob()
202 if (strcmp(cip->magic, kLibraryMagic)) in FTPRemoteGlob()
240 cip->hasNLST_a = kCommandNotAvailable; in FTPRemoteGlob()
264 cip->errNo = kErrGlobNoMatch; in FTPRemoteGlob()
276 cip->errNo = kErrGlobFailed; in FTPRemoteGlob()
279 cip->errNo = kErrGlobNoMatch; in FTPRemoteGlob()
284 StripUnneccesaryGlobEntries(cip, fileList); in FTPRemoteGlob()
285 RemoteGlobCollapse(cip, pattern, fileList); in FTPRemoteGlob()
[all …]
H A Dc_size.c27 if (cip == NULL) in FTPFileSize()
29 if (strcmp(cip->magic, kLibraryMagic)) in FTPFileSize()
36 result = FTPSetTransferType(cip, type); in FTPFileSize()
41 cip->errNo = kErrSIZENotAvailable; in FTPFileSize()
47 cip->errNo = kErrMallocFailed; in FTPFileSize()
52 DoneWithResponse(cip, rp); in FTPFileSize()
62 cip->hasSIZE = kCommandAvailable; in FTPFileSize()
65 cip->hasSIZE = kCommandNotAvailable; in FTPFileSize()
66 cip->errNo = kErrSIZENotAvailable; in FTPFileSize()
69 cip->errNo = kErrSIZEFailed; in FTPFileSize()
[all …]
H A Dftp.h9 void FTPFixServerDataAddr(const FTPCIPtr cip);
10 void FTPFixClientDataAddr(const FTPCIPtr cip);
11 int OpenControlConnection(const FTPCIPtr cip, char *host, unsigned int port);
12 void CloseDataConnection(const FTPCIPtr cip);
13 int SetStartOffset(const FTPCIPtr cip, longest_int restartPt);
14 int OpenDataConnection(const FTPCIPtr cip, int mode);
15 int AcceptDataConnection(const FTPCIPtr cip);
16 void HangupOnServer(const FTPCIPtr cip);
17 void SendTelnetInterrupt(const FTPCIPtr cip);
H A Dio_putonefile.c19 const FTPCIPtr cip, in FTPPutOneFile4() argument
35 if (cip == NULL) in FTPPutOneFile4()
37 if (strcmp(cip->magic, kLibraryMagic)) in FTPPutOneFile4()
46 …result = FTPPutOneF(cip, file, dstfile, xtype, fdtouse, appendflag, tmppfx, tmpsfx, resumeflag, de… in FTPPutOneFile4()
54 FTPPutOneFile(const FTPCIPtr cip, const char *const file, const char *const dstfile) in FTPPutOneFile() argument
56 …return (FTPPutOneFile4(cip, file, dstfile, kTypeBinary, -1, 0, NULL, NULL, kResumeNo, kDeleteNo, k… in FTPPutOneFile()
63 FTPPutOneFile2(const FTPCIPtr cip, const char *const file, const char *const dstfile, const int xty… in FTPPutOneFile2() argument
65 …return (FTPPutOneFile4(cip, file, dstfile, xtype, fdtouse, appendflag, tmppfx, tmpsfx, kResumeNo, … in FTPPutOneFile2()
75 …return (FTPPutOneFile4(cip, file, dstfile, xtype, fdtouse, appendflag, tmppfx, tmpsfx, resumeflag,… in FTPPutOneFile3()
82 FTPPutOneFileAscii(const FTPCIPtr cip, const char *const file, const char *const dstfile) in FTPPutOneFileAscii() argument
[all …]
H A Dc_rename.c14 FTPRename(const FTPCIPtr cip, const char *const oldname, const char *const newname) in FTPRename() argument
18 if (cip == NULL) in FTPRename()
20 if (strcmp(cip->magic, kLibraryMagic)) in FTPRename()
28 result = FTPCmd(cip, "RNFR %s", oldname); in FTPRename()
32 cip->errNo = kErrRenameFailed; in FTPRename()
33 return (cip->errNo); in FTPRename()
36 result = FTPCmd(cip, "RNTO %s", newname); in FTPRename()
40 cip->errNo = kErrRenameFailed; in FTPRename()
41 return (cip->errNo); in FTPRename()
H A Dc_chdir.c14 FTPChdir(const FTPCIPtr cip, const char *const cdCwd) in FTPChdir() argument
18 if (cip == NULL) in FTPChdir()
20 if (strcmp(cip->magic, kLibraryMagic)) in FTPChdir()
25 cip->errNo = kErrInvalidDirParam; in FTPChdir()
30 result = FTPCmd(cip, "CDUP"); in FTPChdir()
32 result = FTPCmd(cip, "CWD %s", cdCwd); in FTPChdir()
35 if (cip->currentWorkingDirectory != NULL) in FTPChdir()
36 cip->currentWorkingDirectory[0] = '\0'; /* Invalidate pwd cache. */ in FTPChdir()
40 cip->errNo = kErrCWDFailed; in FTPChdir()
H A Dc_type.c14 FTPSetTransferType(const FTPCIPtr cip, int type) in FTPSetTransferType() argument
18 if (cip == NULL) in FTPSetTransferType()
20 if (strcmp(cip->magic, kLibraryMagic)) in FTPSetTransferType()
23 if (cip->curTransferType != type) { in FTPSetTransferType()
42 FTPLogError(cip, kDontPerror, "Bad transfer type [%c].\n", type); in FTPSetTransferType()
43 cip->errNo = kErrBadTransferType; in FTPSetTransferType()
46 result = FTPCmd(cip, "TYPE %c", type); in FTPSetTransferType()
49 cip->errNo = kErrTYPEFailed; in FTPSetTransferType()
52 cip->curTransferType = type; in FTPSetTransferType()
H A Dc_delete.c14 FTPDelete(const FTPCIPtr cip, const char *const pattern, const int recurse, const int doGlob) in FTPDelete() argument
21 if (cip == NULL) in FTPDelete()
23 if (strcmp(cip->magic, kLibraryMagic)) in FTPDelete()
26 batchResult = FTPRemoteGlob(cip, &fileList, pattern, doGlob); in FTPDelete()
37 cip->errNo = kErrBadLineList; in FTPDelete()
40 onceResult = FTPCmd(cip, "DELE %s", file); in FTPDelete()
48 cip->errNo = kErrDELEFailed; in FTPDelete()
50 onceResult = FTPCmd(cip, "RMD %s", file); in FTPDelete()
56 onceResult = FTPRmdirRecursive(cip, file); in FTPDelete()
59 cip->errNo = kErrRMDFailed; in FTPDelete()
H A Du_printf.c19 PrintF(const FTPCIPtr cip, const char *const fmt, ...) in PrintF() argument
30 if ((x = cip->debugTimestamping) != 0) { in PrintF()
37 if (cip->debugLog != NULL) in PrintF()
38 (void) fprintf(cip->debugLog, "%s ", tbuf); in PrintF()
43 if (cip->debugLog != NULL) { in PrintF()
44 (void) vfprintf(cip->debugLog, fmt, ap); in PrintF()
45 (void) fflush(cip->debugLog); in PrintF()
48 if (cip->debugLogProc != NULL) { in PrintF()
57 (*cip->debugLogProc)(cip, buf); in PrintF()
H A Dutil.h93 void FTPCheckForRestartModeAvailability(const FTPCIPtr cip);
94 int WaitForRemoteInput(const FTPCIPtr cip);
95 int WaitForRemoteOutput(const FTPCIPtr cip);
96 void FTPSetUploadSocketBufferSize(const FTPCIPtr cip);
101 const FTPCIPtr cip,
115 const FTPCIPtr cip,
132 void FTPResetStatusVariables(const FTPCIPtr cip);
133 void FTPDeallocateHost(const FTPCIPtr cip);
134 int FTPAllocateHost(const FTPCIPtr cip);
137 int FTPRmdirRecursive(const FTPCIPtr cip, const char *const dir);
[all …]
H A Dio_getonefile.c19 const FTPCIPtr cip, in FTPGetOneFile3() argument
33 if (cip == NULL) in FTPGetOneFile3()
35 if (strcmp(cip->magic, kLibraryMagic)) in FTPGetOneFile3()
45 …result = FTPGetOneF(cip, file, dstfile, xtype, fdtouse, kSizeUnknown, kModTimeUnknown, resumeflag,… in FTPGetOneFile3()
52 FTPGetOneFile(const FTPCIPtr cip, const char *const file, const char *const dstfile) in FTPGetOneFile() argument
54 …return (FTPGetOneFile3(cip, file, dstfile, kTypeBinary, -1, kResumeNo, kAppendNo, kDeleteNo, (FTPC… in FTPGetOneFile()
61 FTPGetOneFile2(const FTPCIPtr cip, const char *const file, const char *const dstfile, const int xty… in FTPGetOneFile2() argument
63 …return (FTPGetOneFile3(cip, file, dstfile, xtype, fdtouse, resumeflag, appendflag, kDeleteNo, (FTP… in FTPGetOneFile2()
70 FTPGetOneFileAscii(const FTPCIPtr cip, const char *const file, const char *const dstfile) in FTPGetOneFileAscii() argument
72 …return (FTPGetOneFile3(cip, file, dstfile, kTypeAscii, -1, kResumeNo, kAppendNo, kDeleteNo, (FTPCo… in FTPGetOneFileAscii()
H A Du_shutdownci.c16 FTPShutdownHost(const FTPCIPtr cip) in FTPShutdownHost() argument
22 if (cip == NULL) in FTPShutdownHost()
24 if (strcmp(cip->magic, kLibraryMagic)) in FTPShutdownHost()
32 if (cip->dataSocket != kClosedFileDescriptor) in FTPShutdownHost()
33 (void) SetSocketLinger(cip->dataSocket, 0, 0); in FTPShutdownHost()
34 CloseDataConnection(cip); /* Shouldn't be open normally. */ in FTPShutdownHost()
37 FTPCloseControlConnection(cip); in FTPShutdownHost()
39 FTPDeallocateHost(cip); in FTPShutdownHost()
H A Dc_rmdir.c14 FTPRmdir(const FTPCIPtr cip, const char *const pattern, const int recurse, const int doGlob) in FTPRmdir() argument
21 if (cip == NULL) in FTPRmdir()
23 if (strcmp(cip->magic, kLibraryMagic)) in FTPRmdir()
26 batchResult = FTPRemoteGlob(cip, &fileList, pattern, doGlob); in FTPRmdir()
37 cip->errNo = kErrBadLineList; in FTPRmdir()
40 onceResult = FTPCmd(cip, "RMD %s", file); in FTPRmdir()
47 onceResult = FTPRmdirRecursive(cip, file); in FTPRmdir()
50 cip->errNo = kErrRMDFailed; in FTPRmdir()
54 cip->errNo = kErrRMDFailed; in FTPRmdir()
H A Drftw.c48 FTPCIPtr cip = (FTPCIPtr) ftwip->cip; in FTPFtwTraverse() local
63 if (cip->hasMLSD == kCommandAvailable) { in FTPFtwTraverse()
72 unlsrc = UnMlsD(cip, &fil, &ll); in FTPFtwTraverse()
91 RemoteGlobCollapse(cip, path, &ll); in FTPFtwTraverse()
97 unlsrc = UnLslR(cip, &fil, &ll, cip->serverType); in FTPFtwTraverse()
211 result = FTPIsDir(cip, path); in FTPFtwTraverse()
338 if (cip == NULL) in FTPFtw()
344 cip->errNo = kErrBadParameter; in FTPFtw()
370 ftwip->cip = (void *) cip; in FTPFtw()
372 rc = FTPIsDir(cip, path); in FTPFtw()
[all …]
/dports/games/dxx-rebirth/dxx-rebirth_20211220-src/d1x-rebirth/main/
H A Dcustom.cpp147 cip++; in load_pig1()
164 cip++; in load_pig1()
210 cip = ci.get(); in load_pog()
218 x = cip[i].repl_idx; in load_pog()
219 cip[i].repl_idx = -1; in load_pog()
240 cip++; in load_pog()
277 x = cip->repl_idx; in load_pigpog()
285 j = cip->width * cip->height; in load_pigpog()
325 gr_init_bitmap(*bmp, bm_mode::linear, 0, 0, cip->width, cip->height, cip->width, p); in load_pigpog()
350 j = cip->width; in load_pigpog()
[all …]
/dports/devel/p5-FFI-CheckLib/FFI-CheckLib-0.28/maint/
H A Dcip-before-install7 cip sudo apk add cmake
8 cip sudo apk add libffi-dev
9 cip sudo apk add yaml-dev
12 cip sudo yum install libffi-devel libyaml-devel -y
15 cip sudo yum install cmake libffi-devel libyaml-devel -y
17 cip sudo apt-get update
18 cip sudo apt-get -y install libffi-dev libyaml-dev
21 cip exec cpanm -n FFI::Platypus
24 cip exec cpanm -n Test2::Tools::Process
/dports/biology/plink/plink-ng-79b2df8c/2.0/
H A Dplink2_common.cc1180 cip->name_ct = 0; in InitChrInfo()
1208 cip->zero_extra_chrs = 0; in InitChrInfo()
1209 cip->is_include_stack = 0; in InitChrInfo()
1211 cip->autosome_ct = 22; in InitChrInfo()
1246 cip->max_code = max_code; in FinalizeChrset()
1323 cip->name_ct = 0; in ForgetExtraChrNames()
1386 if (cip->chr_mask) { in CleanupChrInfo()
1389 cip->chr_mask = nullptr; in CleanupChrInfo()
1462 if (cip->zero_extra_chrs) { in chrtoa()
1474 if (cip->zero_extra_chrs) { in GetMaxChrSlen()
[all …]
H A Dplink2_common.h686 PglErr InitChrInfo(ChrInfo* cip);
692 if (unlikely(InitChrInfo(cip))) { in InitChrInfoHuman()
695 FinalizeChrset(kfMisc0, cip); in InitChrInfoHuman()
704 PglErr FinalizeChrInfo(ChrInfo* cip);
706 void CleanupChrInfo(ChrInfo* cip);
712 uint32_t GetMaxChrSlen(const ChrInfo* cip);
734 return CountSortedSmallerU32(&(cip->chr_fo_vidx_start[1]), cip->chr_ct, variant_uidx + 1); in GetVariantChrFoIdx()
738 return cip->chr_file_order[GetVariantChrFoIdx(cip, variant_uidx)]; in GetVariantChr()
865 assert(IsSet(cip->chr_mask, chr_idx)); in CountChrVariantsUnsafe()
873 if (!IsSet(cip->chr_mask, chr_idx)) { in ChrIsNonempty()
[all …]
/dports/lang/swi-pl/swipl-8.2.3/src/
H A Dpl-index.c430 for(; *cip; cip++) in first_clause_guarded()
768 { for(; *cip; cip++) in addClauseToListIndexes()
1183 { for(; *cip; cip++) in cleanClauseIndexes()
1401 { for(; *cip; cip++) in deleteActiveClauseFromIndexes()
1439 for(cip = cip0; *cip; cip++) in deleteIndexes()
1462 for(cip = cip0; *cip; cip++) in deleteIndexesDefinition()
1632 { for(; *cip; cip++) in hashDefinition()
1687 for(cip=org; *cip; cip++) in copyIndex()
1702 for(cip=org; *cip; cip++) in copyIndex()
1871 for(cip=ncip; *cip; cip++) in insertIndex()
[all …]
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgstype1.c59 const byte *cip = *ci; in gs_type1_check_float() local
61 c0 = *cip++; in gs_type1_check_float()
73 c0 = *cip++; in gs_type1_check_float()
77 c0 = *cip++; in gs_type1_check_float()
91 *ci = cip; in gs_type1_check_float()
128 const byte *cip; in gs_type1_interpret() local
164 if (cip == 0) in gs_type1_interpret()
177 cip = ipsp->ip; in gs_type1_interpret()
180 uint c0 = *cip++; in gs_type1_interpret()
295 cip = pgd->bits.data; in gs_type1_interpret()
[all …]
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgstype1.c59 const byte *cip = *ci; in gs_type1_check_float() local
61 c0 = *cip++; in gs_type1_check_float()
73 c0 = *cip++; in gs_type1_check_float()
77 c0 = *cip++; in gs_type1_check_float()
91 *ci = cip; in gs_type1_check_float()
128 const byte *cip; in gs_type1_interpret() local
164 if (cip == 0) in gs_type1_interpret()
177 cip = ipsp->ip; in gs_type1_interpret()
180 uint c0 = *cip++; in gs_type1_interpret()
295 cip = pgd->bits.data; in gs_type1_interpret()
[all …]
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgstype1.c61 const byte *cip = *ci; in gs_type1_check_float() local
63 c0 = *cip++; in gs_type1_check_float()
75 c0 = *cip++; in gs_type1_check_float()
79 c0 = *cip++; in gs_type1_check_float()
93 *ci = cip; in gs_type1_check_float()
130 const byte *cip; in gs_type1_interpret() local
165 cip = pgd->bits.data; in gs_type1_interpret()
166 if (cip == 0) in gs_type1_interpret()
179 cip = ipsp->ip; in gs_type1_interpret()
182 uint c0 = *cip++; in gs_type1_interpret()
[all …]
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgstype1.c61 const byte *cip = *ci; in gs_type1_check_float() local
63 c0 = *cip++; in gs_type1_check_float()
75 c0 = *cip++; in gs_type1_check_float()
79 c0 = *cip++; in gs_type1_check_float()
93 *ci = cip; in gs_type1_check_float()
130 const byte *cip; in gs_type1_interpret() local
165 cip = pgd->bits.data; in gs_type1_interpret()
166 if (cip == 0) in gs_type1_interpret()
179 cip = ipsp->ip; in gs_type1_interpret()
182 uint c0 = *cip++; in gs_type1_interpret()
[all …]
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgstype1.c61 const byte *cip = *ci; in gs_type1_check_float() local
63 c0 = *cip++; in gs_type1_check_float()
75 c0 = *cip++; in gs_type1_check_float()
79 c0 = *cip++; in gs_type1_check_float()
93 *ci = cip; in gs_type1_check_float()
163 cip = pgd->bits.data; in gs_type1_interpret()
164 if (cip == 0) in gs_type1_interpret()
178 cip = ipsp->ip; in gs_type1_interpret()
182 uint c0 = *cip++; in gs_type1_interpret()
183 if (cip > cipend) in gs_type1_interpret()
[all …]

12345678910>>...98