Home
last modified time | relevance | path

Searched refs:other_size (Results 1 – 7 of 7) sorted by relevance

/external/libaom/libaom/av1/common/
Dscale.c43 static int get_fixed_point_scale_factor(int other_size, int this_size) { in get_fixed_point_scale_factor() argument
48 return ((other_size << REF_SCALE_SHIFT) + this_size / 2) / this_size; in get_fixed_point_scale_factor()
/external/libvpx/libvpx/vp9/common/
Dvp9_scale.c29 static int get_fixed_point_scale_factor(int other_size, int this_size) { in get_fixed_point_scale_factor() argument
34 return (other_size << REF_SCALE_SHIFT) / this_size; in get_fixed_point_scale_factor()
/external/protobuf/src/google/protobuf/
Dreflection_internal.h320 int other_size = other_mutator->Size(other_data); in Swap() local
321 for (int i = 0; i < other_size; ++i) { in Swap()
Drepeated_field.h1484 int other_size = other.current_size_;
1486 void** new_elements = InternalExtend(other_size);
1489 other_size, allocated_elems);
1490 current_size_ += other_size;
/external/python/cpython2/Objects/
Dbytearrayobject.c1042 Py_ssize_t self_size, other_size; in bytearray_richcompare() local
1076 other_size = _getbuffer(other, &other_bytes); in bytearray_richcompare()
1077 if (other_size < 0) { in bytearray_richcompare()
1084 if (self_size != other_size && (op == Py_EQ || op == Py_NE)) { in bytearray_richcompare()
1090 if (other_size < minsize) in bytearray_richcompare()
1091 minsize = other_size; in bytearray_richcompare()
1097 if (self_size < other_size) in bytearray_richcompare()
1099 else if (self_size > other_size) in bytearray_richcompare()
/external/python/cpython3/Objects/
Dbytearrayobject.c1012 Py_ssize_t self_size, other_size; in bytearray_richcompare() local
1045 other_size = other_bytes.len; in bytearray_richcompare()
1047 if (self_size != other_size && (op == Py_EQ || op == Py_NE)) { in bytearray_richcompare()
1055 Py_MIN(self_size, other_size)); in bytearray_richcompare()
1065 Py_RETURN_RICHCOMPARE(self_size, other_size, op); in bytearray_richcompare()
Dsetobject.c1556 Py_ssize_t pos = 0, other_size; in set_difference() local
1564 other_size = PySet_GET_SIZE(other); in set_difference()
1567 other_size = PyDict_GET_SIZE(other); in set_difference()
1575 if ((PySet_GET_SIZE(so) >> 2) > other_size) { in set_difference()