HomeSort by relevance Sort by last modified time
    Searched refs:unalloc (Results 1 - 10 of 10) sorted by null

  /external/skia/include/core/
SkChunkAlloc.h 41 /** Call this to unalloc the most-recently allocated ptr by alloc(). On
47 size_t unalloc(void* ptr);
  /external/v8/src/crankshaft/
lithium.cc 42 LUnallocated* unalloc = NULL; local
48 unalloc = LUnallocated::cast(this);
49 stream->Add("v%d", unalloc->virtual_register());
50 if (unalloc->basic_policy() == LUnallocated::FIXED_SLOT) {
51 stream->Add("(=%dS)", unalloc->fixed_slot_index());
54 switch (unalloc->extended_policy()) {
58 int reg_index = unalloc->fixed_register_index();
69 int reg_index = unalloc->fixed_register_index();
lithium-allocator.cc 36 LUnallocated* unalloc = LUnallocated::cast(operand_); local
37 requires_reg_ = unalloc->HasRegisterPolicy() ||
38 unalloc->HasDoubleRegisterPolicy();
39 register_beneficial_ = !unalloc->HasAnyPolicy();
217 LUnallocated* unalloc = new(zone) LUnallocated(LUnallocated::NONE); local
218 unalloc->set_virtual_register(id_);
219 op = unalloc;
1031 LUnallocated* unalloc = local
    [all...]
  /external/skia/tests/
BitmapHeapTest.cpp 25 void unalloc(void*) override { }
MemsetTest.cpp 74 // test out unalloc
75 size_t freed = alloc.unalloc(ptr);
  /external/v8/src/compiler/
instruction.cc 85 const UnallocatedOperand* unalloc = UnallocatedOperand::cast(&op); local
86 os << "v" << unalloc->virtual_register();
87 if (unalloc->basic_policy() == UnallocatedOperand::FIXED_SLOT) {
88 return os << "(=" << unalloc->fixed_slot_index() << "S)";
90 switch (unalloc->extended_policy()) {
96 unalloc->fixed_register_index())
101 unalloc->fixed_register_index())
register-allocator.cc 124 const UnallocatedOperand* unalloc = UnallocatedOperand::cast(operand_); local
125 if (unalloc->HasRegisterPolicy()) {
127 } else if (unalloc->HasSlotPolicy()) {
131 register_beneficial = !unalloc->HasAnyPolicy();
1973 UnallocatedOperand* unalloc = UnallocatedOperand::cast(input); local
    [all...]
instruction-selector.cc 285 UnallocatedOperand unalloc = UnallocatedOperand::cast(op); local
286 sequence()->MarkAsRepresentation(rep, unalloc.virtual_register());
    [all...]
  /external/skia/src/core/
SkPictureFlat.h 199 * call unalloc(), in which case it may be freed early.
207 virtual void unalloc(void* ptr) = 0;
459 fController->unalloc((void*)found);
538 // This result is owned by fController and lives as long as it does (unless unalloc'd).
SkChunkAlloc.cpp 179 size_t SkChunkAlloc::unalloc(void* ptr) { function in class:SkChunkAlloc

Completed in 1596 milliseconds