HomeSort by relevance Sort by last modified time
    Searched defs:ALLOCATED (Results 1 - 2 of 2) sorted by null

  /hardware/intel/img/psb_video/src/
object_heap.c 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);
    [all...]
  /external/v8/src/compiler/
instruction.h 46 ALLOCATED,
61 // Constant operands participate in register allocation. They are allocated to
77 INSTRUCTION_OPERAND_PREDICATE(Allocated, ALLOCATED)
542 : LocationOperand(ALLOCATED, kind, rep, index) {}
549 INSTRUCTION_OPERAND_CASTS(AllocatedOperand, ALLOCATED);
    [all...]

Completed in 179 milliseconds