Home
last modified time | relevance | path

Searched refs:other_len (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/core/fxcrt/
Dbytestring.cpp316 size_t other_len = ptr ? strlen(ptr) : 0; in operator <() local
317 int result = memcmp(c_str(), ptr, std::min(len, other_len)); in operator <()
318 return result < 0 || (result == 0 && len < other_len); in operator <()
330 size_t other_len = other.GetLength(); in operator <() local
331 int result = memcmp(c_str(), other.c_str(), std::min(len, other_len)); in operator <()
332 return result < 0 || (result == 0 && len < other_len); in operator <()
Dwidestring.cpp515 size_t other_len = str.GetLength(); in operator <() local
517 wmemcmp(c_str(), str.unterminated_c_str(), std::min(len, other_len)); in operator <()
518 return result < 0 || (result == 0 && len < other_len); in operator <()
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
Djsoncpp.cpp2655 unsigned other_len = other.storage_.length_; in operator <() local
2656 unsigned min_len = std::min(this_len, other_len); in operator <()
2660 return (this_len < other_len); in operator <()
2668 unsigned other_len = other.storage_.length_; in operator ==() local
2669 if (this_len != other_len) return false; in operator ==()
2901 unsigned other_len; in operator <() local
2905 decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str); in operator <()
2906 unsigned min_len = std::min(this_len, other_len); in operator <()
2910 return (this_len < other_len); in operator <()
2956 unsigned other_len; in operator ==() local
[all …]
/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
Djsoncpp.cpp2655 unsigned other_len = other.storage_.length_; in operator <() local
2656 unsigned min_len = std::min(this_len, other_len); in operator <()
2660 return (this_len < other_len); in operator <()
2668 unsigned other_len = other.storage_.length_; in operator ==() local
2669 if (this_len != other_len) return false; in operator ==()
2901 unsigned other_len; in operator <() local
2905 decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str); in operator <()
2906 unsigned min_len = std::min(this_len, other_len); in operator <()
2910 return (this_len < other_len); in operator <()
2956 unsigned other_len; in operator ==() local
[all …]
/external/protobuf/conformance/third_party/jsoncpp/
Djsoncpp.cpp2679 unsigned other_len = other.storage_.length_; in operator <() local
2680 unsigned min_len = std::min(this_len, other_len); in operator <()
2684 return (this_len < other_len); in operator <()
2692 unsigned other_len = other.storage_.length_; in operator ==() local
2693 if (this_len != other_len) return false; in operator ==()
2933 unsigned other_len; in operator <() local
2937 decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str); in operator <()
2938 unsigned min_len = std::min(this_len, other_len); in operator <()
2942 return (this_len < other_len); in operator <()
2988 unsigned other_len; in operator ==() local
[all …]
/external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/
Djsoncpp.cpp2655 unsigned other_len = other.storage_.length_; in operator <() local
2656 unsigned min_len = std::min(this_len, other_len); in operator <()
2660 return (this_len < other_len); in operator <()
2668 unsigned other_len = other.storage_.length_; in operator ==() local
2669 if (this_len != other_len) return false; in operator ==()
2901 unsigned other_len; in operator <() local
2905 decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str); in operator <()
2906 unsigned min_len = std::min(this_len, other_len); in operator <()
2910 return (this_len < other_len); in operator <()
2956 unsigned other_len; in operator ==() local
[all …]
/external/scapy/scapy/layers/
Ddns.py711 StrLenField("other_data", "", length_from=lambda pkt: pkt.other_len)
/external/python/cpython2/Lib/
Ddecimal.py5484 other_len = len(str(other.int))
5486 if other_len + other.exp - 1 < exp:
/external/python/cpython3/Lib/
D_pydecimal.py5656 other_len = len(str(other.int))
5658 if other_len + other.exp - 1 < exp: