Lines Matching refs:nodes
155 memcpy(rblk->nodes, blk->nodes + ksl->nodelen * (blk->n - rblk->n),
168 * into 2 adjacent nodes. The new node is always inserted at the
186 memmove(blk->nodes + (i + 2) * ksl->nodelen,
187 blk->nodes + (i + 1) * ksl->nodelen,
251 * of nodes contained by |blk| is strictly less than
260 memmove(blk->nodes + (i + 1) * ksl->nodelen, blk->nodes + i * ksl->nodelen,
276 for (i = 0, node = (nghttp3_ksl_node *)(void *)blk->nodes;
373 memmove(blk->nodes + i * ksl->nodelen, blk->nodes + (i + 1) * ksl->nodelen,
380 * ksl_merge_node merges 2 nodes which are the nodes at the index of
384 * block contains just 2 nodes, the merged block becomes head block,
400 memcpy(lblk->nodes + ksl->nodelen * lblk->n, rblk->nodes,
426 * ksl_shift_left moves the first nodes in blk->nodes[i]->blk->nodes
427 * to blk->nodes[i - 1]->blk->nodes in a manner that they have the
428 * same amount of nodes as much as possible.
448 memcpy(lnode->blk->nodes + ksl->nodelen * lnode->blk->n, rnode->blk->nodes,
458 memmove(rnode->blk->nodes, rnode->blk->nodes + ksl->nodelen * n,
463 * ksl_shift_right moves the last nodes in blk->nodes[i]->blk->nodes
464 * to blk->nodes[i + 1]->blk->nodes in a manner that they have the
465 * same amount of nodes as much as possible..
485 memmove(rnode->blk->nodes + ksl->nodelen * n, rnode->blk->nodes,
491 memcpy(rnode->blk->nodes, lnode->blk->nodes + ksl->nodelen * lnode->blk->n,