Searched defs:block_start (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/extensions/browser/
H A Dcomputed_hashes.cc177 const char* block_start = contents.data() + offset; local
182 hash->Update(block_start, bytes_to_read);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_denoiser.c188 static uint8_t *block_start(uint8_t *framebuf, int stride, function
263 block_start(denoiser->running_avg_y[frame].y_buffer,
269 block_start(denoiser->running_avg_y[frame].u_buffer,
275 block_start(denoiser->running_avg_y[frame].v_buffer,
282 block_start(denoiser->mc_running_avg_y.y_buffer,
287 block_start(denoiser->mc_running_avg_y.u_buffer,
292 block_start(denoiser->mc_running_avg_y.v_buffer,
328 uint8_t *avg_start = block_start(avg.y_buffer, avg.y_stride, mi_row, mi_col);
329 uint8_t *mc_avg_start = block_start(mc_avg.y_buffer, mc_avg.y_stride,
/external/chromium_org/v8/src/compiler/
H A Dcode-generator.cc105 BlockStartInstruction* block_start = BlockStartInstruction::cast(instr); local
106 current_block_ = block_start->block();
110 SNPrintF(buffer, "-- B%d start --", block_start->block()->id());
113 masm()->bind(block_start->label());
H A Dinstruction.cc327 BlockStartInstruction* block_start = local
329 AddInstruction(block_start, block);
H A Dscheduler.cc663 Node* block_start = block->nodes_[0]; local
664 DCHECK(IrOpcode::IsControlOpcode(block_start->opcode()));
669 for (UseIter i = block_start->uses().begin(); i != block_start->uses().end();
682 control_succ->op()->mnemonic(), block_start->id(),
683 block_start->op()->mnemonic());
718 start->ReplaceInput(NodeProperties::FirstControlIndex(start), block_start); local
721 start->op()->mnemonic(), block_start->id(),
722 block_start->op()->mnemonic());
H A Dregister-allocator.cc695 void RegisterAllocator::Use(LifetimePosition block_start, argument
705 range->AddUseInterval(block_start, position, zone());
944 int block_start = block->first_instruction_index(); local
947 LifetimePosition::FromInstructionIndex(block_start);
949 for (int index = block->last_instruction_index(); index >= block_start;
1095 BlockStartInstruction* block_start = code()->GetBlockStart(block); local
1096 block_start->GetOrCreateParallelMove(GapInstruction::START, code_zone())
1324 LifetimePosition block_start = LifetimePosition::FromInstructionIndex( local
1326 Define(block_start, phi_operand, hint);
/external/qemu/distrib/ext4_utils/src/
H A Dcontents.c358 void *block_start,
386 size_t e_value_offs = val - (char *) block_start;
357 xattr_addto_range( void *block_start, void *block_end, struct ext4_xattr_entry *first, int name_index, const char *name, const void *value, size_t value_len) argument
/external/chromium_org/third_party/zlib/
H A Ddeflate.h153 long block_start; member in struct:internal_state
/external/chromium_org/v8/src/
H A Dapi.h647 internal::Object** block_start = blocks_.last(); local
648 internal::Object** block_limit = block_start + kHandleBlockSize;
651 if (block_start <= prev_limit && prev_limit <= block_limit) {
663 internal::HandleScope::ZapRange(block_start, block_limit);
668 spare_ = block_start;
H A Dlithium-allocator.cc714 void LAllocator::Use(LifetimePosition block_start, argument
724 range->AddUseInterval(block_start, position, zone());
883 int block_start = block->first_instruction_index(); local
887 LifetimePosition::FromInstructionIndex(block_start);
889 while (index >= block_start) {
1299 LifetimePosition block_start = LifetimePosition::FromInstructionIndex( local
1301 Define(block_start, phi_operand, hint);
H A Dgdb-jit.cc1135 uintptr_t block_start = w->position(); local
1140 block_size.set(static_cast<uint32_t>(w->position() - block_start));
1186 uintptr_t block_start = w->position(); local
1191 block_size.set(static_cast<uint32_t>(w->position() - block_start));
1199 uintptr_t block_start = w->position(); local
1202 block_size.set(static_cast<uint32_t>(w->position() - block_start));
1210 uintptr_t block_start = w->position(); local
1213 block_size.set(static_cast<uint32_t>(w->position() - block_start));
H A Dapi.cc7584 Object** block_start = blocks_.last(); local
7585 Object** block_limit = &block_start[kHandleBlockSize];
7588 !(block_start <= prev_limit && prev_limit <= block_limit));
/external/e2fsprogs/e2fsck/
H A Drehash.c403 char *block_start; local
428 if ((retval = get_next_block(fs, outdir, &block_start)))
430 dirent = (struct ext2_dir_entry *) block_start;
451 &block_start)))
456 dirent = (struct ext2_dir_entry *) (block_start + offset);
558 char * block_start; local
599 &block_start)))
601 dx_ent = set_int_node(fs, block_start);
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Ddeflate.h151 long block_start; member in struct:internal_state
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.h151 long block_start; member in struct:internal_state
/external/zlib/src/
H A Ddeflate.h151 long block_start; member in struct:internal_state
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc1515 int block_start = 0; local
1516 while (block_start <= 0xFFFF) {
1517 uc32 block_end = CanonRangeEnd(block_start);
1518 unsigned block_length = block_end - block_start + 1;
1521 int first_length = un_canonicalize.get(block_start, '\0', first);
1524 int succ_length = un_canonicalize.get(block_start + i, '\0', succ);
1533 block_start = block_start + block_length;

Completed in 422 milliseconds