Searched refs:lsn1 (Results 1 - 19 of 19) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DLogSequenceNumber.java68 equal, 1 if lsn0 is greater than lsn1, and -1 if lsn0 is less than
69 lsn1.
71 @param lsn1
78 0 if the two LogSequenceNumber objects are equal, 1 if lsn1 is
79 greater than lsn2, and -1 if lsn1 is less than lsn2.
81 public static int compare(LogSequenceNumber lsn1, LogSequenceNumber lsn2) { argument
82 return DbEnv.log_compare(lsn1, lsn2);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/log/
H A Dlog_compare.c21 log_compare(lsn0, lsn1)
22 const DB_LSN *lsn0, *lsn1;
24 return (LOG_COMPARE(lsn0, lsn1));
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/xfs/
H A Dxfs_log.h33 static inline xfs_lsn_t _lsn_cmp(xfs_lsn_t lsn1, xfs_lsn_t lsn2) argument
35 if (CYCLE_LSN(lsn1) != CYCLE_LSN(lsn2))
36 return (CYCLE_LSN(lsn1)<CYCLE_LSN(lsn2))? -999 : 999;
38 if (BLOCK_LSN(lsn1) != BLOCK_LSN(lsn2))
39 return (BLOCK_LSN(lsn1)<BLOCK_LSN(lsn2))? -999 : 999;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_brew/
H A Ddb_int.h801 #define LOG_COMPARE(lsn0, lsn1) \
802 ((lsn0)->file != (lsn1)->file ? \
803 ((lsn0)->file < (lsn1)->file ? -1 : 1) : \
804 ((lsn0)->offset != (lsn1)->offset ? \
805 ((lsn0)->offset < (lsn1)->offset ? -1 : 1) : 0))
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_s60/
H A Ddb_int.h800 #define LOG_COMPARE(lsn0, lsn1) \
801 ((lsn0)->file != (lsn1)->file ? \
802 ((lsn0)->file < (lsn1)->file ? -1 : 1) : \
803 ((lsn0)->offset != (lsn1)->offset ? \
804 ((lsn0)->offset < (lsn1)->offset ? -1 : 1) : 0))
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_unix/
H A Ddb_int.h799 #define LOG_COMPARE(lsn0, lsn1) \
800 ((lsn0)->file != (lsn1)->file ? \
801 ((lsn0)->file < (lsn1)->file ? -1 : 1) : \
802 ((lsn0)->offset != (lsn1)->offset ? \
803 ((lsn0)->offset < (lsn1)->offset ? -1 : 1) : 0))
H A Ddb_cxx.h540 static int log_compare(const DbLsn *lsn0, const DbLsn *lsn1);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/
H A Ddb_int.h803 #define LOG_COMPARE(lsn0, lsn1) \
804 ((lsn0)->file != (lsn1)->file ? \
805 ((lsn0)->file < (lsn1)->file ? -1 : 1) : \
806 ((lsn0)->offset != (lsn1)->offset ? \
807 ((lsn0)->offset < (lsn1)->offset ? -1 : 1) : 0))
H A Ddb_cxx.h541 static int log_compare(const DbLsn *lsn0, const DbLsn *lsn1);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_wince/
H A Ddb_int.h800 #define LOG_COMPARE(lsn0, lsn1) \
801 ((lsn0)->file != (lsn1)->file ? \
802 ((lsn0)->file < (lsn1)->file ? -1 : 1) : \
803 ((lsn0)->offset != (lsn1)->offset ? \
804 ((lsn0)->offset < (lsn1)->offset ? -1 : 1) : 0))
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_windows/
H A Ddb_int.h800 #define LOG_COMPARE(lsn0, lsn1) \
801 ((lsn0)->file != (lsn1)->file ? \
802 ((lsn0)->file < (lsn1)->file ? -1 : 1) : \
803 ((lsn0)->offset != (lsn1)->offset ? \
804 ((lsn0)->offset < (lsn1)->offset ? -1 : 1) : 0))
H A Ddb_cxx.h541 static int log_compare(const DbLsn *lsn0, const DbLsn *lsn1);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/tcl/
H A Dtcl_log.c104 DB_LSN lsn0, lsn1; local
113 Tcl_WrongNumArgs(interp, 2, objv, "lsn1 lsn2");
120 result = _GetLsn(interp, objv[3], &lsn1);
125 ret = log_compare(&lsn0, &lsn1);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/rep/
H A Drep_method.c824 DB_LSN lsn1, lsn2; local
832 (void)__ua_memcpy(&lsn1, &rp1->lsn, sizeof(DB_LSN));
835 if (lsn1.file > lsn2.file)
838 if (lsn1.file < lsn2.file)
841 if (lsn1.offset > lsn2.offset)
844 if (lsn1.offset < lsn2.offset)
H A Drep_record.c1594 __rep_lsn_cmp(lsn1, lsn2)
1595 const void *lsn1, *lsn2;
1598 return (LOG_COMPARE((DB_LSN *)lsn1, (DB_LSN *)lsn2));
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/internal/
H A DDbEnv.java422 public static int log_compare(com.sleepycat.db.LogSequenceNumber lsn0, com.sleepycat.db.LogSequenceNumber lsn1) /* no exception */ { argument
423 return db_javaJNI.DbEnv_log_compare(lsn0, lsn1);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/cxx/
H A Dcxx_env.cpp462 int DbEnv::log_compare(const DbLsn *lsn0, const DbLsn *lsn1) argument
464 return (::log_compare(lsn0, lsn1));
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/libdb_java/
H A Ddb.i1010 static int log_compare(const DB_LSN *lsn0, const DB_LSN *lsn1) {
1011 return log_compare(lsn0, lsn1);
H A Ddb_java_wrap.c3039 SWIGINTERN int DbEnv_log_compare(DB_LSN const *lsn0,DB_LSN const *lsn1){ argument
3040 return log_compare(lsn0, lsn1);
7629 DB_LSN lsn1 ; local
7638 arg1 = &lsn1;

Completed in 290 milliseconds