Lines Matching refs:splitpos
457 … unsigned char *s, size_t len, raxNode **stopnode, raxNode ***plink, int *splitpos, raxStack *ts) { in raxLowWalk() argument
496 if (splitpos && h->iscompr) *splitpos = j; in raxLowWalk()
920 int splitpos = 0; in raxFind() local
921 size_t i = raxLowWalk(rax,s,len,&h,NULL,&splitpos,NULL); in raxFind()
922 if (i != len || (h->iscompr && splitpos != 0) || !h->iskey) in raxFind()
1026 int splitpos = 0; in raxRemove() local
1027 size_t i = raxLowWalk(rax,s,len,&h,NULL,&splitpos,&ts); in raxRemove()
1028 if (i != len || (h->iscompr && splitpos != 0) || !h->iskey) { in raxRemove()
1561 int splitpos = 0; in raxSeek() local
1562 size_t i = raxLowWalk(it->rt,ele,len,&it->node,NULL,&splitpos,&it->stack); in raxSeek()
1567 if (eq && i == len && (!it->node->iscompr || splitpos == 0) && in raxSeek()
1624 int nodechar = it->node->data[splitpos]; in raxSeek()
1663 if (it->node->iscompr && it->node->iskey && splitpos && lt) { in raxSeek()