Lines Matching refs:temp

1180         for (Block* temp = activeBlk->next; temp; temp=temp->next) {  in verifyTLSBin()  local
1181 MALLOC_ASSERT( temp!=activeBlk, ASSERT_TEXT ); in verifyTLSBin()
1182 MALLOC_ASSERT( temp->isOwnedByCurrentThread(), ASSERT_TEXT ); in verifyTLSBin()
1183 MALLOC_ASSERT( temp->objectSize == objSize, ASSERT_TEXT ); in verifyTLSBin()
1184 MALLOC_ASSERT( temp->previous->next == temp, ASSERT_TEXT ); in verifyTLSBin()
1185 if (temp->next) { in verifyTLSBin()
1186 MALLOC_ASSERT( temp->next->previous == temp, ASSERT_TEXT ); in verifyTLSBin()
1189 for (Block* temp = activeBlk->previous; temp; temp=temp->previous) { in verifyTLSBin() local
1190 MALLOC_ASSERT( temp!=activeBlk, ASSERT_TEXT ); in verifyTLSBin()
1191 MALLOC_ASSERT( temp->isOwnedByCurrentThread(), ASSERT_TEXT ); in verifyTLSBin()
1192 MALLOC_ASSERT( temp->objectSize == objSize, ASSERT_TEXT ); in verifyTLSBin()
1193 MALLOC_ASSERT( temp->next->previous == temp, ASSERT_TEXT ); in verifyTLSBin()
1194 if (temp->previous) { in verifyTLSBin()
1195 MALLOC_ASSERT( temp->previous->next == temp, ASSERT_TEXT ); in verifyTLSBin()
1478 FreeObject *temp = localPublicFreeList; in privatizePublicFreeList() local
1479 while( isSolidPtr(temp->next) ){ // the list will end with either nullptr or UNUSABLE in privatizePublicFreeList()
1480 temp = temp->next; in privatizePublicFreeList()
1485 temp->next = freeList; in privatizePublicFreeList()
1739 Block* temp = activeBlk->previous; in setPreviousBlockActive() local
1740 if( temp ) { in setPreviousBlockActive()
1741 MALLOC_ASSERT( !(temp->isFull), ASSERT_TEXT ); in setPreviousBlockActive()
1742 activeBlk = temp; in setPreviousBlockActive()
1744 return temp; in setPreviousBlockActive()