HomeSort by relevance Sort by last modified time
    Searched refs:equal (Results 151 - 175 of 2040) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
bug449.go 8 // runtime.equal failed to take padding between arguments and
15 // underlying []byte will make gc emit calls to runtime.equal,
17 // be correct (in the sense that it no longer tests runtime.equal).
  /external/guava/guava/src/com/google/common/cache/
CacheBuilderSpec.java 65 * <p>Whitespace before and after commas and equal signs is ignored. Keys may
225 * a {@code CacheBuilderSpec} equal to this instance.
264 return Objects.equal(initialCapacity, that.initialCapacity)
265 && Objects.equal(maximumSize, that.maximumSize)
266 && Objects.equal(maximumWeight, that.maximumWeight)
267 && Objects.equal(concurrencyLevel, that.concurrencyLevel)
268 && Objects.equal(keyStrength, that.keyStrength)
269 && Objects.equal(valueStrength, that.valueStrength)
270 && Objects.equal(recordStats, that.recordStats)
271 && Objects.equal(durationInNanos(writeExpirationDuration, writeExpirationTimeUnit)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/build/
BuildInfo.java 459 return Objects.equal(mBuildAttributes, other.mBuildAttributes) &&
460 Objects.equal(mBuildBranch, other.mBuildBranch) &&
461 Objects.equal(mBuildFlavor, other.mBuildFlavor) &&
462 Objects.equal(mBuildId, other.mBuildId) &&
463 Objects.equal(mBuildTargetName, other.mBuildTargetName) &&
464 Objects.equal(mTestTag, other.mTestTag) &&
465 Objects.equal(mDeviceSerial, other.mDeviceSerial);
  /build/make/core/
math.mk 127 # first argument is greater than or equal to second argument
130 define _int_greater-or-equal
139 $(if $(call _int_greater-or-equal,$(call _int_encode,$(1)),$(call _int_encode,$(2))),\
150 $(if $(call _int_greater-or-equal,$(call _int_encode,$(1)),$(call _int_encode,$(2))), \
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Dispatcher.java 119 if (Util.equal(tag, call.tag())) {
125 if (Util.equal(tag, call.tag())) {
133 if (Util.equal(tag, call.tag())) {
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
consuming_buffers.hpp 97 return a.equal(b);
104 return !a.equal(b);
125 bool equal(const consuming_buffers_iterator& other) const function in class:asio::detail::consuming_buffers_iterator
  /external/tensorflow/tensorflow/python/keras/_impl/keras/
metrics.py 45 return K.mean(K.equal(y_true, K.round(y_pred)), axis=-1)
51 K.equal(K.argmax(y_true, axis=-1), K.argmax(y_pred, axis=-1)), K.floatx())
56 K.equal(
  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
MockUtils.java 47 return Objects.equal(((UserHandle) item).getIdentifier(), userId);
63 return Objects.equal(((Intent) item).getComponent(), component);
79 return Objects.equal(((Intent) item).getAction(), action);
  /hardware/intel/common/libmix/mix_audio/src/
mixacpwma.c 55 mixparams_class->equal = (MixParamsEqualFunction)mix_acp_wma_equal;
145 * @returns: boolean indicates if instance are equal.
163 if (klass->equal)
164 ret = klass->equal(first, second);
  /hardware/intel/common/libmix/mix_common/src/
mixparams.c 73 klass->equal = mix_params_equal_default;
232 if (klass->equal)
234 return klass->equal(first, second);
  /hardware/intel/common/libmix/mix_video/src/
mixbuffer.c 58 mixparams_class->equal = (MixParamsEqualFunction) mix_buffer_equal;
145 * @returns: boolean indicates if instance are equal.
163 // members within this scope equal. chaining up.
165 if (klass->equal)
166 ret = klass->equal(first, second);
mixdisplayx11.c 49 mixdisplay_class->equal = (MixDisplayEqualFunction) mix_displayx11_equal;
135 * @returns: boolean indicates if instance are equal.
155 // members within this scope equal. chaining up.
157 if (klass->equal)
158 ret = parent_class->equal(first, second);
mixvideoconfigparamsdec_mp42.c 71 this_root_class->equal
172 * @returns: boolean indicates if instance are equal.
190 // members within this scope equal. chaining up.
192 if (klass->equal) {
193 ret = klass->equal(first, second);
mixvideodecodeparams.c 53 mixparams_class->equal
136 * @returns: boolean indicates if instance are equal.
154 // members within this scope equal. chaining up.
156 if (klass->equal)
157 ret = parent_class->equal(first, second);
mixvideoencodeparams.c 53 mixparams_class->equal
136 * @returns: boolean indicates if instance are equal.
154 // members within this scope equal. chaining up.
156 if (klass->equal)
157 ret = parent_class->equal(first, second);
mixvideoinitparams.c 52 mixparams_class->equal = (MixParamsEqualFunction) mix_videoinitparams_equal;
141 * @returns: boolean indicates if instance are equal.
163 // members within this scope equal. chaining up.
165 if (klass->equal)
166 ret = parent_class->equal(first, second);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/algorithms/alg.random.sample/
sample.pass.cpp 72 LIBCPP_ASSERT(std::equal(oa, oa + os, oa1));
77 LIBCPP_ASSERT(std::equal(oa, oa + os, oa2));
127 assert(std::equal(oa, end.base(), oa1));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
algobase.h 49 // NB: equal and lexicographical_compare require mismatch.
128 equal(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
130 { return _GLIBCXX_STD_A::equal(__begin1, __end1, __begin2); }
135 equal(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
137 { return _GLIBCXX_STD_A::equal(__begin1, __end1, __begin2, __pred); }
142 equal(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2) function in namespace:__parallel
151 equal(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
algobase.h 49 // NB: equal and lexicographical_compare require mismatch.
128 equal(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
130 { return _GLIBCXX_STD_A::equal(__begin1, __end1, __begin2); }
135 equal(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
137 { return _GLIBCXX_STD_A::equal(__begin1, __end1, __begin2, __pred); }
142 equal(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2) function in namespace:__parallel
151 equal(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
  /prebuilts/go/darwin-x86/src/go/token/
serialize_test.go 14 // equal returns nil if p and q describe the same file set;
16 func equal(p, q *FileSet) error { func
88 if err := equal(p, q); err != nil {
  /prebuilts/go/linux-x86/src/go/token/
serialize_test.go 14 // equal returns nil if p and q describe the same file set;
16 func equal(p, q *FileSet) error { func
88 if err := equal(p, q); err != nil {
  /art/runtime/interpreter/mterp/arm/
op_cmpg_double.S 32 moveq r0, #0 @ (equal) r1<- 0
op_cmpg_float.S 32 moveq r0, #0 @ (equal) r1<- 0
op_cmpl_double.S 32 moveq r0, #0 @ (equal) r1<- 0
op_cmpl_float.S 32 moveq r0, #0 @ (equal) r1<- 0

Completed in 712 milliseconds

1 2 3 4 5 67 8 91011>>