Searched defs:bh (Results 1 - 20 of 20) sorted by relevance

/external/qemu/
H A Ddma-helpers.c49 QEMUBH *bh; member in struct:__anon3717
58 qemu_bh_delete(dbs->bh);
59 dbs->bh = NULL;
67 dbs->bh = qemu_bh_new(reschedule_dma, dbs);
68 qemu_bh_schedule(dbs->bh);
161 dbs->bh = NULL;
H A Dqemu-char.h63 QEMUBH *bh; member in struct:CharDriverState
H A Dblock.c1365 QEMUBH *bh; member in struct:BlockDriverAIOCBSync
1376 qemu_bh_delete(acb->bh);
1393 qemu_bh_delete(acb->bh);
1413 if (!acb->bh)
1414 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1423 qemu_bh_schedule(acb->bh);
H A Dvl-android.c3507 QEMUBH *bh; local
3508 bh = qemu_mallocz(sizeof(QEMUBH));
3509 bh->cb = cb;
3510 bh->opaque = opaque;
3511 bh->next = first_bh;
3512 first_bh = bh;
3513 return bh;
3518 QEMUBH *bh, **bhp; local
3522 for (bh = first_bh; bh; b
3546 qemu_bh_schedule_idle(QEMUBH *bh) argument
3554 qemu_bh_schedule(QEMUBH *bh) argument
3564 qemu_bh_cancel(QEMUBH *bh) argument
3569 qemu_bh_delete(QEMUBH *bh) argument
3577 QEMUBH *bh; local
[all...]
H A Dvl.c3378 QEMUBH *bh; local
3379 bh = qemu_mallocz(sizeof(QEMUBH));
3380 bh->cb = cb;
3381 bh->opaque = opaque;
3382 bh->next = first_bh;
3383 first_bh = bh;
3384 return bh;
3389 QEMUBH *bh, **bhp; local
3393 for (bh = first_bh; bh; b
3417 qemu_bh_schedule_idle(QEMUBH *bh) argument
3425 qemu_bh_schedule(QEMUBH *bh) argument
3435 qemu_bh_cancel(QEMUBH *bh) argument
3440 qemu_bh_delete(QEMUBH *bh) argument
3448 QEMUBH *bh; local
[all...]
/external/e2fsprogs/e2fsck/
H A Drecovery.c74 struct buffer_head *bh; local
97 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
98 if (!bh) {
103 if (!buffer_uptodate(bh) && !buffer_locked(bh)) {
104 bufs[nbufs++] = bh;
111 brelse(bh);
136 struct buffer_head *bh; local
150 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
151 if (!bh)
178 count_tags(struct buffer_head *bh, int size) argument
315 struct buffer_head * bh; local
565 scan_revoke_records(journal_t *journal, struct buffer_head *bh, tid_t sequence, struct recovery_info *info) argument
[all...]
H A Drevoke.c274 * parameter, but does _not_ forget the buffer_head if the bh was only
287 struct buffer_head *bh = NULL; local
302 bh = bh_in;
304 if (!bh) {
305 bh = get_hash_table(dev, blocknr, journal->j_blocksize);
306 if (bh)
307 BUFFER_TRACE(bh, "found on hash");
318 if ((bh2 != bh) &&
336 if (bh) {
337 J_ASSERT_BH(bh, !test_bi
381 struct buffer_head *bh = jh2bh(jh); local
549 struct buffer_head *bh = jh2bh(descriptor); local
[all...]
H A Djournal.c70 struct buffer_head *bh; local
72 bh = e2fsck_allocate_memory(kdev->k_ctx, sizeof(*bh), "block buffer");
73 if (!bh)
79 bh->b_ctx = kdev->k_ctx;
81 bh->b_io = kdev->k_ctx->fs->io;
83 bh->b_io = kdev->k_ctx->journal_io;
84 bh->b_size = blocksize;
85 bh->b_blocknr = blocknr;
87 return bh;
105 struct buffer_head *bh; local
146 mark_buffer_dirty(struct buffer_head *bh) argument
151 mark_buffer_clean(struct buffer_head * bh) argument
156 brelse(struct buffer_head *bh) argument
165 buffer_uptodate(struct buffer_head *bh) argument
170 mark_buffer_uptodate(struct buffer_head *bh, int val) argument
175 wait_on_buffer(struct buffer_head *bh) argument
226 struct buffer_head *bh; local
[all...]
/external/openssl/crypto/bn/
H A Dbn_asm.c145 BN_ULONG bl,bh; local
151 bh=HBITS(w);
155 mul_add(rp[0],ap[0],bl,bh,c);
157 mul_add(rp[1],ap[1],bl,bh,c);
159 mul_add(rp[2],ap[2],bl,bh,c);
161 mul_add(rp[3],ap[3],bl,bh,c);
172 BN_ULONG bl,bh; local
178 bh=HBITS(w);
182 mul(rp[0],ap[0],bl,bh,carry);
184 mul(rp[1],ap[1],bl,bh,carr
[all...]
/external/quake/quake/src/WinQuake/
H A Ddosisms.h66 unsigned char bl, bh, ebx_b2, ebx_b3; member in struct:__anon4454::__anon4457
/external/skia/src/core/
H A DSk64.cpp190 uint32_t bh = b >> 16; local
193 uint32_t A = ah * bh;
194 uint32_t B = ah * bl + al * bh;
H A DSkMath.cpp98 uint32_t bh = b >> 16; local
101 uint32_t A = ah * bh;
102 uint32_t B = ah * bl + al * bh;
153 uint32_t bh = b >> 16; local
156 uint32_t R = ah * b + al * bh + (al * bl >> 16);
178 uint32_t bh = b >> 16; local
181 uint32_t A = ah * bh;
182 uint32_t B = ah * bl + al * bh;
/external/qemu/block/
H A Dqcow2.c350 QEMUBH *bh; member in struct:QCowAIOCB
371 qemu_bh_delete(acb->bh);
372 acb->bh = NULL;
378 if (acb->bh)
381 acb->bh = qemu_bh_new(cb, acb);
382 if (!acb->bh)
385 qemu_bh_schedule(acb->bh);
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-jbd.h222 void buffer_assertion_failure(struct buffer_head *bh);
223 #define J_ASSERT_BH(bh, expr) \
226 buffer_assertion_failure(bh); \
231 #define J_ASSERT_BH(bh, expr) J_ASSERT(expr)
249 static inline int buffer_jbd(struct buffer_head *bh) argument
251 return __buffer_state(bh, JBD);
259 static inline struct journal_head *bh2jh(struct buffer_head *bh) argument
261 return bh->b_private;
573 extern void __journal_free_buffer(struct journal_head *bh);
693 *journal_add_journal_head(struct buffer_head *bh);
863 buffer_jlist_eq(struct buffer_head *bh, int list) argument
869 buffer_jdirty(struct buffer_head *bh) argument
875 buffer_jbd_data(struct buffer_head *bh) argument
[all...]
/external/kernel-headers/original/linux/
H A Djbd.h262 void buffer_assertion_failure(struct buffer_head *bh);
263 #define J_ASSERT_BH(bh, expr) \
266 buffer_assertion_failure(bh); \
271 #define J_ASSERT_BH(bh, expr) J_ASSERT(expr)
281 #define J_EXPECT_BH(bh, expr, why...) J_ASSERT_BH(bh, expr)
295 #define J_EXPECT_BH(bh, expr, why...) __journal_expect(expr, ## why)
308 BH_JournalHead, /* Pins bh->b_private and jh->b_bh */
327 static inline struct journal_head *bh2jh(struct buffer_head *bh) argument
329 return bh
332 jbd_lock_bh_state(struct buffer_head *bh) argument
337 jbd_trylock_bh_state(struct buffer_head *bh) argument
342 jbd_is_locked_bh_state(struct buffer_head *bh) argument
347 jbd_unlock_bh_state(struct buffer_head *bh) argument
352 jbd_lock_bh_journal_head(struct buffer_head *bh) argument
357 jbd_unlock_bh_journal_head(struct buffer_head *bh) argument
[all...]
H A Dmsdos_fs.h190 struct buffer_head *bh; member in struct:fat_slot_info
359 extern int fat_get_dotdot_entry(struct inode *dir, struct buffer_head **bh,
H A Dext3_fs.h697 struct buffer_head *bh; member in struct:ext3_iloc
704 return (struct ext3_inode *) (iloc->bh->b_data + iloc->offset);
763 struct buffer_head ** bh);
796 struct buffer_head *bh, ext3_fsblk_t blocknr);
/external/webkit/WebCore/rendering/
H A DRenderLayerBacking.cpp928 int bh = max(h + box->marginTop() + box->marginBottom() + box->borderTop() + box->borderBottom(), rh); local
929 paintBox = IntRect(bx, by, bw, bh);
H A DRenderBox.cpp605 int bh = max(h + marginTop() + marginBottom() + borderTop() + borderBottom(), rh); local
607 paintFillLayers(paintInfo, bgColor, bgLayer, bx, by, bw, bh, CompositeSourceOver, bodyObject);
/external/sqlite/dist/
H A Dsqlite3.c52814 } bh; member in union:vdbeExecUnion
[all...]

Completed in 346 milliseconds