MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / isIntersected

Function isIntersected

src/library/blas/generic/solution_assert.c:91–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89}
90
91static __inline bool
92isIntersected(size_t off1, size_t size1, size_t off2, size_t size2)
93{
94 return ((off1 >= off2 && off1 < off2 + size2) ||
95 (off1 + size1 > off2 && off1 + size1 <= off2 + size2));
96}
97
98static void
99freeSolAreaNode(ListNode *node)

Callers 2

accProcessedFunction · 0.85
solAreaCmpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected