HomeSort by relevance Sort by last modified time
    Searched defs:block (Results 226 - 250 of 1844) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/
OtherXmlTreePage.java 64 UiTreeBlock block = new UiTreeBlock(mEditor, rootNode, local
69 block.createContent(managedForm);
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 134 * there. Furthermore, any no-op block between the exit block and
164 * predecessor block.
169 for (SsaBasicBlock block : blocks) {
171 block.forEachPhiInsn(new PhiVisitor(blocks));
174 block.removeAllPhiInsns();
181 for (SsaBasicBlock block : blocks) {
182 block.scheduleMovesFromPhis();
241 * @return rop-form basic block list
246 // Exit block may be null
    [all...]
  /art/compiler/optimizing/
cha_guard_optimization.cc 49 void VisitBasicBlock(HBasicBlock* block) OVERRIDE;
60 // Record if each block has any CHA guard. It's updated during the
75 void CHAGuardVisitor::VisitBasicBlock(HBasicBlock* block) {
80 HInstructionIterator it(block->GetInstructions());
89 HBasicBlock* block = flag->GetBlock(); local
100 block->RemoveInstruction(deopt);
101 block->RemoveInstruction(compare);
102 block->RemoveInstruction(flag);
134 // plus a (partial) linear search within one block for each guard.
136 // biggest block plus the depth of the dominating tree
181 HBasicBlock* block = flag->GetBlock(); local
    [all...]
code_sinking.cc 143 static void AddInputs(HBasicBlock* block,
147 for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) {
150 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
181 // Find the target block.
186 HBasicBlock* block = user->GetBlock(); local
188 // Special case phis by taking the incoming block for regular ones,
190 block = user->AsPhi()->IsCatchPhi()
191 ? block->GetDominator()
192 : block->GetPredecessors()[use.GetIndex()];
194 finder.Update(block);
    [all...]
constant_folding_test.cc 745 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph_); local
746 graph_->AddBlock(block);
750 entry_block->AddSuccessor(block);
751 block->AddSuccessor(exit_block);
762 block->AddInstruction(last = new (GetAllocator()) HAbove(zero, parameter));
763 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0));
764 block->AddInstruction(last = new (GetAllocator()) HAbove(parameter, zero));
765 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0));
766 block->AddInstruction(last = new (GetAllocator()) HAboveOrEqual(zero, parameter));
767 block->AddInstruction(new (GetAllocator()) HSelect(last, parameter, parameter, 0))
    [all...]
graph_test.cc 48 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); local
49 graph->AddBlock(block);
51 block->AddInstruction(got);
52 return block;
56 HBasicBlock* block = CreateGotoBlock(graph); local
57 graph->SetEntryBlock(block);
58 return block;
62 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); local
63 graph->AddBlock(block);
65 block->AddInstruction(return_instr)
70 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); local
279 HBasicBlock* block = CreateGotoBlock(graph); local
    [all...]
gvn_test.cc 40 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); local
41 graph->AddBlock(block);
42 entry->AddSuccessor(block);
44 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter,
53 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter,
62 HInstruction* to_remove = block->GetLastInstruction();
63 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter,
72 HInstruction* different_offset = block->GetLastInstruction();
74 block->AddInstruction(new (GetAllocator()) HInstanceFieldSet(parameter,
84 block->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter
121 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); local
201 HBasicBlock* block = new (GetAllocator()) HBasicBlock(graph); local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ConditionVariableTest.java 39 assertFalse(mConditionVariable.block(BLOCK_TIME));
40 assertFalse(new ConditionVariable(false).block(BLOCK_TIME));
41 assertTrue(new ConditionVariable(true).block(BLOCK_TIME));
45 // test open then block(long)
48 assertTrue(mConditionVariable.block(BLOCK_TIME));
51 // test close then block(long)
54 assertFalse(mConditionVariable.block(BLOCK_TIME));
57 // test block then open
72 mConditionVariable.block();
91 assertTrue(mConditionVariable.block(BLOCK_TIME))
    [all...]
  /external/avb/test/
avb_sysdeps_posix_testing.cc 86 AvbAllocatedBlock block; local
87 block.size = size;
88 allocated_blocks[ptr] = block;
95 avb_fatal("Tried to free pointer to non-allocated block.\n");
  /external/boringssl/src/crypto/cmac/
cmac.c 68 uint8_t block[AES_BLOCK_SIZE]; member in struct:cmac_ctx_st
69 // block_used contains the number of valid bytes in |block|.
81 OPENSSL_cleanse(ctx->block, sizeof(ctx->block));
181 OPENSSL_memcpy(ctx->block + ctx->block_used, in, todo);
189 // latter case we don't want to process this block now because it might be
190 // the last block and that block is treated specially.
197 if (!EVP_Cipher(&ctx->cipher_ctx, scratch, ctx->block, AES_BLOCK_SIZE)) {
211 OPENSSL_memcpy(ctx->block, in, in_len)
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms-template-callback.cpp 49 // Block equivalent to the previous definitions.
51 void block(C<void(^)(void)>) {} function
52 // CHECK: "\01?block@@YAXV?$C@P_EAXXZ@@@Z"
  /external/deqp/framework/delibs/depool/
dePoolStringBuilder.c 60 StringBlock* block = DE_POOL_NEW(builder->pool, StringBlock); local
64 if (!block || !blockStr)
67 /* Initialize block. */
75 block->str = blockStr;
76 block->next = DE_NULL;
79 /* Add block to list. */
81 builder->blockListTail->next = block;
83 builder->blockListHead = block;
85 builder->blockListTail = block;
124 StringBlock* block = builder->blockListHead local
    [all...]
  /external/e2fsprogs/util/
copy_sparse.c 46 #define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */
48 static unsigned long get_bmap(int fd, unsigned long block)
53 b = block;
93 long lb, i, fd, ofd, bs, block, numblocks; local
121 printf("%s: Invalid block size: %ld\n", src, bs);
149 block = get_bmap(fd, lb);
150 if (!block)
  /external/fec/
rstest.c 2 * for various block sizes and with random data and random error patterns
69 unsigned char block[nn],tblock[nn]; local
85 /* Load block with random data and encode */
87 block[i] = random() & nn;
88 memcpy(tblock,block,sizeof(block));
89 encode_rs_8(block,&block[kk],0);
92 memcpy(tblock,block,sizeof(block));
141 unsigned char block[nn],tblock[nn]; local
222 int block[nn],tblock[nn]; local
    [all...]
  /external/freetype/src/base/
ftutil.c 55 FT_Pointer block = ft_mem_qalloc( memory, size, &error ); local
58 FT_MEM_ZERO( block, size );
61 return block;
71 FT_Pointer block = NULL; local
76 block = memory->alloc( memory, size );
77 if ( !block )
87 return block;
96 void* block,
102 block = ft_mem_qrealloc( memory, item_size,
103 cur_count, new_count, block, &error )
    [all...]
  /external/gemmlowp/public/
map.h 67 MatrixMap block(int start_row, int start_col, int block_rows, function in class:gemmlowp::MatrixMap
103 VectorMap block(int start, int len) const { function in class:gemmlowp::VectorMap
130 VectorDup block(int start, int len) const { function in class:gemmlowp::VectorDup
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CharTrie.java 24 // note that i need to handle the block calculations later, since chartrie
66 char block; local
70 /* max(Latin-1, block 0) */
82 /* indexes are preset to 0 (block 0) */
90 /* indexes for lead surrogate code units to the block after Latin-1 */
91 block=(char)(latin1Length>>INDEX_STAGE_2_SHIFT_);
95 m_index_[i]=block;
IntTrie.java 70 char block; local
74 /* max(Latin-1, block 0) */
86 /* indexes are preset to 0 (block 0) */
94 /* indexes for lead surrogate code units to the block after Latin-1 */
95 block=(char)(latin1Length>>INDEX_STAGE_2_SHIFT_);
99 m_index_[i]=block;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CharTrie.java 23 // note that i need to handle the block calculations later, since chartrie
65 char block; local
69 /* max(Latin-1, block 0) */
81 /* indexes are preset to 0 (block 0) */
89 /* indexes for lead surrogate code units to the block after Latin-1 */
90 block=(char)(latin1Length>>INDEX_STAGE_2_SHIFT_);
94 m_index_[i]=block;
IntTrie.java 69 char block; local
73 /* max(Latin-1, block 0) */
85 /* indexes are preset to 0 (block 0) */
93 /* indexes for lead surrogate code units to the block after Latin-1 */
94 block=(char)(latin1Length>>INDEX_STAGE_2_SHIFT_);
98 m_index_[i]=block;
Trie2_16.java 184 int block = 0; local
188 // - a partial data block
189 // - a reference to the null (default) data block.
190 // - a reference to the index2 null block
202 block = index[cp >> UTRIE2_SHIFT_2] << UTRIE2_INDEX_SHIFT;
206 block = index[index2Block + ((cp - 0xd800) >> UTRIE2_SHIFT_2)] << UTRIE2_INDEX_SHIFT;
211 block = index[index2Block + ((cp >> UTRIE2_SHIFT_2) & UTRIE2_INDEX_2_MASK)] << UTRIE2_INDEX_SHIFT;
225 } else if (block == dataNullOffset) {
226 // The block at dataNullOffset has all values == initialValue.
228 // encounter a null block at its beginning, and can skip ove
    [all...]
Trie2_32.java 181 int block = 0; local
185 // - a partial data block
186 // - a reference to the null (default) data block.
187 // - a reference to the index2 null block
199 block = index[cp >> UTRIE2_SHIFT_2] << UTRIE2_INDEX_SHIFT;
203 block = index[index2Block + ((cp - 0xd800) >> UTRIE2_SHIFT_2)] << UTRIE2_INDEX_SHIFT;
208 block = index[index2Block + ((cp >> UTRIE2_SHIFT_2) & UTRIE2_INDEX_2_MASK)] << UTRIE2_INDEX_SHIFT;
222 } else if (block == dataNullOffset) {
223 // The block at dataNullOffset has all values == initialValue.
225 // encounter a null block at its beginning, and can skip ove
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmElement.java 142 static CsmElement block(CsmElement content) { method in interface:CsmElement
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/wiki_samples/
ClassCreator.java 83 BlockStmt block = new BlockStmt(); local
84 method.setBody(block);
91 block.addStatement(call);
  /external/kotlinc/lib/
kotlin-stdlib-jre7.jar 

Completed in 1007 milliseconds

1 2 3 4 5 6 7 8 91011>>