HomeSort by relevance Sort by last modified time
    Searched refs:sourcelength (Results 1 - 3 of 3) sorted by null

  /external/icu/icu4c/source/common/unicode/
unorm.h 201 * @param sourceLength The length of source, or -1 if NUL-terminated.
214 unorm_normalize(const UChar *source, int32_t sourceLength,
231 * @param sourcelength length of source to test, or -1 if NUL-terminated
240 unorm_quickCheck(const UChar *source, int32_t sourcelength,
  /external/icu/libandroidicu/include/unicode/
unorm.h 201 * @param sourceLength The length of source, or -1 if NUL-terminated.
214 unorm_normalize(const UChar *source, int32_t sourceLength,
231 * @param sourcelength length of source to test, or -1 if NUL-terminated
240 unorm_quickCheck(const UChar *source, int32_t sourcelength,
  /external/deqp/external/vulkancts/framework/vulkan/
vkPrograms.cpp 426 deInt32 sourcelength; local
453 if (ok) ok = fread(&sourcelength, 1, 4, file) == 4;
454 if (ok && sourcelength > 0)
456 source = new char[sourcelength + 1];
457 ok = fread(source, 1, sourcelength, file) == (size_t)sourcelength;
458 source[sourcelength] = 0;
    [all...]

Completed in 104 milliseconds