Searched refs:newBlock (Results 1 - 21 of 21) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DHandleSet.cpp52 HandleBlock* newBlock = HandleBlock::create(m_vm->heap.blockAllocator().allocate<HandleBlock>(), this); local
53 m_blockList.append(newBlock);
55 for (int i = newBlock->nodeCapacity() - 1; i >= 0; --i) {
56 Node* node = newBlock->nodeAtIndex(i);
H A DCopyVisitorInlines.h68 CopiedBlock* newBlock = 0; local
69 m_shared.m_copiedSpace->doneFillingBlock(m_copiedAllocator.resetCurrentBlock(), &newBlock);
70 m_copiedAllocator.setCurrentBlock(newBlock);
H A DCopiedAllocator.h148 inline void CopiedAllocator::setCurrentBlock(CopiedBlock* newBlock) argument
151 m_currentBlock = newBlock;
152 ASSERT(newBlock);
153 m_currentRemaining = newBlock->m_remaining;
154 m_currentPayloadEnd = newBlock->payloadEnd();
H A DCopiedBlock.h116 CopiedBlock* newBlock = createNoZeroFill(block); local
117 newBlock->zeroFillWilderness();
118 return newBlock;
/macosx-10.10/libauto-186/
H A Dauto_weak.h84 extern void weak_transfer_weak_contents(Auto::Zone *azone, void *oldBlock[], void *newBlock[], const uint8_t *map);
85 extern void weak_transfer_weak_contents_unscanned(Auto::Zone *azone, void *oldBlock[], void *newBlock[], size_t size, bool forwarding);
H A Dauto_weak.cpp505 void weak_transfer_weak_contents(Auto::Zone *azone, void *oldBlock[], void *newBlock[], const uint8_t *map) { argument
522 newBlock[index] = NULL;
523 weak_register_no_lock(azone, referent, &newBlock[index], ref.block);
539 void weak_transfer_weak_contents_unscanned(Auto::Zone *azone, void *oldBlock[], void *newBlock[], size_t size, bool forwarding) { argument
542 if (forwarding && newBlock[0]) {
543 const void *referent = newBlock[0];
565 // found one, transfer ownership to the same offset in newBlock.
567 newBlock[index] = NULL;
568 weak_register_no_lock(azone, referent, &newBlock[index], ref.block);
596 void weak_transfer_weak_contents_unscanned(Auto::Zone *azone, void *oldBlock[], void *newBlock[], size_
[all...]
H A DZoneCompaction.cpp673 void *newBlock = zone->forward_block(subzone, q, block); local
674 if (newBlock != block) {
/macosx-10.10/ICU-531.30/icuSources/tools/makeconv/
H A Dgenmbcs.cpp566 uint32_t blockSize, newTop, i, nextOffset, newBlock, min; local
591 newBlock=mbcsData->stage2Top;
593 min=newBlock-nextOffset; /* minimum block start with overlap */
594 while(min<newBlock && mbcsData->stage2Single[newBlock-1]==0) {
595 --newBlock;
598 newTop=newBlock+MBCS_STAGE_2_BLOCK_SIZE;
609 mbcsData->stage1[idx]=(uint16_t)newBlock;
625 newBlock=mbcsData->stage3Top;
627 min=newBlock
685 uint32_t blockSize, newTop, i, nextOffset, newBlock, min, overlap, maxOverlap; local
[all...]
H A Dgencnvex.c824 int32_t i1, i2, i3, i3b, nextOffset, min, newBlock; local
844 newBlock=extData->stage2Top;
845 min=newBlock-nextOffset; /* minimum block start with overlap */
846 while(min<newBlock && extData->stage2[newBlock-1]==0) {
847 --newBlock;
850 extData->stage1[i1]=(uint16_t)newBlock;
851 extData->stage2Top=newBlock+MBCS_STAGE_2_BLOCK_SIZE;
863 newBlock=extData->stage3Top;
864 min=newBlock
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dutrie2_builder.cpp475 int32_t newBlock, newTop; local
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; local
518 newBlock=trie->firstFreeBlock;
519 trie->firstFreeBlock=-trie->map[newBlock>>UTRIE2_SHIFT_2];
522 newBlock=trie->dataLength;
523 newTop=newBlock
589 int32_t i2, oldBlock, newBlock; local
[all...]
H A Dutrie.cpp175 int32_t newBlock, newTop; local
177 newBlock=trie->dataLength;
178 newTop=newBlock+UTRIE_DATA_BLOCK_LENGTH;
184 return newBlock;
195 int32_t indexValue, newBlock; local
204 newBlock=utrie_allocDataBlock(trie);
205 if(newBlock<0) {
209 trie->index[c]=newBlock;
212 uprv_memcpy(trie->data+newBlock, trie->data-indexValue, 4*UTRIE_DATA_BLOCK_LENGTH);
213 return newBlock;
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderRuby.cpp89 RenderBlock* newBlock = new RenderBlockFlow(ruby.document(), RenderStyle::createAnonymousStyleWithDisplay(&ruby.style(), INLINE_BLOCK)); local
90 newBlock->initializeStyle();
91 return newBlock;
/macosx-10.10/WebCore-7600.1.25/rendering/mathml/
H A DRenderMathMLBlock.cpp63 RenderPtr<RenderMathMLBlock> newBlock = createRenderer<RenderMathMLBlock>(document(), RenderStyle::createAnonymousStyleWithDisplay(&style(), FLEX)); local
64 newBlock->initializeStyle();
65 return newBlock;
H A DRenderMathMLRoot.cpp346 RenderPtr<RenderMathMLRootWrapper> newBlock = createRenderer<RenderMathMLRootWrapper>(renderObject->document(), RenderStyle::createAnonymousStyleWithDisplay(&renderObject->style(), FLEX)); local
347 newBlock->initializeStyle();
348 return newBlock;
H A DRenderMathMLScripts.cpp372 RenderMathMLScriptsWrapper* newBlock = new RenderMathMLScriptsWrapper(renderObject->document(), RenderStyle::createAnonymousStyleWithDisplay(&renderObject->style(), FLEX), type); local
373 newBlock->initializeStyle();
374 return newBlock;
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLOutput.cpp68 LBasicBlock Output::newBlock(const char* name) function in class:JSC::FTL::Output
H A DFTLOutput.h88 LBasicBlock newBlock(const char* name = "");
426 ? (output).newBlock() \
427 : (output).newBlock((toCString nameArguments).data()))
/macosx-10.10/WebCore-7600.1.25/editing/
H A DCompositeEditCommand.cpp1025 RefPtr<Node> newBlock = insertNewDefaultParagraphElementAt(upstreamStart); local
1029 moveParagraphs(visibleParagraphStart, visibleParagraphEnd, VisiblePosition(firstPositionInNode(newBlock.get())));
1031 if (newBlock->lastChild() && newBlock->lastChild()->hasTagName(brTag) && !endWasBr)
1032 removeNode(newBlock->lastChild());
1034 return newBlock.release();
1354 RefPtr<Element> newBlock = 0;
1364 newBlock = createListItemElement(document());
1368 newBlock = createListItemElement(document());
1370 if (!newBlock)
[all...]
H A DApplyStyleCommand.cpp283 RefPtr<Node> newBlock = moveParagraphContentsToNewBlockIfNecessary(paragraphStart.deepEquivalent()); local
284 if (newBlock)
285 block = newBlock;
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DPathProfiling.cpp193 void splitUpdate(BLInstrumentationEdge* formerEdge, BasicBlock* newBlock);
553 BasicBlock* newBlock) {
555 BallLarusNode* newNode = addNode(newBlock);
1420 BasicBlock* newBlock = terminator->getSuccessor(succNum); local
1421 dag->splitUpdate(edge, newBlock);
552 splitUpdate(BLInstrumentationEdge* formerEdge, BasicBlock* newBlock) argument
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_resize.c2566 u_int32_t newBlock; local
2587 &newBlock, &blockCount);
2609 newBlock * (hfsmp->blockSize/hfsmp->hfs_logical_block_size),
2644 jib_fork.cf_extents[0].startBlock = newBlock;
2655 hfsmp->vcbJinfoBlock = newBlock;
2678 printf ("hfs_reclaim_journal_info_block: Successfully relocated journal info block from (%u,%u) to (%u,%u)\n", oldBlock, blockCount, newBlock, blockCount);
2684 journal_err = BlockDeallocate(hfsmp, newBlock, blockCount, HFS_ALLOC_SKIPFREEBLKS);

Completed in 237 milliseconds