Searched refs:utf_codeLength (Results 1 – 7 of 7) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | utf.h | 110 int utf_codeLength(int sz, dchar_t c);
|
H A D | utf.c | 137 int utf_codeLength(int sz, dchar_t c) in utf_codeLength() function
|
H A D | constfold.c | 1596 size_t len = (t->ty == tn->ty) ? 1 : utf_codeLength(sz, (dchar_t)v); in Cat() 1733 len += homoConcat ? 1 : utf_codeLength(sz, (dchar_t)v); in Cat()
|
H A D | expression.c | 3541 result += utf_codeLength(encSize, c); in numberOfCodeUnits() 3553 result += utf_codeLength(encSize, c); in numberOfCodeUnits() 3562 result += utf_codeLength(encSize, c); in numberOfCodeUnits()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/ |
H A D | utf.d | 330 int utf_codeLength(int sz, dchar c) in utf_codeLength() function
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | constfold.d | 1527 const len = (t.ty == tn.ty) ? 1 : utf_codeLength(sz, cast(dchar)v); in Cat() 1649 const len = es1.len + (homoConcat ? 1 : utf_codeLength(sz, cast(dchar)v)); in Cat()
|
H A D | expression.d | 2532 result += utf_codeLength(encSize, c); 2544 result += utf_codeLength(encSize, c); 2551 result += utf_codeLength(encSize, dstring[u]);
|