Searched refs:leftAmount (Results 1 - 1 of 1) sorted by last modified time

/macosx-10.9.5/CF-855.17/
H A DCFStorage.c676 CFIndex leftAmount = storage->maxLeafCapacity, rightAmount = newTotalSize - storage->maxLeafCapacity; local
677 leftResult = __CFStorageCreateNode(allocator, storage, true, leftAmount);
679 __CFStorageAllocLeafNodeMemory(allocator, storage, leftResult, leftAmount, false);
689 {0, leftAmount}, {leftAmount, rightAmount}
691 The first range must be fit entirely within the left node (byteNum <= leftAmount). The second range may or may be divided between the left and right nodes.
694 ASSERT(byteNum <= leftAmount);
697 const CFRange leftNodeRange = {0, leftAmount}, rightNodeRange = {leftAmount, rightAmount};
701 if ((overlap = intersectionRange(rightNodeRange, preservedData)).length > 0) COPYMEM(node->info.leaf.memory + overlap.location - size, rightResult->info.leaf.memory + overlap.location - leftAmount, overla
[all...]

Completed in 101 milliseconds