| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/ |
| H A D | comp-types-4.m | 47 if (obj == i) ; /* { dg-warning "comparison between pointer and integer" } */ 48 if (i == obj) ; /* { dg-warning "comparison between pointer and integer" } */ 52 if (obj_c == i) ; /*{ dg-warning "comparison between pointer and integer" }*/ 53 if (i == obj_c) ; /*{ dg-warning "comparison between pointer and integer" }*/ 57 if (obj_p == i) ; /*{ dg-warning "comparison between pointer and integer" }*/ 58 if (i == obj_p) ; /*{ dg-warning "comparison between pointer and integer" }*/ 62 if (obj_C == i) ; /*{ dg-warning "comparison between pointer and integer" }*/ 63 if (i == obj_C) ; /*{ dg-warning "comparison between pointer and integer" }*/
|
| H A D | comp-types-1.m | 55 /* Any comparison involving an 'id' must be without warnings. */ 65 /* Any comparison between 'MyClass *' and anything which is not an 'id' 74 /* Any comparison between 'MyOtherClass *' (which implements
|
| /openbsd-src/gnu/lib/libiberty/src/ |
| H A D | splay-tree.c | 297 int comparison = 0; in splay_tree_insert() local 302 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_insert() 304 if (sp->root && comparison == 0) in splay_tree_insert() 325 else if (comparison < 0) in splay_tree_insert() 435 int comparison; in splay_tree_predecessor() local 445 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_predecessor() 448 if (comparison < 0) in splay_tree_predecessor() 466 int comparison; in splay_tree_successor() local 476 comparison = (*sp->comp)(sp->root->key, key); in splay_tree_successor() 479 if (comparison > 0) in splay_tree_successor()
|
| /openbsd-src/gnu/gcc/gcc/config/mmix/ |
| H A D | mmix-modes.def | 25 comparison insn and branch insn or conditional-set insn to use into the 29 /* The "usual" CC mode is used for a signed operands integer comparison, 33 /* The CC_UNS mode is for an unsigned operands integer comparison using 37 /* The CC_FP mode is for a non-equality floating-point comparison, using 42 /* The CC_FPEQ mode is for an equality floating-point comparison, using 47 /* The CC_FUN mode is for an ordering comparison, using the FUN or FUNE
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/mmix/ |
| H A D | mmix-modes.def | 25 comparison insn and branch insn or conditional-set insn to use into the 29 /* The "usual" CC mode is used for a signed operands integer comparison, 33 /* The CC_UNS mode is for an unsigned operands integer comparison using 37 /* The CC_FP mode is for an non-equality floating-point comparison, using 42 /* The CC_FPEQ mode is for an equality floating-point comparison, using 47 /* The CC_FUN mode is for an ordering comparison, using the FUN or FUNE
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | MergeFunctions.rst | 72 on the top-level. The second part describes the comparison procedure itself. 160 Every comparison is based either on the numbers or on the flags comparison. In 161 the *random-access* approach, we could use the same comparison algorithm. 162 During comparison, we exit once we find the difference, but here we might have 165 comparison, we should get the numbers sequence and then create the hash number. 180 exactly; this is a key point in fast functions comparison). 236 As mentioned before, the comparison routine consists of 237 "sub-comparison-routines", with each of them also consisting of 238 "sub-comparison-routines", and so on. Finally, it ends up with primitive 239 comparison. [all …]
|
| /openbsd-src/gnu/usr.bin/perl/t/lib/warnings/ |
| H A D | op | 72 "my %s" used in sort comparison 74 $[ used in comparison (did you mean $] ?) 471 Useless use of numeric comparison (<=>) in void context at - line 56. 1203 "my $a" used in sort comparison at - line 403. 1204 "my $a" used in sort comparison at - line 404. 1205 "my $a" used in sort comparison at - line 405. 1206 "my $a" used in sort comparison at - line 406. 1207 "my $a" used in sort comparison at - line 407. 1208 "my $a" used in sort comparison at - line 408. 1209 "my $a" used in sort comparison a [all...] |
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
| H A D | 20020720-1.x | 3 # (2) The "abs(x) < 0.0" comparison is split up in too many intermediate 7 # upon the FP comparison, and a 4th insn makes a conditional branch 9 # for example the comparison insn takes 0.0 as an operand, the
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/builtins/ |
| H A D | fp_compare_impl.inc | 1 //===-- lib/fp_compare_impl.inc - Floating-point comparison -------*- C -*-===// 11 // GCC uses long (at least for x86_64) as the return type of the comparison 25 // Otherwise the comparison functions return long. 69 // comparison to get the correct result. (This assumes a twos- or ones-
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | compare | 17 // [cmp.categories], comparison category types 22 // named comparison functions 30 // [cmp.common], common comparison category type 44 // [cmp.result], result of three-way comparison 53 // [cmp.alg], comparison algorithms
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/21_strings/ |
| H A D | gotw29a.txt | 31 comparison function is not part of the C standard, but 78 basic_string supplies useful comparison functions that 81 functions are built on top of character comparison 84 comparison functions named eq(), ne(), and lt() for 133 char_traits<char> to get its character comparison
|
| /openbsd-src/gnu/llvm/libcxx/docs/Status/ |
| H A D | SpaceshipPapers.csv | 8 `LWG3380 <https://wg21.link/LWG3380>`_,common_type and comparison categories,|Nothing To Do|, 9 `LWG3395 <https://wg21.link/LWG3395>`_,Definition for three-way comparison needs to be updated,|Not…
|
| /openbsd-src/gnu/gcc/libstdc++-v3/docs/html/21_strings/ |
| H A D | gotw29a.txt | 31 comparison function is not part of the C standard, but 78 basic_string supplies useful comparison functions that 81 functions are built on top of character comparison 84 comparison functions named eq(), ne(), and lt() for 137 char_traits<char> to get its character comparison
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | optabs.c | 3772 enum rtx_code comparison, int unsignedp, rtx label) in emit_cmp_and_jump_insn_1() argument 3774 rtx test = gen_rtx_fmt_ee (comparison, mode, x, y); in emit_cmp_and_jump_insn_1() 3805 emit_jump_insn (bcc_gen_fctn[(int) comparison] (label)); in emit_cmp_and_jump_insn_1() 3818 emit_jump_insn (bcc_gen_fctn[(int) comparison] (label)); in emit_cmp_and_jump_insn_1() 3850 emit_cmp_and_jump_insns (rtx x, rtx y, enum rtx_code comparison, rtx size, in emit_cmp_and_jump_insns() argument 3863 comparison = swap_condition (comparison); in emit_cmp_and_jump_insns() 3874 comparison = unsigned_condition (comparison); in emit_cmp_and_jump_insns() 3876 prepare_cmp_insn (&op0, &op1, &comparison, size, &mode, &unsignedp, in emit_cmp_and_jump_insns() 3878 emit_cmp_and_jump_insn_1 (op0, op1, mode, comparison, unsignedp, label); in emit_cmp_and_jump_insns() 3884 emit_cmp_insn (rtx x, rtx y, enum rtx_code comparison, rtx size, in emit_cmp_insn() argument [all …]
|
| /openbsd-src/usr.bin/make/ |
| H A D | dump.c | 65 sort_ohash(struct ohash *h, int (*comparison)(const void *, const void *)) in sort_ohash() 75 qsort(t, n, sizeof(void *), comparison); in sort_ohash()
|
| /openbsd-src/gnu/gcc/libmudflap/ |
| H A D | mf-runtime.c | 2321 int comparison; in mfsplay_tree_splay_helper() local 2328 comparison = ((key > n->key) ? 1 : ((key < n->key) ? -1 : 0)); in mfsplay_tree_splay_helper() 2330 if (comparison == 0) in mfsplay_tree_splay_helper() 2333 else if (comparison < 0) in mfsplay_tree_splay_helper() 2553 int comparison = 0; in mfsplay_tree_insert() local 2558 comparison = ((sp->root->key > key) ? 1 : in mfsplay_tree_insert() 2561 if (sp->root && comparison == 0) in mfsplay_tree_insert() 2578 else if (comparison < 0) in mfsplay_tree_insert() 2652 int comparison; in mfsplay_tree_predecessor() local 2660 comparison = ((sp->root->key > key) ? 1 : in mfsplay_tree_predecessor() [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/mips/ |
| H A D | t-iris5-as | 3 # add -save-temps to avoid comparison failure due to embedded temp file names
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | Iterator.cpp | 308 const auto comparison = in compare() local 311 assert(isa<DefinedSVal>(comparison) && in compare() 314 return !State->assume(comparison.castAs<DefinedSVal>(), false); in compare()
|
| /openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-shell/ |
| H A D | diff-r-error-2.txt | 1 # Create two directories for further comparison.
|
| H A D | diff-r-error-3.txt | 1 # Create two directories for further comparison.
|
| H A D | diff-r-error-4.txt | 1 # Create two directories for further comparison.
|
| H A D | diff-r-error-5.txt | 1 # Create two directories for further comparison.
|
| H A D | diff-r-error-0.txt | 1 # Create two directories for further comparison.
|
| H A D | diff-r-error-6.txt | 1 # Create two directories for further comparison.
|
| /openbsd-src/gnu/usr.bin/cvs/diff/ |
| H A D | diagmeet.note | 1 Here is a comparison matrix which shows a case in which
|