MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / __child_right

Function __child_right

src/util/heap.c:28–33  ·  view source on GitHub ↗

compute right child index of given parent

Source from the content-addressed store, hash-verified

26
27// compute right child index of given parent
28static int __child_right
29(
30 const int idx
31) {
32 return idx * 2 + 2;
33}
34
35// compute parent index for given child
36static int __parent

Callers 2

__pushdownFunction · 0.85
_Heap_printFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected