Searched refs:compare (Results 226 - 250 of 419) sorted by relevance

1234567891011>>

/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/27_io/
H A Dios_init.cc63 compare(const char_type* __s1, const char_type* __s2, size_t __n) function in struct:std::char_traits
146 compare(const char_type* __s1, const char_type* __s2, size_t __n) function in struct:std::char_traits
/openbsd-current/usr.bin/dc/
H A Dbcode.c110 static void compare(enum bcode_compare);
1316 compare(BCODE_EQUAL);
1379 compare(BCODE_LESS);
1387 compare(BCODE_NOT_LESS);
1390 compare(BCODE_NOT_GREATER);
1393 compare(BCODE_NOT_EQUAL);
1405 compare(BCODE_GREATER);
1444 compare(enum bcode_compare type) function
/openbsd-current/regress/usr.sbin/syslogd/
H A Dfuncs.pl385 sub compare($$) { subroutine
400 die "bad compare operator: $_";
412 compare(@matches, $num)
/openbsd-current/gnu/llvm/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp218 return FCmp.compare() < 0;
350 int Res1 = FunctionComparator(F1, F2, &GlobalNumbers).compare();
351 int Res2 = FunctionComparator(F2, F1, &GlobalNumbers).compare();
371 int Res3 = FunctionComparator(F1, F3, &GlobalNumbers).compare();
372 int Res4 = FunctionComparator(F2, F3, &GlobalNumbers).compare();
885 assert(FunctionComparator(F, G, &GlobalNumbers).compare() == 0 &&
/openbsd-current/gnu/gcc/gcc/
H A Dtree-ssa-loop-niter.c373 /* And then we can compute iv0->base - diff, and compare it with
1513 tree compare; local
1521 compare = fold_build2 (GE_EXPR,
1523 compare = tree_simplify_using_condition_1 (cond, compare);
1525 return nonzero_p (compare);
1533 tree compare = fold_build2 (GE_EXPR, boolean_type_node, a, b); local
1535 if (nonzero_p (compare))
1541 compare = tree_simplify_using_condition_1 (cond, compare);
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/DB_File/t/
H A Ddb-btree.t146 ok(7, ! defined $dbh->{compare}) ;
536 $dbh1->{compare} = sub {
541 $dbh2->{compare} = sub { $_[0] cmp $_[1] } ;
544 $dbh3->{compare} = sub { length $_[0] <=> length $_[1] } ;
936 $DB_BTREE->{'compare'} = \&Compare ;
962 delete $DB_BTREE->{'compare'} ;
1353 # now an error to pass 'compare' a non-code reference
1356 eval { $dbh->{compare} = 2 };
1357 ok(162, $@ =~ /^Key 'compare' not associated with a code reference at/);
1370 # $dbh->{compare}
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h319 return cast<X>(E1)->compare(cast<X>(E2), *self());
341 bool compare(const SExpr *E1, const SExpr* E2) { function in class:clang::threadSafety::til::EqualsComparator
357 return Eq.compare(E1, E2);
375 bool compare(const SExpr *E1, const SExpr *E2) { function in class:clang::threadSafety::til::MatchComparator
395 return Matcher.compare(E1, E2);
/openbsd-current/regress/lib/libc/db/
H A Ddbtest.c51 void compare(DBT *, DBT *);
167 case 'c': /* compare */
243 compare(&keydata, &data);
333 compare(db1, db2) function
340 printf("compare failed: key->data len %lu != data len %lu\n",
346 printf("compare failed at offset %ld\n",
/openbsd-current/usr.bin/xinstall/
H A Dxinstall.c72 int compare(int, const char *, off_t, int, const char *, off_t);
249 /* Only compare against regular files. */
255 /* File does not exist so silently ignore compare flag. */
301 if (compare(temp_fd, tempfile, temp_sb.st_size, to_fd,
478 * compare --
479 * compare two files; non-zero means files differ
482 compare(int from_fd, const char *from_name, off_t from_len, int to_fd, function
/openbsd-current/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVCallLowering.cpp181 if (ArgAttribute->getString().compare("read_only") == 0)
183 if (ArgAttribute->getString().compare("write_only") == 0)
192 if (ArgAttribute && ArgAttribute->getString().compare("volatile") == 0)
/openbsd-current/gnu/usr.bin/perl/dist/Test/lib/
H A DTest.pm321 or if I<arg2> is a regex that matches I<arg1>, or if they compare equal
402 my $compare = 0;
410 $compare = 1;
444 'context' => $context, 'compare' => $compare,
465 if (!$$detail{compare}) {
854 to compare the I<size> of the two arrays. But don't be fooled into
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DContainerModeling.cpp235 // to compare them to the begin and the end of the container.
938 !compare(State, Pos.getOffset(), Offset, Opc);
950 return compare(State, Pos.getOffset(), Offset, Opc);
964 return compare(State, Pos.getOffset(), Offset1, Opc1) &&
965 compare(State, Pos.getOffset(), Offset2, Opc2);
992 !compare(State, Pos.getOffset(), Offset, Opc);
1007 return compare(State, Pos.getOffset(), CondSym, Opc);
H A DDebugCheckers.cpp264 return (*LHS)->getKey().compare((*RHS)->getKey());
/openbsd-current/gnu/usr.bin/gcc/gcc/doc/
H A Dmakefile.texi62 results, which @samp{make compare} can check. Each step of this process
97 @item compare
/openbsd-current/gnu/usr.bin/perl/regen/
H A Dcharset_translations.pl213 my $compare;
217 $compare = $ebcdic_translations{$charset}[$ascii_ord];
222 $return .= "'$char' == $compare";
/openbsd-current/gnu/usr.bin/perl/cpan/DB_File/
H A DDB_File.xs353 #define db_BT_compare btree.compare
411 SV * compare ;
661 count = perl_call_sv(CurrentDB->compare, G_SCALAR);
667 croak ("DB_File btree_compare: expected 1 return value from compare sub, got %d\n", count) ;
925 printf (" compare = %s\n",
1032 RETVAL->hash = RETVAL->compare = RETVAL->prefix = NULL ;
1096 svp = hv_fetch(action, "compare", 7, FALSE);
1100 RETVAL->compare = newSVsv(*svp) ;
1303 RETVAL->hash = RETVAL->compare = RETVAL->prefix = NULL ;
1379 svp = hv_fetch(action, "compare",
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp86 !method_decl->getSelector().getAsString().compare("$__lldb_expr:")) {
93 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) {
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DAPSInt.h326 return I1.IsUnsigned ? I1.compare(I2) : I1.compareSigned(I2);
335 // unsigned compare if both are positive.
346 return I1.compare(I2);
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp243 if (!abi.compare("n64"))
245 else if (!abi.compare("o32"))
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp2089 if (key.compare("metype") == 0) {
2092 } else if (key.compare("medata") == 0) {
2097 } else if (key.compare("thread") == 0) {
2106 } else if (key.compare("threads") == 0) {
2110 } else if (key.compare("thread-pcs") == 0) {
2122 } else if (key.compare("jstopinfo") == 0) {
2131 } else if (key.compare("hexname") == 0) {
2136 } else if (key.compare("name") == 0) {
2138 } else if (key.compare("qaddr") == 0) {
2140 } else if (key.compare("dispatch_queue_
[all...]
/openbsd-current/gnu/usr.sbin/mkhybrid/src/libhfs_iso/
H A Dinternal.h315 int (*compare)(unsigned char *, unsigned char *); member in struct:_btree_
/openbsd-current/lib/libc/arch/mips64/string/
H A Dbcopy.S61 xor v0, a0, a1 # compare low two bits of addresses
/openbsd-current/usr.bin/vi/ex/
H A Dex_tag.c38 static int compare(char *, char *, char *);
1194 if (compare(string, p, back) == GREATER)
1219 switch (compare(string, front, back)) {
1247 compare(char *s1, char *s2, char *back) function
/openbsd-current/usr.sbin/pkg_add/OpenBSD/
H A DPackageLocation.pm72 my $r = $s1->compare($s2, $state);
/openbsd-current/usr.bin/tmux/
H A DMakefile136 CDIAGFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare

Completed in 488 milliseconds

1234567891011>>