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

1 2 3 4 5 6 7 8 910

  /external/qemu/
async.c 76 QEMUBH **bh = opaque; local
77 qemu_bh_delete(*bh);
78 g_free(bh);
88 QEMUBH **bh; local
101 /* Schedule BH to run any queued AIO completions as soon as possible */
102 bh = g_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...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
sse4-err.asm 2 crc32 r8d, bh ; error
3 crc32 rax, bh ; error
nomem64-err2.asm 2 mov bh, r8b
  /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)
358 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
140 void ll_rw_block(int rw, int dummy, struct buffer_head *bh[]);
141 void mark_buffer_dirty(struct buffer_head *bh);
142 void mark_buffer_uptodate(struct buffer_head *bh, int val);
143 void brelse(struct buffer_head *bh);
144 int buffer_uptodate(struct buffer_head *bh);
145 void wait_on_buffer(struct buffer_head *bh);
151 #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
233 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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_tex_format.c 58 GLuint bw, bh; local
62 _mesa_get_format_block_size(mesaFormat, &bw, &bh);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_format.c 58 GLuint bw, bh; local
62 _mesa_get_format_block_size(mesaFormat, &bw, &bh);
  /external/e2fsprogs/lib/ext2fs/
kernel-jbd.h 258 void buffer_assertion_failure(struct buffer_head *bh);
259 #define J_ASSERT_BH(bh, expr) \
262 buffer_assertion_failure(bh); \
267 #define J_ASSERT_BH(bh, expr) J_ASSERT(expr)
285 static inline int buffer_jbd(struct buffer_head *bh)
287 return __buffer_state(bh, JBD);
295 static inline struct journal_head *bh2jh(struct buffer_head *bh)
297 return bh->b_private;
612 extern void __journal_free_buffer(struct journal_head *bh);
732 *journal_add_journal_head(struct buffer_head *bh);
    [all...]
jfs_compat.h 61 #define BUFFER_TRACE(bh, info) do {} while (0)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_etc.c 28 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; local
32 for (y = 0; y < height; y += bh) {
38 for (j = 0; j < bh; j++) {
68 const unsigned bw = 4, bh = 4; local
72 assert(i < bw && j < bh);
u_format_rgtc.c 53 const unsigned bw = 4, bh = 4, comps = 4; local
57 for(y = 0; y < height; y += bh) {
60 for(j = 0; j < bh; ++j) {
79 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
82 for(y = 0; y < height; y += bh) {
85 uint8_t tmp[4][4]; /* [bh][bw][comps] */
86 for(j = 0; j < bh; ++j) {
126 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
129 for(y = 0; y < height; y += bh) {
132 uint8_t tmp[4][4]; /* [bh][bw][comps] *
177 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
245 const unsigned bw = 4, bh = 4, comps = 4; local
270 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
295 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
409 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_etc.c 28 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; local
32 for (y = 0; y < height; y += bh) {
38 for (j = 0; j < bh; j++) {
68 const unsigned bw = 4, bh = 4; local
72 assert(i < bw && j < bh);
u_format_rgtc.c 53 const unsigned bw = 4, bh = 4, comps = 4; local
57 for(y = 0; y < height; y += bh) {
60 for(j = 0; j < bh; ++j) {
79 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
82 for(y = 0; y < height; y += bh) {
85 uint8_t tmp[4][4]; /* [bh][bw][comps] */
86 for(j = 0; j < bh; ++j) {
126 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
129 for(y = 0; y < height; y += bh) {
132 uint8_t tmp[4][4]; /* [bh][bw][comps] *
177 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
245 const unsigned bw = 4, bh = 4, comps = 4; local
270 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
295 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
409 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_aq_complexity.c 67 const int bh = num_8x8_blocks_high_lookup[BLOCK_64X64]; local
69 const int ymis = MIN(cm->mi_rows - mi_row, bh);
78 // Rate depends on fraction of a SB64 in frame (xmis * ymis / bw * bh).
81 (bw * bh);
vp9_aq_variance.c 126 const int bh = 8 * num_8x8_blocks_high_lookup[bs] - bottom_overflow; local
129 vp9_64_zeros, 0, bw, bh, &sse, &avg);
130 var = sse - (((int64_t)avg * avg) / (bw * bh));
131 return (256 * var) / (bw * bh);
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_complexity.c 67 const int bh = num_8x8_blocks_high_lookup[BLOCK_64X64]; local
69 const int ymis = MIN(cm->mi_rows - mi_row, bh);
78 // Rate depends on fraction of a SB64 in frame (xmis * ymis / bw * bh).
81 (bw * bh);
vp9_aq_variance.c 126 const int bh = 8 * num_8x8_blocks_high_lookup[bs] - bottom_overflow; local
129 vp9_64_zeros, 0, bw, bh, &sse, &avg);
130 var = sse - (((int64_t)avg * avg) / (bw * bh));
131 return (256 * var) / (bw * bh);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_aq_complexity.c 68 const int bh = num_8x8_blocks_high_lookup[BLOCK_64X64]; local
70 const int ymis = MIN(cm->mi_rows - mi_row, bh);
79 // Rate depends on fraction of a SB64 in frame (xmis * ymis / bw * bh).
82 (bw * bh);
vp9_aq_variance.c 126 const int bh = 8 * num_8x8_blocks_high_lookup[bs] - bottom_overflow; local
129 vp9_64_zeros, 0, bw, bh, &sse, &avg);
130 var = sse - (((int64_t)avg * avg) / (bw * bh));
131 return (256 * var) / (bw * bh);
  /external/libedit/src/
makelist 38 USAGE="Usage: $0 -n|-h|-e|-fc|-fh|-bc|-bh|-m <filenames>"
138 -bh)
  /bionic/libc/arch-x86/atom/string/
ssse3-strcat-atom.S 223 movb %bh, 1(%edx)
232 movb %bh, 2(%edx)
241 movb %bh, 3(%edx)
252 movb %bh, 4(%edx)
261 movb %bh, 5(%edx)
272 movb %bh, 6(%edx)
283 movb %bh, 7(%edx)
294 movb %bh, 8(%edx)
303 movb %bh, 9(%edx)
314 movb %bh, 10(%edx
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress.c 451 GLuint bw, bh; local
454 _mesa_get_format_block_size(mesaFormat, &bw, &bh);
457 ASSERT(row % bh == 0);
459 offset = ((width + bw - 1) / bw) * (row / bh) + col / bw;
480 GLuint bytes, bw, bh; local
483 _mesa_get_format_block_size(format, &bw, &bh);
492 texImage.RowStride = srcRowStride * bh / bytes;
  /external/mesa3d/src/mesa/main/
texcompress.c 451 GLuint bw, bh; local
454 _mesa_get_format_block_size(mesaFormat, &bw, &bh);
457 ASSERT(row % bh == 0);
459 offset = ((width + bw - 1) / bw) * (row / bh) + col / bw;
480 GLuint bytes, bw, bh; local
483 _mesa_get_format_block_size(format, &bw, &bh);
492 texImage.RowStride = srcRowStride * bh / bytes;

Completed in 1191 milliseconds

1 2 3 4 5 6 7 8 910