HomeSort by relevance Sort by last modified time
    Searched refs:ALLOCATED (Results 1 - 4 of 4) 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...]
instruction.cc 158 case InstructionOperand::ALLOCATED: {
159 LocationOperand allocated = LocationOperand::cast(op); local
161 os << "[stack:" << allocated.index();
163 os << "[fp_stack:" << allocated.index();
166 << GetRegConfig()->GetGeneralRegisterName(allocated.register_code())
170 << GetRegConfig()->GetDoubleRegisterName(allocated.register_code())
174 << GetRegConfig()->GetFloatRegisterName(allocated.register_code())
179 << GetRegConfig()->GetSimd128RegisterName(allocated.register_code())
182 if (allocated.IsExplicit()) {
185 switch (allocated.representation())
    [all...]
register-allocator.cc 334 case InstructionOperand::ALLOCATED:
1599 InstructionOperand allocated; local
    [all...]

Completed in 608 milliseconds