borrow            150 arch/powerpc/boot/devtree.c 	int i, borrow = 0;
borrow            153 arch/powerpc/boot/devtree.c 		int prev_borrow = borrow;
borrow            154 arch/powerpc/boot/devtree.c 		borrow = reg[i] < sub[i] + prev_borrow;
borrow            158 arch/powerpc/boot/devtree.c 	return !borrow;
borrow            299 crypto/ecc.c   	u64 borrow = 0;
borrow            305 crypto/ecc.c   		diff = left[i] - right[i] - borrow;
borrow            307 crypto/ecc.c   			borrow = (diff > left[i]);
borrow            312 crypto/ecc.c   	return borrow;
borrow            320 crypto/ecc.c   	u64 borrow = right;
borrow            326 crypto/ecc.c   		diff = left[i] - borrow;
borrow            328 crypto/ecc.c   			borrow = (diff > left[i]);
borrow            333 crypto/ecc.c   	return borrow;
borrow            497 crypto/ecc.c   	u64 borrow = vli_sub(result, left, right, ndigits);
borrow            503 crypto/ecc.c   	if (borrow)
borrow            622 crypto/ecc.c   		u64 borrow = 0;
borrow            626 crypto/ecc.c   			u64 diff = v[i][j] - mod_m[j] - borrow;
borrow            629 crypto/ecc.c   				borrow = (diff > v[i][j]);
borrow            632 crypto/ecc.c   		i = !(i ^ borrow); /* Swap the index if there was no borrow */
borrow            101 drivers/counter/104-quad-8.c 	unsigned int borrow;
borrow            114 drivers/counter/104-quad-8.c 		borrow = flags & QUAD8_FLAG_BT;
borrow            118 drivers/counter/104-quad-8.c 		*val = (borrow ^ carry) << 24;
borrow            643 drivers/counter/104-quad-8.c 	unsigned int borrow;
borrow            649 drivers/counter/104-quad-8.c 	borrow = flags & QUAD8_FLAG_BT;
borrow            653 drivers/counter/104-quad-8.c 	position = (unsigned long)(borrow ^ carry) << 24;
borrow             98 net/sched/sch_cbq.c 	struct cbq_class	*borrow;	/* NULL if class is bandwidth limited;
borrow            354 net/sched/sch_cbq.c 		} while ((cl = cl->borrow) != NULL && toplevel > cl->level);
borrow            431 net/sched/sch_cbq.c 		for (b = cl->borrow; b; b = b->borrow) {
borrow            539 net/sched/sch_cbq.c 			} while ((borrowed = borrowed->borrow) != NULL);
borrow            664 net/sched/sch_cbq.c 		cl = cl->borrow;
borrow            694 net/sched/sch_cbq.c 			struct cbq_class *borrow = cl;
borrow            697 net/sched/sch_cbq.c 			    (borrow = cbq_under_limit(cl)) == NULL)
borrow            720 net/sched/sch_cbq.c 			q->tx_borrowed = borrow;
borrow            721 net/sched/sch_cbq.c 			if (borrow != cl) {
borrow            723 net/sched/sch_cbq.c 				borrow->xstats.borrows++;
borrow            726 net/sched/sch_cbq.c 				borrow->xstats.borrows += qdisc_pkt_len(skb);
borrow           1064 net/sched/sch_cbq.c 		cl->borrow = (lss->flags & TCF_CBQ_LSS_BOUNDED) ? NULL : cl->tparent;
borrow           1251 net/sched/sch_cbq.c 	if (cl->borrow == NULL)
borrow           1651 net/sched/sch_cbq.c 	cl->borrow = cl->tparent;