Searched refs:block_id (Results 1 - 18 of 18) sorted by relevance

/external/libnfc-nci/src/nfc/tags/
H A Drw_t3t.c653 UINT16 block_id; local
724 for (block_id = first_block_to_write; block_id < (first_block_to_write + ndef_blocks_to_write); block_id++)
726 if (block_id<256)
730 UINT8_TO_STREAM (p, block_id); /* byte1: block number */
736 UINT16_TO_STREAM (p, block_id); /* byte1-2: block number in little-endian format */
801 UINT16 block_id; local
863 for (block_id = first_block_to_read; block_id < (first_block_to_rea
1673 rw_t3t_update_block(tRW_T3T_CB *p_cb, UINT8 block_id, UINT8 *p_block_data) argument
[all...]
/external/v8/src/
H A Dlithium-allocator.cc571 BitVector* live_in = live_in_sets_[successor->block_id()];
1057 LLabel* label = chunk_->GetLabel(phi->block()->block_id());
1101 for (int block_id = blocks->length() - 1; block_id >= 0; --block_id) {
1102 HBasicBlock* block = blocks->at(block_id);
1222 return block->predecessors()->first()->block_id() == block->block_id() - 1;
1229 for (int block_id = 1; block_id < block
[all...]
H A Dhydrogen.cc285 dominated_blocks_[index]->block_id() < block->block_id()) {
301 if (first->block_id() > second->block_id()) {
333 for (int j = block_id(); j <= last->block_id(); ++j) {
339 if (predecessor->block_id() < dominator_candidate->block_id()) {
363 if (successor->block_id() > dominator_candidate->block_id()
[all...]
H A Dhydrogen.h60 int block_id() const { return block_id_; } function in class:v8::internal::HBasicBlock
97 bool IsStartBlock() const { return block_id() == 0; }
1354 void PrintBlockProperty(const char* name, int block_id) { argument
1356 trace_.Add("%s \"B%d\"\n", name, block_id);
H A Dhydrogen-instructions.cc275 return block()->block_id() > other->block_id();
720 stream->Add(first_block ? "B%d" : ", B%d", it.Current()->block_id());
1485 stream->Add("B%d", SuccessorAt(0)->block_id());
/external/v8/src/arm/
H A Dlithium-arm.h375 explicit LGoto(int block_id) : block_id_(block_id) { } argument
381 int block_id() const { return block_id_; } function in class:v8::internal::LGoto
419 int block_id() const { return block()->block_id(); } function in class:v8::internal::LLabel
462 int true_block_id() { return hydrogen()->SuccessorAt(0)->block_id(); }
463 int false_block_id() { return hydrogen()->SuccessorAt(1)->block_id(); }
954 return hydrogen()->FirstSuccessor()->block_id();
957 return hydrogen()->SecondSuccessor()->block_id();
2216 LLabel* GetLabel(int block_id) cons
[all...]
H A Dlithium-arm.cc134 stream->Add(" Dead block replaced with B%d", rep->block_id());
196 stream->Add("B%d", block_id());
470 label->set_replacement(GetLabel(goto_instr->block_id()));
930 if (pred->end()->FirstSuccessor()->block_id() > block->block_id() ||
931 pred->end()->SecondSuccessor()->block_id() > block->block_id()) {
1039 return new(zone()) LGoto(instr->FirstSuccessor()->block_id());
1049 return new(zone()) LGoto(successor->block_id());
H A Dlithium-codegen-arm.cc813 Comment(";;; B%d - LOOP entry", label->block_id());
815 Comment(";;; B%d", label->block_id());
818 current_block_ = label->block_id();
1722 EmitGoto(instr->block_id());
/external/v8/src/ia32/
H A Dlithium-ia32.h367 explicit LGoto(int block_id) : block_id_(block_id) { } argument
373 int block_id() const { return block_id_; } function in class:v8::internal::LGoto
401 int block_id() const { return block()->block_id(); } function in class:v8::internal::LLabel
450 int true_block_id() { return hydrogen()->SuccessorAt(0)->block_id(); }
451 int false_block_id() { return hydrogen()->SuccessorAt(1)->block_id(); }
968 return hydrogen()->FirstSuccessor()->block_id();
971 return hydrogen()->SecondSuccessor()->block_id();
2314 LLabel* GetLabel(int block_id) cons
[all...]
H A Dlithium-ia32.cc131 stream->Add(" Dead block replaced with B%d", rep->block_id());
193 stream->Add("B%d", block_id());
414 label->set_replacement(GetLabel(goto_instr->block_id()));
931 if (pred->end()->FirstSuccessor()->block_id() > block->block_id() ||
932 pred->end()->SecondSuccessor()->block_id() > block->block_id()) {
1040 return new(zone()) LGoto(instr->FirstSuccessor()->block_id());
1052 return new(zone()) LGoto(successor->block_id());
H A Dlithium-codegen-ia32.cc721 Comment(";;; B%d - LOOP entry", label->block_id());
723 Comment(";;; B%d", label->block_id());
726 current_block_ = label->block_id();
1542 EmitGoto(instr->block_id());
/external/v8/src/mips/
H A Dlithium-mips.h374 explicit LGoto(int block_id) : block_id_(block_id) { } argument
380 int block_id() const { return block_id_; } function in class:v8::internal::LGoto
418 int block_id() const { return block()->block_id(); } function in class:v8::internal::LLabel
461 int true_block_id() { return hydrogen()->SuccessorAt(0)->block_id(); }
462 int false_block_id() { return hydrogen()->SuccessorAt(1)->block_id(); }
953 return hydrogen()->FirstSuccessor()->block_id();
956 return hydrogen()->SecondSuccessor()->block_id();
2196 LLabel* GetLabel(int block_id) cons
[all...]
H A Dlithium-mips.cc134 stream->Add(" Dead block replaced with B%d", rep->block_id());
196 stream->Add("B%d", block_id());
470 label->set_replacement(GetLabel(goto_instr->block_id()));
930 if (pred->end()->FirstSuccessor()->block_id() > block->block_id() ||
931 pred->end()->SecondSuccessor()->block_id() > block->block_id()) {
1039 return new(zone()) LGoto(instr->FirstSuccessor()->block_id());
1049 return new(zone()) LGoto(successor->block_id());
H A Dlithium-codegen-mips.cc776 Comment(";;; B%d - LOOP entry", label->block_id());
778 Comment(";;; B%d", label->block_id());
781 current_block_ = label->block_id();
1572 EmitGoto(instr->block_id());
/external/v8/src/x64/
H A Dlithium-x64.h376 explicit LGoto(int block_id) : block_id_(block_id) { } argument
382 int block_id() const { return block_id_; } function in class:v8::internal::LGoto
420 int block_id() const { return block()->block_id(); } function in class:v8::internal::LLabel
463 int true_block_id() { return hydrogen()->SuccessorAt(0)->block_id(); }
464 int false_block_id() { return hydrogen()->SuccessorAt(1)->block_id(); }
953 return hydrogen()->FirstSuccessor()->block_id();
956 return hydrogen()->SecondSuccessor()->block_id();
2178 LLabel* GetLabel(int block_id) cons
[all...]
H A Dlithium-x64.cc136 stream->Add(" Dead block replaced with B%d", rep->block_id());
198 stream->Add("B%d", block_id());
412 label->set_replacement(GetLabel(goto_instr->block_id()));
925 if (pred->end()->FirstSuccessor()->block_id() > block->block_id() ||
926 pred->end()->SecondSuccessor()->block_id() > block->block_id()) {
1034 return new(zone()) LGoto(instr->FirstSuccessor()->block_id());
1046 return new(zone()) LGoto(successor->block_id());
H A Dlithium-codegen-x64.cc686 Comment(";;; B%d - LOOP entry", label->block_id());
688 Comment(";;; B%d", label->block_id());
691 current_block_ = label->block_id();
1502 EmitGoto(instr->block_id());
/external/libvpx/nestegg/src/
H A Dnestegg.c1180 ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_packet ** data) argument
1297 block_id == ID_BLOCK ? "" : "simple", pkt->track, pkt->timecode / 1e9, flags, frames);

Completed in 1641 milliseconds