Searched refs:toLength (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/flang/runtime/ |
D | tools.cpp | 70 char *to, std::size_t toLength, const char *from) { in ToFortranDefaultCharacter() argument 72 std::memcpy(to, from, std::max(toLength, len)); in ToFortranDefaultCharacter() 73 if (len < toLength) { in ToFortranDefaultCharacter() 74 std::memset(to + len, ' ', toLength - len); in ToFortranDefaultCharacter()
|
D | tools.h | 35 char *to, std::size_t toLength, const char *from);
|
/external/icu/icu4c/source/common/ |
D | ucurr.cpp | 2117 int32_t toLength = 0; in ucurr_createCurrencyList() local 2118 const int32_t *toArray = ures_getIntVector(toRes, &toLength, &localStatus); in ucurr_createCurrencyList() 2319 int32_t toLength = 0; in ucurr_countCurrencies() local 2321 const int32_t *toArray = ures_getIntVector(toRes, &toLength, &localStatus); in ucurr_countCurrencies() 2442 int32_t toLength = 0; in ucurr_forLocaleAndDate() local 2444 const int32_t *toArray = ures_getIntVector(toRes, &toLength, &localStatus); in ucurr_forLocaleAndDate()
|
/external/deqp/modules/gles2/scripts/ |
D | genutil.py | 110 def repeatToLength(lst, toLength): argument 111 return (toLength / len(lst)) * lst + lst[: toLength % len(lst)]
|
/external/deqp/modules/gles3/scripts/ |
D | genutil.py | 110 def repeatToLength(lst, toLength): argument 111 return (toLength / len(lst)) * lst + lst[: toLength % len(lst)]
|
/external/deqp/modules/gles31/scripts/ |
D | genutil.py | 110 def repeatToLength(lst, toLength): argument 111 return (toLength / len(lst)) * lst + lst[: toLength % len(lst)]
|