Home
last modified time | relevance | path

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

/external/valgrind/none/tests/linux/
Dmremap2.c45 char* setup ( void* other_stuff, int other_len ) in setup() argument
56 unmap_and_check(other_stuff, other_len); in setup()
/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/python/cpython2/Lib/
Ddecimal.py5484 other_len = len(str(other.int))
5486 if other_len + other.exp - 1 < exp: