Home
last modified time | relevance | path

Searched refs:pchSrc (Results 1 – 25 of 39) sorted by relevance

12

/dports/net-p2p/dclib/dclib-0.3.23/dclib/core/
H A Dcbytearray.cpp108 void CByteArray::Append( const unsigned char * pchSrc, unsigned long nSize ) in Append() argument
114 if ( (nSize == 0) || (pchSrc == NULL) ) in Append()
120 if ( (pchSrc >= m_pchBuffer) && (pchSrc <= m_pchBuffer+m_nBufferSize) ) in Append()
128 memcpy(temp,pchSrc,nSize); in Append()
133 temp = (unsigned char*) pchSrc; in Append()
147 if ( temp != pchSrc ) in Append()
163 if ( temp != pchSrc ) in Append()
H A Dcbytearray.h51 void Append( const unsigned char * pchSrc, unsigned long nSize );
53 …void Append( const char * pchSrc, unsigned long nSize ) { Append( (const unsigned char*)pchSrc, nS… in Append() argument
/dports/databases/py-pyodbc/pyodbc-4.0.32/src/
H A Derrors.h85 const char* pchSrc = (const char*)src; in CopySqlState() local
86 const char* pchSrcMax = pchSrc + sizeof(ODBCCHAR) * 5; in CopySqlState()
90 while (pchDest < pchDestMax && pchSrc < pchSrcMax) in CopySqlState()
92 if (*pchSrc) in CopySqlState()
93 *pchDest++ = *pchSrc; in CopySqlState()
94 pchSrc++; in CopySqlState()
/dports/devel/kBuild/kBuild-0.1.9998/src/lib/
H A Ddos2unix.c220 KBOOL dos2unix_convert_to_unix(const char *pchSrc, KSIZE cchSrc, char *pchDst, KSIZE *pcchDst) in dos2unix_convert_to_unix() argument
225 char ch = *pchSrc++; in dos2unix_convert_to_unix()
228 else if (cchSrc > 0 && *pchSrc == DOS2UNIX_LF) in dos2unix_convert_to_unix()
232 pchSrc++; in dos2unix_convert_to_unix()
263 KBOOL dos2unix_convert_to_dos(const char *pchSrc, KSIZE cchSrc, char *pchDst, KSIZE *pcchDst) in dos2unix_convert_to_dos() argument
268 char ch = *pchSrc++; in dos2unix_convert_to_dos()
280 ch = *pchSrc++; in dos2unix_convert_to_dos()
H A Ddos2unix.h46 KBOOL dos2unix_convert_to_unix(const char *pchSrc, KSIZE cchSrc, char *pchDst, KSIZE *pcchDst);
47 KBOOL dos2unix_convert_to_dos(const char *pchSrc, KSIZE cchSrc, char *pchDst, KSIZE *pcchDst);
/dports/math/gretl/gretl-2021d/plugin/libshp/
H A Ddbfopen.c426 char *pchSrc, *pchDst; in DBFReadAttribute() local
428 pchDst = pchSrc = DBF->WorkField; in DBFReadAttribute()
429 while (*pchSrc == ' ') in DBFReadAttribute()
430 pchSrc++; in DBFReadAttribute()
432 while (*pchSrc != '\0') in DBFReadAttribute()
433 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/games/gnubg/gnubg-1.06.002/
H A Dsgf_y.y67 char *sz, *pchDest, *pchSrc; in Concatenate() local
75 for( pchSrc = pl->plNext->p; ( *pchDest++ = *pchSrc++ ); ) in Concatenate()
/dports/devel/avce00/avce00-2.0.0/
H A Ddbfopen.c662 char *pchSrc, *pchDst; in DBFReadAttribute() local
664 pchDst = pchSrc = pszStringField; in DBFReadAttribute()
665 while( *pchSrc == ' ' ) in DBFReadAttribute()
666 pchSrc++; in DBFReadAttribute()
668 while( *pchSrc != '\0' ) in DBFReadAttribute()
669 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/astro/gpsbabel14/gpsbabel-1.4.4/shapelib/
H A Ddbfopen.c778 char *pchSrc, *pchDst; in DBFReadAttribute() local
780 pchDst = pchSrc = pszStringField; in DBFReadAttribute()
781 while( *pchSrc == ' ' ) in DBFReadAttribute()
782 pchSrc++; in DBFReadAttribute()
784 while( *pchSrc != '\0' ) in DBFReadAttribute()
785 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/b3p/shapelib/
H A Ddbfopen.c757 char *pchSrc, *pchDst; in DBFReadAttribute() local
759 pchDst = pchSrc = pszStringField; in DBFReadAttribute()
760 while( *pchSrc == ' ' ) in DBFReadAttribute()
761 pchSrc++; in DBFReadAttribute()
763 while( *pchSrc != '\0' ) in DBFReadAttribute()
764 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/biology/ncbi-toolkit/ncbi/tools/
H A Dtfuns.c70 CharPtr StrStripSpaces(CharPtr pchSrc, CharPtr pchDest) in StrStripSpaces() argument
76 pchDest = MemNew(StrLen(pchSrc)); in StrStripSpaces()
83 while (*pchSrc != '\0') { in StrStripSpaces()
84 if (*pchSrc == ' ' || *pchSrc == '\t') { in StrStripSpaces()
90 *pchDest++ = *pchSrc; in StrStripSpaces()
93 pchSrc++; in StrStripSpaces()
H A Dtfuns.h18 CharPtr StrStripSpaces PROTO((CharPtr pchSrc, CharPtr pchDest));
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Util/
H A DStringUtil.cs223 fixed (char * pchSrc = src, pchDest = dest) { in UnsafeStringCopy()
224 byte* pbSrc = (byte *) (pchSrc + srcIndex); in UnsafeStringCopy()
/dports/devel/kBuild/kBuild-0.1.9998/src/kmk/kmkbuiltin/
H A Dinstall.c975 char * const pchSrc = &buf[sizeof(buf) / 2]; in copy() local
976 while ((nr = read(from_fd, pchSrc, sizeof(buf) / 2)) > 0) { in copy()
978 && pchSrc[0] != '\n' in copy()
982 fPendingCr = dos2unix_convert_to_dos(pchSrc, nr, buf, &cchDst); in copy()
/dports/cad/librecad/LibreCAD-2.2.0-rc2/plugins/importshp/shapelib/
H A Ddbfopen.c1023 char *pchSrc, *pchDst; in DBFReadAttribute() local
1025 pchDst = pchSrc = psDBF->pszWorkField; in DBFReadAttribute()
1026 while( *pchSrc == ' ' ) in DBFReadAttribute()
1027 pchSrc++; in DBFReadAttribute()
1029 while( *pchSrc != '\0' ) in DBFReadAttribute()
1030 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/databases/postgis25/postgis-2.5.5/loader/
H A Ddbfopen.c1024 char *pchSrc, *pchDst; in DBFReadAttribute() local
1026 pchDst = pchSrc = psDBF->pszWorkField; in DBFReadAttribute()
1027 while( *pchSrc == ' ' ) in DBFReadAttribute()
1028 pchSrc++; in DBFReadAttribute()
1030 while( *pchSrc != '\0' ) in DBFReadAttribute()
1031 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/databases/postgis30/postgis-3.0.4/loader/
H A Ddbfopen.c993 char *pchSrc, *pchDst; in DBFReadAttribute() local
995 pchDst = pchSrc = psDBF->pszWorkField; in DBFReadAttribute()
996 while (*pchSrc == ' ') in DBFReadAttribute()
997 pchSrc++; in DBFReadAttribute()
999 while (*pchSrc != '\0') in DBFReadAttribute()
1000 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/devel/upp/upp/bazaar/plugin/gdal/ogr/ogrsf_frmts/shape/
H A Ddbfopen.c1054 char *pchSrc, *pchDst; in DBFReadAttribute() local
1056 pchDst = pchSrc = psDBF->pszWorkField; in DBFReadAttribute()
1057 while( *pchSrc == ' ' ) in DBFReadAttribute()
1058 pchSrc++; in DBFReadAttribute()
1060 while( *pchSrc != '\0' ) in DBFReadAttribute()
1061 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/databases/grass7/grass-7.8.6/lib/external/shapelib/
H A Ddbfopen.c1065 char *pchSrc, *pchDst; in DBFReadAttribute() local
1067 pchDst = pchSrc = psDBF->pszWorkField; in DBFReadAttribute()
1068 while( *pchSrc == ' ' ) in DBFReadAttribute()
1069 pchSrc++; in DBFReadAttribute()
1071 while( *pchSrc != '\0' ) in DBFReadAttribute()
1072 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/astro/gpsbabel/gpsbabel-gpsbabel_1_7_0/shapelib/
H A Ddbfopen.c1212 char *pchSrc, *pchDst; in DBFReadAttribute() local
1214 pchDst = pchSrc = psDBF->pszWorkField; in DBFReadAttribute()
1215 while( *pchSrc == ' ' ) in DBFReadAttribute()
1216 pchSrc++; in DBFReadAttribute()
1218 while( *pchSrc != '\0' ) in DBFReadAttribute()
1219 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/databases/postgis32/postgis-3.2.0/loader/
H A Ddbfopen.c1077 char *pchSrc, *pchDst; in DBFReadAttribute() local
1079 pchDst = pchSrc = psDBF->pszWorkField; in DBFReadAttribute()
1080 while( *pchSrc == ' ' ) in DBFReadAttribute()
1081 pchSrc++; in DBFReadAttribute()
1083 while( *pchSrc != '\0' ) in DBFReadAttribute()
1084 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/graphics/py-gdal/gdal-3.3.3/ogr/ogrsf_frmts/shape/
H A Ddbfopen.c1025 char *pchSrc = psDBF->pszWorkField; in DBFReadAttribute() local
1026 char *pchDst = pchSrc; in DBFReadAttribute()
1028 while( *pchSrc == ' ' ) in DBFReadAttribute()
1029 pchSrc++; in DBFReadAttribute()
1031 while( *pchSrc != '\0' ) in DBFReadAttribute()
1032 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/ogr/ogrsf_frmts/shape/
H A Ddbfopen.c1025 char *pchSrc = psDBF->pszWorkField;
1026 char *pchDst = pchSrc;
1028 while( *pchSrc == ' ' )
1029 pchSrc++;
1031 while( *pchSrc != '\0' )
1032 *(pchDst++) = *(pchSrc++);
/dports/databases/postgis31/postgis-3.1.4/loader/
H A Ddbfopen.c1077 char *pchSrc, *pchDst; in DBFReadAttribute() local
1079 pchDst = pchSrc = psDBF->pszWorkField; in DBFReadAttribute()
1080 while( *pchSrc == ' ' ) in DBFReadAttribute()
1081 pchSrc++; in DBFReadAttribute()
1083 while( *pchSrc != '\0' ) in DBFReadAttribute()
1084 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()
/dports/devel/shapelib/shapelib-1.5.0/
H A Ddbfopen.c1212 char *pchSrc, *pchDst; in DBFReadAttribute() local
1214 pchDst = pchSrc = psDBF->pszWorkField; in DBFReadAttribute()
1215 while( *pchSrc == ' ' ) in DBFReadAttribute()
1216 pchSrc++; in DBFReadAttribute()
1218 while( *pchSrc != '\0' ) in DBFReadAttribute()
1219 *(pchDst++) = *(pchSrc++); in DBFReadAttribute()

12