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 46 LUnallocated* unalloc = NULL; local
52 unalloc = LUnallocated::cast(this);
53 stream->Add("v%d", unalloc->virtual_register());
54 if (unalloc->basic_policy() == LUnallocated::FIXED_SLOT) {
55 stream->Add("(=%dS)", unalloc->fixed_slot_index());
58 switch (unalloc->extended_policy()) {
62 int reg_index = unalloc->fixed_register_index();
73 int reg_index = unalloc->fixed_register_index();
lithium-allocator.cc 38 LUnallocated* unalloc = LUnallocated::cast(operand_); local
39 requires_reg_ = unalloc->HasRegisterPolicy() ||
40 unalloc->HasDoubleRegisterPolicy();
41 register_beneficial_ = !unalloc->HasAnyPolicy();
219 LUnallocated* unalloc = new(zone) LUnallocated(LUnallocated::NONE); local
220 unalloc->set_virtual_register(id_);
221 op = unalloc;
1032 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 90 const UnallocatedOperand* unalloc = UnallocatedOperand::cast(&op); local
91 os << "v" << unalloc->virtual_register();
92 if (unalloc->basic_policy() == UnallocatedOperand::FIXED_SLOT) {
93 return os << "(=" << unalloc->fixed_slot_index() << "S)";
95 switch (unalloc->extended_policy()) {
101 unalloc->fixed_register_index())
106 unalloc->fixed_register_index())
    [all...]
register-allocator.cc 289 const UnallocatedOperand* unalloc = UnallocatedOperand::cast(operand_); local
290 if (unalloc->HasRegisterPolicy()) {
292 } else if (unalloc->HasSlotPolicy()) {
296 register_beneficial = !unalloc->HasAnyPolicy();
2102 UnallocatedOperand* unalloc = UnallocatedOperand::cast(input); local
    [all...]
instruction-selector.cc 318 UnallocatedOperand unalloc = UnallocatedOperand::cast(op); local
319 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 421 milliseconds