/external/jsoncpp/src/lib_json/ |
D | json_value.cpp | 301 unsigned other_len = other.storage_.length_; in operator <() local 302 unsigned min_len = std::min<unsigned>(this_len, other_len); in operator <() 309 return (this_len < other_len); in operator <() 318 unsigned other_len = other.storage_.length_; in operator ==() local 319 if (this_len != other_len) in operator ==() 510 unsigned other_len; in operator <() local 515 decodePrefixedString(other.isAllocated(), other.value_.string_, &other_len, in operator <() 517 unsigned min_len = std::min<unsigned>(this_len, other_len); in operator <() 524 return (this_len < other_len); in operator <() 565 unsigned other_len; in operator ==() local [all …]
|
/external/pdfium/core/fxcrt/ |
D | bytestring.cpp | 293 size_t other_len = ptr ? strlen(ptr) : 0; in operator <() local 294 int result = memcmp(c_str(), ptr, std::min(len, other_len)); in operator <() 295 return result < 0 || (result == 0 && len < other_len); in operator <() 307 size_t other_len = other.GetLength(); in operator <() local 308 int result = memcmp(c_str(), other.c_str(), std::min(len, other_len)); in operator <() 309 return result < 0 || (result == 0 && len < other_len); in operator <()
|
D | widestring.cpp | 492 size_t other_len = str.GetLength(); in operator <() local 494 wmemcmp(c_str(), str.unterminated_c_str(), std::min(len, other_len)); in operator <() 495 return result < 0 || (result == 0 && len < other_len); in operator <()
|
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/ |
D | jsoncpp.cpp | 2655 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/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/ |
D | jsoncpp.cpp | 2655 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/ |
D | jsoncpp.cpp | 2655 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/ |
D | jsoncpp.cpp | 2679 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/scapy/scapy/layers/ |
D | dns.py | 711 StrLenField("other_data", "", length_from=lambda pkt: pkt.other_len)
|
/external/python/cpython2/Lib/ |
D | decimal.py | 5484 other_len = len(str(other.int)) 5486 if other_len + other.exp - 1 < exp:
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 5658 other_len = len(str(other.int)) 5660 if other_len + other.exp - 1 < exp:
|