Searched refs:bh (Results 1 - 25 of 66) sorted by relevance

123

/external/qemu/
H A Dasync.c76 QEMUBH **bh = opaque; local
77 qemu_bh_delete(*bh);
78 qemu_free(bh);
88 QEMUBH **bh; local
102 bh = qemu_malloc(sizeof(*bh));
103 *bh = qemu_bh_new(bh_run_aio_completions, bh);
104 qemu_bh_schedule(*bh);
129 QEMUBH *bh; local
140 QEMUBH *bh, **bhp; local
168 qemu_bh_schedule_idle(QEMUBH *bh) argument
176 qemu_bh_schedule(QEMUBH *bh) argument
186 qemu_bh_cancel(QEMUBH *bh) argument
191 qemu_bh_delete(QEMUBH *bh) argument
199 QEMUBH *bh; local
[all...]
H A Ddma-helpers.c49 QEMUBH *bh; member in struct:__anon9401
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-common.h141 void qemu_bh_schedule(QEMUBH *bh);
148 void qemu_bh_schedule_idle(QEMUBH *bh);
149 void qemu_bh_cancel(QEMUBH *bh);
150 void qemu_bh_delete(QEMUBH *bh);
/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
153 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
154 if (!bh)
181 count_tags(journal_t *journal, struct buffer_head *bh) argument
325 calc_chksums(journal_t *journal, struct buffer_head *bh, unsigned long *next_log_block, __u32 *crc32_sum) argument
361 struct buffer_head * bh; local
718 scan_revoke_records(journal_t *journal, struct buffer_head *bh, tid_t sequence, struct recovery_info *info) argument
[all...]
H A Djfs_user.h44 #define lock_buffer(bh) do {} while(0)
45 #define unlock_buffer(bh) do {} while(0)
46 #define buffer_req(bh) 1
128 void ll_rw_block(int rw, int dummy, struct buffer_head *bh[]);
129 void mark_buffer_dirty(struct buffer_head *bh);
130 void mark_buffer_uptodate(struct buffer_head *bh, int val);
131 void brelse(struct buffer_head *bh);
132 int buffer_uptodate(struct buffer_head *bh);
133 void wait_on_buffer(struct buffer_head *bh);
139 #define set_buffer_uptodate(bh) mark_buffer_uptodat
[all...]
H A Djournal.c70 struct buffer_head *bh; local
71 int bufsize = sizeof(*bh) + kdev->k_ctx->fs->blocksize -
72 sizeof(bh->b_data);
74 bh = e2fsck_allocate_memory(kdev->k_ctx, bufsize, "block buffer");
75 if (!bh)
85 bh->b_ctx = kdev->k_ctx;
87 bh->b_io = kdev->k_ctx->fs->io;
89 bh->b_io = kdev->k_ctx->journal_io;
90 bh->b_size = blocksize;
91 bh
111 struct buffer_head *bh; local
152 mark_buffer_dirty(struct buffer_head *bh) argument
157 mark_buffer_clean(struct buffer_head * bh) argument
162 brelse(struct buffer_head *bh) argument
171 buffer_uptodate(struct buffer_head *bh) argument
176 mark_buffer_uptodate(struct buffer_head *bh, int val) argument
181 wait_on_buffer(struct buffer_head *bh) argument
232 struct buffer_head *bh; local
[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...]
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-jbd.h257 void buffer_assertion_failure(struct buffer_head *bh);
258 #define J_ASSERT_BH(bh, expr) \
261 buffer_assertion_failure(bh); \
266 #define J_ASSERT_BH(bh, expr) J_ASSERT(expr)
284 static inline int buffer_jbd(struct buffer_head *bh) argument
286 return __buffer_state(bh, JBD);
294 static inline struct journal_head *bh2jh(struct buffer_head *bh) argument
296 return bh->b_private;
611 extern void __journal_free_buffer(struct journal_head *bh);
731 *journal_add_journal_head(struct buffer_head *bh);
901 buffer_jlist_eq(struct buffer_head *bh, int list) argument
907 buffer_jdirty(struct buffer_head *bh) argument
913 buffer_jbd_data(struct buffer_head *bh) argument
[all...]
H A Djfs_compat.h61 #define BUFFER_TRACE(bh, info) do {} while (0)
/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...]
/external/quake/quake/src/QW/client/
H A Dsurf8.s113 movb %dh,%bh
129 movb %dh,%bh
146 movb %dh,%bh
160 movb %dh,%bh
177 movb %dh,%bh
191 movb %dh,%bh
208 movb %dh,%bh
222 movb %dh,%bh
339 movb %dh,%bh
355 movb %dh,%bh
[all...]
H A Dd_copy.s73 movb 12(%esi),%bh
76 movb 4(%esi),%bh
H A Dsurf8.asm281 mov bh,dh
292 mov bh,dh
304 mov bh,dh
314 mov bh,dh
326 mov bh,dh
336 mov bh,dh
348 mov bh,dh
358 mov bh,dh
427 mov bh,dh
438 mov bh,d
[all...]
/external/quake/quake/src/WinQuake/
H A Dsurf8.s113 movb %dh,%bh
129 movb %dh,%bh
146 movb %dh,%bh
160 movb %dh,%bh
177 movb %dh,%bh
191 movb %dh,%bh
208 movb %dh,%bh
222 movb %dh,%bh
339 movb %dh,%bh
355 movb %dh,%bh
[all...]
H A Ddosisms.h66 unsigned char bl, bh, ebx_b2, ebx_b3; member in struct:__anon10268::__anon10271
H A Dd_copy.s73 movb 12(%esi),%bh
76 movb 4(%esi),%bh
/external/icu4c/test/perf/unisetperf/draft/
H A Dspan8perf.bat5 rem types: slow Bh bh Bv Bv0 B0 BvF Bvp BvpF L Bvl BvL
/external/skia/src/core/
H A DSkMath.cpp91 uint32_t bh = b >> 16; local
94 uint32_t A = ah * bh;
95 uint32_t B = ah * bl + al * bh;
146 uint32_t bh = b >> 16; local
149 uint32_t R = ah * b + al * bh + (al * bl >> 16);
171 uint32_t bh = b >> 16; local
174 uint32_t A = ah * bh;
175 uint32_t B = ah * bl + al * bh;
H A DSk64.cpp183 uint32_t bh = b >> 16; local
186 uint32_t A = ah * bh;
187 uint32_t B = ah * bl + al * bh;
/external/openssl/crypto/bn/
H A Dbn_asm.c149 BN_ULONG bl,bh; local
155 bh=HBITS(w);
160 mul_add(rp[0],ap[0],bl,bh,c);
161 mul_add(rp[1],ap[1],bl,bh,c);
162 mul_add(rp[2],ap[2],bl,bh,c);
163 mul_add(rp[3],ap[3],bl,bh,c);
169 mul_add(rp[0],ap[0],bl,bh,c);
178 BN_ULONG bl,bh; local
184 bh=HBITS(w);
189 mul(rp[0],ap[0],bl,bh,carr
[all...]
H A Dbn_lcl.h409 #define mul64(l,h,bl,bh) \
415 m =(bh)*(lt); \
418 ht =(bh)*(ht); \
444 #define mul_add(r,a,bl,bh,c) { \
450 mul64(l,h,(bl),(bh)); \
460 #define mul(r,a,bl,bh,c) { \
466 mul64(l,h,(bl),(bh)); \
/external/qemu-pc-bios/vgabios/tests/lfbprof/
H A Dlfbprof.h103 unsigned char al, ah, bl, bh, cl, ch, dl, dh; member in struct:_RMBYTEREGS
/external/mesa3d/include/pixelflinger2/
H A Dpixelflinger2_format.h121 uint8_t bh; // blue high bit position + 1 member in struct:__anon8124::__anon8126::__anon8127
/external/skia/tests/
H A DReadPixelsTest.cpp172 int bh = bitmap.height(); local
174 SkIRect srcRect = SkIRect::MakeXYWH(x, y, bw, bh);
182 for (int by = 0; by < bh; ++by) {
201 REPORTER_ASSERT(reporter, getBitmapColor(bx, by, bw, bh) == pixel);
202 if (getBitmapColor(bx, by, bw, bh) != pixel) {
/external/qemu-pc-bios/vgabios/
H A Dvbe.c1071 xor bh, bh variable
1218 cmp bh, #0x01 variable
1274 xor bh, bh variable
1288 xor bh, bh variable
1363 xor bh, bh variable
1389 cmp bh, # variable
1391 cmp bh, #0x08 variable
1400 mov bh, #0x06 variable
1404 mov bh, #0x08 variable
[all...]

Completed in 4046 milliseconds

123