Home
last modified time | relevance | path

Searched refs:suffix_length (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/test/
Dbit_stream.cpp58 const size_t suffix_length = str.length() % word_size; in StreamToBuffer() local
59 if (suffix_length != 0) { in StreamToBuffer()
61 std::bitset<sizeof(T) * 8>(str, 0, suffix_length).to_ullong())); in StreamToBuffer()
/external/deqp-deps/SPIRV-Tools/test/
Dbit_stream.cpp58 const size_t suffix_length = str.length() % word_size; in StreamToBuffer() local
59 if (suffix_length != 0) { in StreamToBuffer()
61 std::bitset<sizeof(T) * 8>(str, 0, suffix_length).to_ullong())); in StreamToBuffer()
/external/v8/src/
Dd8.cc2431 size_t suffix_length = strlen(suffix); in ends_with() local
2432 if (suffix_length <= input_length) { in ends_with()
2433 return strcmp(input + input_length - suffix_length, suffix) == 0; in ends_with()