Lines Matching refs:kp
100 - (ACBTree *)createnode:(ACBKey *)kp
110 //tmp.keys[0] = kp;
160 - (ACBTree *)insertkey:(ACBKey *)kp value:(id)value
166 q = [self internalinsert:kp value:value split:&h];
323 /** Search key kp on B-tree with root t; if found increment counter.
324 * otherwise insert an item with key kp in tree. If an ACBKey
325 * emerges to be passed to a lower level, then assign it to kp;
328 - (ACBTree *) internalinsert:(ACBKey *)kp value:(id)value split:(NSInteger *)h
335 ret = [keys[i].key compare:kp.key];
342 q = [self insert:kp value:value index:i split:h];
346 q = [self.btNodes[i] internalinsert:kp value:value split:h];
348 [self insert:kp value:q index:i split:h];
367 - (ACBTree *) insert:(ACBKey *)kp value:(id)value index:(NSInteger)hi split:(NSInteger *)h
374 keys[hi] = kp;
379 //[kp retain];
386 keys[hi] = kp;
395 b.keys[hi] = kp;
581 - (void) notfound:(ACBKey *)kp