Searched defs:jh (Results 1 - 4 of 4) sorted by path

/external/e2fsprogs/e2fsck/
H A Drevoke.c375 int journal_cancel_revoke(handle_t *handle, struct journal_head *jh) argument
381 struct buffer_head *bh = jh2bh(jh);
383 jbd_debug(4, "journal_head %p, cancelling revoke\n", jh);
410 J_ASSERT_JH(jh, record == NULL);
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-jbd.h265 #define J_ASSERT_JH(jh, expr) J_ASSERT_BH(jh2bh(jh), expr)
268 #define J_ASSERT_JH(jh, expr) J_ASSERT(expr)
290 static inline struct buffer_head *jh2bh(struct journal_head *jh) argument
292 return jh->b_bh;
735 extern void journal_unlock_journal_head(struct journal_head *jh);
932 #define JBUFFER_TRACE(jh, info) do {} while (0)
/external/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
H A Dunique_copy.pass.cpp78 int jh[sh] = {-1}; local
79 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh));
80 assert(base(r) == jh + 2);
81 assert(jh[0] == 0);
82 assert(jh[1] == 1);
H A Dunique_copy_pred.pass.cpp101 int jh[sh] = {-1}; local
103 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh), count_equal());
104 assert(base(r) == jh + 2);
105 assert(jh[0] == 0);
106 assert(jh[1] == 1);

Completed in 564 milliseconds