HomeSort by relevance Sort by last modified time
    Searched defs:newBlock (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
fifo.hpp 131 T* newBlock = (T*)arena.AllocAligned(sizeof(T)*mBlockSize, KNOB_SIMD_WIDTH*4);
132 SWR_ASSERT(newBlock);
134 mBlocks.push_back(newBlock);
135 mCurBlock = newBlock;
  /external/skia/src/core/
SkArenaAlloc.cpp 128 char* newBlock = new char[allocationSize];
136 fCursor = newBlock;
137 fDtorCursor = newBlock;
SkDeque.cpp 229 Block* newBlock = (Block*)sk_malloc_throw(sizeof(Block) + allocCount * fElemSize);
230 newBlock->init(sizeof(Block) + allocCount * fElemSize);
231 return newBlock;
  /prebuilts/go/darwin-x86/src/cmd/vet/internal/cfg/
builder.go 106 block = b.newBlock("undefined.branch")
118 then := b.newBlock("if.then")
119 done := b.newBlock("if.done")
122 _else = b.newBlock("if.else")
171 done := b.newBlock("switch.done")
187 body = b.newBlock("switch.body") // first case only
193 fallthru = b.newBlock("switch.body")
207 nextCond = b.newBlock("switch.next")
246 done := b.newBlock("typeswitch.done")
257 body := b.newBlock("typeswitch.body"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/internal/cfg/
builder.go 106 block = b.newBlock("undefined.branch")
118 then := b.newBlock("if.then")
119 done := b.newBlock("if.done")
122 _else = b.newBlock("if.else")
171 done := b.newBlock("switch.done")
187 body = b.newBlock("switch.body") // first case only
193 fallthru = b.newBlock("switch.body")
207 nextCond = b.newBlock("switch.next")
246 done := b.newBlock("typeswitch.done")
257 body := b.newBlock("typeswitch.body"
    [all...]
  /frameworks/base/libs/androidfw/tests/
ResTable_test.cpp 187 ssize_t newBlock = table.resolveReference(&val, block);
188 EXPECT_EQ(block, newBlock);
  /external/deqp/framework/delibs/decpp/
deAppendList.hpp 251 Block* const newBlock = new Block(blockNdx+1, m_blockSize);
258 m_last = newBlock;
261 // At this point other threads might have skipped to newBlock, but we
263 curBlock->next = newBlock;
  /external/skia/src/sksl/
SkSLCFGGenerator.cpp 30 BlockId CFG::newBlock() {
298 cfg.newBlock();
300 cfg.newBlock();
395 cfg.newBlock();
397 BlockId next = cfg.newBlock();
399 cfg.newBlock();
448 cfg.newBlock();
450 BlockId next = cfg.newBlock();
453 cfg.newBlock();
514 BlockId loopStart = cfg.newBlock();
    [all...]
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 38 CacheBlock* CacheBlock::insertBlock(CacheBlock* head, CacheBlock* newBlock) {
41 newBlock, newBlock->mX, newBlock->mY,
42 newBlock->mWidth, newBlock->mHeight);
49 if (newBlock->mWidth < currBlock->mWidth) {
50 newBlock->mNext = currBlock;
51 newBlock->mPrev = prevBlock;
52 currBlock->mPrev = newBlock;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
IntTrieBuilder.java 508 int newBlock = m_dataLength_;
509 int newTop = newBlock + DATA_BLOCK_LENGTH;
515 return newBlock;
532 int newBlock = allocDataBlock();
533 if (newBlock < 0) {
537 m_index_[ch] = newBlock;
540 System.arraycopy(m_data_, Math.abs(indexValue), m_data_, newBlock,
542 return newBlock;
Trie2Writable.java 171 int newBlock, newTop;
173 newBlock=index2Length;
174 newTop=newBlock+UTRIE2_INDEX_2_BLOCK_LENGTH;
184 System.arraycopy(index2, index2NullOffset, index2, newBlock, UTRIE2_INDEX_2_BLOCK_LENGTH);
185 return newBlock;
205 int newBlock, newTop;
209 newBlock=firstFreeBlock;
210 firstFreeBlock=-map[newBlock>>UTRIE2_SHIFT_2];
213 newBlock=dataLength;
214 newTop=newBlock+UTRIE2_DATA_BLOCK_LENGTH
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
IntTrieBuilder.java 506 int newBlock = m_dataLength_;
507 int newTop = newBlock + DATA_BLOCK_LENGTH;
513 return newBlock;
530 int newBlock = allocDataBlock();
531 if (newBlock < 0) {
535 m_index_[ch] = newBlock;
538 System.arraycopy(m_data_, Math.abs(indexValue), m_data_, newBlock,
540 return newBlock;
  /external/r8/src/test/java/com/android/tools/r8/ir/
SplitBlockTest.java 90 BasicBlock newBlock = iterator.split(code);
96 assertSame(newBlock, code.blocks.get(1));
124 BasicBlock newBlock = iterator.split(1, code);
131 assertSame(newBlock, code.blocks.get(1));
209 BasicBlock newBlock = iterator.split(code);
214 assertEquals(instructionCount - i, newBlock.getInstructions().size());
215 assertSame(newBlock, code.blocks.get(2));
247 BasicBlock newBlock = iterator.split(1, code);
252 assertEquals(2, newBlock.getInstructions().size());
254 assertSame(newBlock, code.blocks.get(2))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
TryListBuilder.java 304 MutableTryBlock<EH> newBlock = new MutableTryBlock<EH>(previousEnd, tryBlock.startCodeAddress);
305 tryBlock.prepend(newBlock);
306 tryBlock = newBlock;
  /prebuilts/go/darwin-x86/src/crypto/tls/
conn.go 508 // newBlock allocates a new block, from hc's free list if possible.
509 func (hc *halfConn) newBlock() *block {
536 bb := hc.newBlock()
585 c.rawInput = c.in.newBlock()
853 b := c.out.newBlock()
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
conn.go 508 // newBlock allocates a new block, from hc's free list if possible.
509 func (hc *halfConn) newBlock() *block {
536 bb := hc.newBlock()
585 c.rawInput = c.in.newBlock()
853 b := c.out.newBlock()
    [all...]
  /external/boringssl/src/ssl/test/runner/
conn.go 692 // newBlock allocates a new block, from hc's free list if possible.
693 func (hc *halfConn) newBlock() *block {
720 bb := hc.newBlock()
736 c.rawInput = c.in.newBlock()
1060 b := c.out.newBlock()
    [all...]
  /external/icu/icu4c/source/common/
utrie.cpp 177 int32_t newBlock, newTop;
179 newBlock=trie->dataLength;
180 newTop=newBlock+UTRIE_DATA_BLOCK_LENGTH;
186 return newBlock;
197 int32_t indexValue, newBlock;
206 newBlock=utrie_allocDataBlock(trie);
207 if(newBlock<0) {
211 trie->index[c]=newBlock;
214 uprv_memcpy(trie->data+newBlock, trie->data-indexValue, 4*UTRIE_DATA_BLOCK_LENGTH);
215 return newBlock;
    [all...]
utrie2_builder.cpp 475 int32_t newBlock, newTop;
477 newBlock=trie->index2Length;
478 newTop=newBlock+UTRIE2_INDEX_2_BLOCK_LENGTH;
488 uprv_memcpy(trie->index2+newBlock, trie->index2+trie->index2NullOffset, UTRIE2_INDEX_2_BLOCK_LENGTH*4);
489 return newBlock;
514 int32_t newBlock, newTop;
518 newBlock=trie->firstFreeBlock;
519 trie->firstFreeBlock=-trie->map[newBlock>>UTRIE2_SHIFT_2];
522 newBlock=trie->dataLength;
523 newTop=newBlock+UTRIE2_DATA_BLOCK_LENGTH
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
gencnvex.c 823 int32_t i1, i2, i3, i3b, nextOffset, min, newBlock;
843 newBlock=extData->stage2Top;
844 min=newBlock-nextOffset; /* minimum block start with overlap */
845 while(min<newBlock && extData->stage2[newBlock-1]==0) {
846 --newBlock;
849 extData->stage1[i1]=(uint16_t)newBlock;
850 extData->stage2Top=newBlock+MBCS_STAGE_2_BLOCK_SIZE;
862 newBlock=extData->stage3Top;
863 min=newBlock-nextOffset; /* minimum block start with overlap *
    [all...]
genmbcs.cpp 568 uint32_t blockSize, newTop, i, nextOffset, newBlock, min;
593 newBlock=mbcsData->stage2Top;
595 min=newBlock-nextOffset; /* minimum block start with overlap */
596 while(min<newBlock && mbcsData->stage2Single[newBlock-1]==0) {
597 --newBlock;
600 newTop=newBlock+MBCS_STAGE_2_BLOCK_SIZE;
611 mbcsData->stage1[idx]=(uint16_t)newBlock;
627 newBlock=mbcsData->stage3Top;
629 min=newBlock-nextOffset; /* minimum block start with overlap *
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DexBuilder.java 283 BasicBlock newBlock = BasicBlock.createGotoBlock(trueTarget, ir.blocks.size());
284 theIf.setTrueTarget(newBlock);
286 it.add(newBlock);
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/ir/optimize/
PeepholeOptimizer.java 84 BasicBlock newBlock = createAndInsertBlockForSuffix(
86 newBlocks.put(predsWithSameLastInstruction.get(0), newBlock);
103 BasicBlock newBlock = BasicBlock.createGotoBlock(blockNumber);
110 newBlock.getInstructions().addFirst(instruction);
111 instruction.setBlock(newBlock);
114 newBlock.transferCatchHandlers(first);
123 newBlock.getPredecessors().add(pred);
124 pred.replaceSuccessor(block, newBlock);
130 newBlock.link(block);
131 return newBlock;
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaMethod.java 239 SsaBasicBlock newBlock = new SsaBasicBlock(newIndex, maxLabel++, this);
241 newBlock.getInsns().add(getGoto(newBlock));
242 blocks.add(newBlock);
244 return newBlock;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pyassem.py 42 block = self.newBlock()
53 def newBlock(self):

Completed in 3238 milliseconds

1 2 3 4 5 6