Lines Matching defs:pNode
366 struct MT2063_ExclZone_t *pNode;
373 pNode = pAS_Info->freeZones;
374 pAS_Info->freeZones = pNode->next_;
377 pNode = &pAS_Info->MT2063_ExclZones[pAS_Info->nZones];
381 pNode->next_ = pPrevNode->next_;
382 pPrevNode->next_ = pNode;
385 pNode->next_ = pAS_Info->usedZones;
386 pAS_Info->usedZones = pNode;
390 return pNode;
428 struct MT2063_ExclZone_t *pNode = pAS_Info->usedZones;
447 while ((pNode != NULL) && (pNode->max_ < f_min)) {
448 pPrev = pNode;
449 pNode = pNode->next_;
452 if ((pNode != NULL) && (pNode->min_ < f_max)) {
453 /* Combine me with pNode */
454 if (f_min < pNode->min_)
455 pNode->min_ = f_min;
456 if (f_max > pNode->max_)
457 pNode->max_ = f_max;
459 pNode = InsertNode(pAS_Info, pPrev);
460 pNode->min_ = f_min;
461 pNode->max_ = f_max;
465 pNext = pNode->next_;
466 while ((pNext != NULL) && (pNext->min_ < pNode->max_)) {
467 if (pNext->max_ > pNode->max_)
468 pNode->max_ = pNext->max_;
470 pNext = RemoveNode(pAS_Info, pNode, pNext);
576 struct MT2063_ExclZone_t *pNode = pAS_Info->usedZones;
605 while (pNode != NULL) {
608 floor((s32) (pNode->min_ - f_Center), (s32) f_Step);
612 ceil((s32) (pNode->max_ - f_Center), (s32) f_Step);
614 if ((pNode->min_ < f_Desired) && (pNode->max_ > f_Desired))
629 pNode = pNode->next_;