Home
last modified time | relevance | path

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

/phasta/phSolver/common/
H A DphString.cc11 void phstr_appendInt(char* dest, int v) { in phstr_appendInt() argument
13 ss << dest << v; in phstr_appendInt()
15 strcpy(dest, s.c_str()); in phstr_appendInt()
18 void phstr_appendDbl(char* dest, double v) { in phstr_appendDbl() argument
20 ss << dest << v; in phstr_appendDbl()
22 strcpy(dest, s.c_str()); in phstr_appendDbl()
25 void phstr_appendStr(char* dest, char* src) { in phstr_appendStr() argument
27 ss << dest << src; in phstr_appendStr()
29 strcpy(dest, s.c_str()); in phstr_appendStr()
H A DphString.h7 void phstr_appendInt(char* dest, int v);
8 void phstr_appendDbl(char* dest, double src);
9 void phstr_appendStr(char* dest, char* src);
H A DphStr.f22 subroutine phstr_appendStr(dest, src)
25 character(c_char) :: dest(*) local
H A DphIO.cc119 void phio_appendInt(char* dest, int v) { in phio_appendInt() argument
121 ss << dest << v << '.'; in phio_appendInt()
123 strcpy(dest, s.c_str()); in phio_appendInt()
/phasta/phastaIO/
H A DvtkPhastaReader.cxx192 char* dest = new char [ length + 1 ]; in StringStripper() local
193 strcpy( dest, istring ); in StringStripper()
194 dest[ length ] = '\0'; in StringStripper()
196 if ( char* p = strpbrk( dest, " ") ) in StringStripper()
201 return dest; in StringStripper()
H A DphastaIO.cc176 char* dest = (char *)malloc( length + 1 ); in StringStripper() local
177 strcpy( dest, istring ); in StringStripper()
178 dest[ length ] = '\0'; in StringStripper()
179 if ( char* p = strpbrk( dest, " ") ) in StringStripper()
181 return dest; in StringStripper()