Home | History | Annotate | Download | only in i18n

Lines Matching refs:resultLength

83 vzone_write(VZone* zone, UChar* & result, int32_t & resultLength, UErrorCode& status) {
87 resultLength = s.length();
88 result = (UChar*)uprv_malloc(resultLength);
89 memcpy(result,s.getBuffer(),resultLength);
95 vzone_writeFromStart(VZone* zone, UDate start, UChar* & result, int32_t & resultLength, UErrorCode& status) {
99 resultLength = s.length();
100 result = (UChar*)uprv_malloc(resultLength);
101 memcpy(result,s.getBuffer(),resultLength);
107 vzone_writeSimple(VZone* zone, UDate time, UChar* & result, int32_t & resultLength, UErrorCode& status) {
111 resultLength = s.length();
112 result = (UChar*)uprv_malloc(resultLength);
113 memcpy(result,s.getBuffer(),resultLength);