Home | History | Annotate | Download | only in src

Lines Matching refs:ALLOCATED

38 #define ALLOCATED    -2
116 obj->next_free = ALLOCATED;
133 /* Check if the object has in fact been allocated */
135 if (obj->next_free != ALLOCATED) {
162 if ((obj->next_free == ALLOCATED) || (obj->next_free == SUSPENDED)) {
181 /* Check if the object has in fact been allocated */
182 ASSERT((obj->next_free == ALLOCATED) || (obj->next_free == SUSPENDED));
197 /* Check if object is not still allocated */
199 ASSERT(obj->next_free != ALLOCATED);
217 ASSERT(obj->next_free == ALLOCATED);
221 obj->next_free = ALLOCATED;