| 261 | } |
| 262 | |
| 263 | HOSTDEVICE static inline void PD_PString_Init(PD_PString *str) { |
| 264 | PD_Memset(str->u.raw.raw, 0, sizeof(PD_PString_Raw)); |
| 265 | } |
| 266 | |
| 267 | HOSTDEVICE static inline void PD_PString_Dealloc(PD_PString *str) { |
| 268 | if (PD_PString_GetType(str) == PD_PSTR_LARGE && |
no test coverage detected