HomeSort by relevance Sort by last modified time
    Searched refs:comparison (Results 1 - 25 of 357) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smali/util/src/main/java/org/jf/util/
LinearSearch.java 53 int comparison = comparator.compare(list.get(guess), key); local
54 if (comparison == 0) {
57 if (comparison < 0) {
60 comparison = comparator.compare(list.get(guess), key);
61 if (comparison == 0) {
64 if (comparison > 0) {
73 comparison = comparator.compare(list.get(guess), key);
74 if (comparison == 0) {
77 if (comparison < 0) {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
armv1.l 2 [^:]*:26: Warning: s suffix on comparison instruction is deprecated
3 [^:]*:29: Warning: s suffix on comparison instruction is deprecated
4 [^:]*:32: Warning: s suffix on comparison instruction is deprecated
5 [^:]*:35: Warning: s suffix on comparison instruction is deprecated
thumb32.l 2 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
3 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
4 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
5 [^;]*:450: Warning: s suffix on comparison instruction is deprecated
6 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
7 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
8 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
9 [^;]*:451: Warning: s suffix on comparison instruction is deprecated
10 [^;]*:452: Warning: s suffix on comparison instruction is deprecated
11 [^;]*:452: Warning: s suffix on comparison instruction is deprecate
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
expected_comparison_errors.l 11 .*:10: Error: Bad register in comparison. Input text was P0.
12 .*:11: Error: Bad register in comparison.
13 .*:12: Error: Bad register in comparison.
14 .*:13: Error: Bad register in comparison. Input text was R0.
15 .*:14: Error: Bad register in comparison.
16 .*:15: Error: Bad register in comparison.
17 .*:16: Error: Bad register in comparison.
18 .*:17: Error: Bad register in comparison. Input text was I0.
19 .*:18: Error: Bad register in comparison.
20 .*:19: Error: Bad register in comparison
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Select.java 74 int comparison = comp.compare(items[i], items[lowestIdx]); local
75 if (comparison < 0) {
86 int comparison = comp.compare(items[i], items[highestIdx]); local
87 if (comparison > 0) {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
AppItem.java 67 int comparison = Integer.compare(category, another.category); local
68 if (comparison == 0) {
69 comparison = Long.compare(another.total, total);
71 return comparison;
  /external/clang/test/SemaCXX/
warn-memsize-comparison.cpp 20 expected-warning{{size argument in 'memset' call is a comparison}} \
26 expected-warning{{size argument in 'memmove' call is a comparison}} \
32 expected-warning{{size argument in 'memcpy' call is a comparison}} \
38 expected-warning{{size argument in 'memcmp' call is a comparison}} \
44 expected-warning{{size argument in 'strncmp' call is a comparison}} \
50 expected-warning{{size argument in 'strncasecmp' call is a comparison}} \
56 expected-warning{{size argument in 'strncpy' call is a comparison}} \
62 expected-warning{{size argument in 'strncat' call is a comparison}} \
68 expected-warning{{size argument in 'strndup' call is a comparison}} \
74 expected-warning{{size argument in 'strlcpy' call is a comparison}} \
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_has_key.py 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
100 new = pytree.Node(syms.comparison, (arg, n_op, before))
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_has_key.py 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
100 new = pytree.Node(syms.comparison, (arg, n_op, before))
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
100 new = pytree.Node(syms.comparison, (arg, n_op, before))
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 88 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
100 new = pytree.Node(syms.comparison, (arg, n_op, before))
104 if node.parent.type in (syms.comparison, syms.expr, syms.xor_expr,
  /external/skia/tools/
skdiff_image.cpp 103 "\n -L: first occurrence label for base, second occurrence label for comparison."
108 "\n comparisonFile: comparison image file"
139 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
140 failOnStatusType[base][comparison] = false;
172 SkDebugf("failonstatus missing comparison status.\n");
181 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
    [all...]
skdiff_main.cpp 77 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
78 fStatusOfType[base][comparison].deleteAll();
115 for (int comparison = 0; comparison < DiffResource::kStatusCount; ++comparison) {
116 Status comparisonStatus = static_cast<Status>(comparison);
117 const FileArray& fileArray = fStatusOfType[base][comparison];
119 if (failOnStatusType[base][comparison]) {
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ComparableConstant.java 32 * entry after it has been sorted. The comparison is primarily based on the
257 int comparison;
259 (comparison = string1a.compareTo(string2a)) != 0 ? comparison :
270 int comparison;
272 (comparison = string1a.compareTo(string2a)) != 0 ? comparison :
273 (comparison = string1b.compareTo(string2b)) != 0 ? comparison :
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
AllocationInfo.java 331 Element comparison; local
334 comparison = Element.YUV(mRS);
337 comparison = Element.RGBA_8888(mRS);
340 comparison = Element.U8_3(mRS);
343 comparison = Element.U8_4(mRS);
347 comparison = null;
350 return mElement.equals(comparison);
  /libcore/ojluni/src/main/java/java/lang/reflect/
Method.java 70 int comparison = a.getName().compareTo(b.getName());
71 if (comparison == 0) {
72 comparison = a.compareParameters(b.getParameterTypes());
73 if (comparison == 0) {
78 comparison = 0;
80 comparison = aReturnType.getName().compareTo(bReturnType.getName());
84 return comparison;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
TypeListPool.java 132 int comparison = type.toString().compareTo(other.next().toString()); local
133 if (comparison != 0) {
134 return comparison;
  /libcore/luni/src/main/native/
java_lang_StringToReal.cpp 268 int32_t k, comparison, comparison2; local
344 comparison = compareHighPrecision (x, xLength, y, yLength);
345 if (comparison > 0)
352 else if (comparison)
375 if (comparison < 0 && m == DOUBLE_NORMAL_MASK
397 if (comparison < 0 && m == DOUBLE_NORMAL_MASK)
406 else if (comparison < 0)
417 else if (comparison < 0)
695 int32_t k, comparison, comparison2; local
771 comparison = compareHighPrecision (x, xLength, y, yLength)
    [all...]
  /external/v8/test/cctest/compiler/
test-run-calls-to-external-references.cc 16 ExternalReference ref, void (*comparison)(P*),
26 comparison(&comparison_param);
33 ExternalReference ref, void (*comparison)(P1*, P2*),
45 comparison(&comparison_param1, &comparison_param2);
53 ExternalReference ref, R (*comparison)(P*),
61 CHECK_EQ(comparison(&comparison_param), m->Call());
68 ExternalReference ref, R (*comparison)(P1*, P2*),
78 CHECK_EQ(comparison(&comparison_param1, &comparison_param2), m->Call());
  /toolchain/binutils/binutils-2.25/libiberty/
splay-tree.c 364 int comparison = 0; local
369 comparison = (*sp->comp)(sp->root->key, key);
371 if (sp->root && comparison == 0)
392 else if (comparison < 0)
502 int comparison; local
512 comparison = (*sp->comp)(sp->root->key, key);
515 if (comparison < 0)
533 int comparison; local
543 comparison = (*sp->comp)(sp->root->key, key);
546 if (comparison > 0
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
CachedBluetoothDevice.java 640 // This comparison uses non-final fields so the sort order may change
645 int comparison = (another.isConnected() ? 1 : 0) - (isConnected() ? 1 : 0); local
646 if (comparison != 0) return comparison;
649 comparison = (another.getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0) -
651 if (comparison != 0) return comparison;
654 comparison = (another.mVisible ? 1 : 0) - (mVisible ? 1 : 0);
655 if (comparison != 0) return comparison;
    [all...]
  /external/webrtc/webrtc/video/
video_quality_test.cc 390 FrameComparison comparison; local
392 if (!PopComparison(&comparison)) {
393 // Wait until new comparison task is available, or test is done.
403 PerformFrameComparison(comparison);
417 bool PopComparison(FrameComparison* comparison) {
427 *comparison = comparisons_.front();
434 // Increment counter for number of frames received for comparison.
476 void PerformFrameComparison(const FrameComparison& comparison) {
478 double psnr = I420PSNR(&comparison.reference, &comparison.render)
    [all...]
  /art/runtime/interpreter/mterp/mips/
bincmp.S 3 * fragment that specifies the *reverse* comparison to perform, e.g.
13 b${revcmp} a2, a3, 1f # branch to 1 if comparison failed
zcmp.S 3 * fragment that specifies the *reverse* comparison to perform, e.g.
12 b${revcmp} a2, zero, 1f # branch to 1 if comparison failed
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/cloudwatch/
metric.py 107 def create_alarm(self, name, comparison, threshold,
130 self.namespace, statistic, comparison,

Completed in 1077 milliseconds

1 2 3 4 5 6 7 8 91011>>