HomeSort by relevance Sort by last modified time
    Searched refs:bh (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/qemu/
async.c 76 QEMUBH **bh = opaque; local
77 qemu_bh_delete(*bh);
78 qemu_free(bh);
88 QEMUBH **bh; local
101 /* Schedule BH to run any queued AIO completions as soon as possible */
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
199 QEMUBH *bh; local
    [all...]
dma-helpers.c 49 QEMUBH *bh; member in struct:__anon10961
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;
  /system/extras/ext4_utils/
ext4_jbd2.h 42 #define ext4_journal_get_undo_access(handle, bh) __ext4_journal_get_undo_access(__func__, (handle), (bh))
43 #define ext4_journal_get_write_access(handle, bh) __ext4_journal_get_write_access(__func__, (handle), (bh))
44 #define ext4_forget(handle, is_metadata, inode, bh, block_nr) __ext4_forget(__func__, (handle), (is_metadata), (inode), (bh), (block_nr))
45 #define ext4_journal_get_create_access(handle, bh) __ext4_journal_get_create_access(__func__, (handle), (bh))
46 #define ext4_handle_dirty_metadata(handle, inode, bh) __ext4_handle_dirty_metadata(__func__, (handle), (inode), (bh))
    [all...]
  /external/e2fsprogs/e2fsck/
recovery.c 74 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)
361 struct buffer_head * bh; local
    [all...]
jfs_user.h 44 #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_uptodate(bh, 1
    [all...]
journal.c 70 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->b_blocknr = blocknr
111 struct buffer_head *bh; local
232 struct buffer_head *bh; local
    [all...]
revoke.c 274 * 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_bit(BH_Revoked, &bh->b_state))
381 struct buffer_head *bh = jh2bh(jh); local
549 struct buffer_head *bh = jh2bh(descriptor); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
kernel-jbd.h 257 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)
286 return __buffer_state(bh, JBD);
294 static inline struct journal_head *bh2jh(struct buffer_head *bh)
296 return bh->b_private;
611 extern void __journal_free_buffer(struct journal_head *bh);
731 *journal_add_journal_head(struct buffer_head *bh);
    [all...]
jfs_compat.h 61 #define BUFFER_TRACE(bh, info) do {} while (0)
  /sdk/emulator/qtools/
gtrace.cpp 97 block_header bh; local
99 bh.blockno = blockno_++;
100 bh.entry_width = 8;
101 bh.block_tic = cycle + kBaseTic;
102 bh.block_time = start_sec_ + cycle / kTicsPerSecond;
103 //bh.usec_cpu = (start_usec << 8) | (cpu & 0xff);
104 bh.usec_cpu = cpu & 0xff;
105 bh.pid = pid;
106 bh.bug_count = 0;
107 bh.zero_count = 0
    [all...]
  /external/kernel-headers/original/linux/
jbd.h 262 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)
329 return bh->b_private
    [all...]
  /external/quake/quake/src/QW/client/
surf8.s 113 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...]
d_copy.s 73 movb 12(%esi),%bh
76 movb 4(%esi),%bh
surf8.asm 281 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,dh
    [all...]
  /external/quake/quake/src/WinQuake/
surf8.s 113 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...]
dosisms.h 66 unsigned char bl, bh, ebx_b2, ebx_b3; member in struct:__anon11828::__anon11831
  /external/icu4c/test/perf/unisetperf/draft/
span8perf.bat 5 rem types: slow Bh bh Bv Bv0 B0 BvF Bvp BvpF L Bvl BvL
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
reiserfs_fs.h 1674 struct buffer_head *bh; member in struct:reiserfs_jh
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
reiserfs_fs.h 1674 struct buffer_head *bh; member in struct:reiserfs_jh
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
reiserfs_fs.h 1674 struct buffer_head *bh; member in struct:reiserfs_jh
    [all...]
  /external/skia/src/core/
SkMath.cpp 91 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;
  /frameworks/native/libs/ui/
PixelFormat.cpp 36 uint8_t bh; member in struct:android::Info::__anon17309
136 info->h_blue = i->bh;
  /external/openssl/crypto/bn/
bn_asm.c 149 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,carry)
    [all...]
bn_lcl.h 409 #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/
lfbprof.h 103 unsigned char al, ah, bl, bh, cl, ch, dl, dh; member in struct:_RMBYTEREGS

Completed in 2662 milliseconds

1 2 3 4 5