OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_freeList
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
PODFreeListArena.h
78
FixedSizeMemoryChunk* oldFreeList =
m_freeList
;
80
m_freeList
= reinterpret_cast<FixedSizeMemoryChunk*>(ptr);
81
m_freeList
->next = oldFreeList;
86
: m_arena(PODArena::create()),
m_freeList
(0) { }
89
: m_arena(PODArena::create(allocator)),
m_freeList
(0) { }
95
if (
m_freeList
) {
96
void* memory =
m_freeList
;
97
m_freeList
=
m_freeList
->next;
106
for (FixedSizeMemoryChunk* cur =
m_freeList
; cur; cur = cur->next)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/wtf/
ListHashSet.h
174
:
m_freeList
(pool())
182
Node* result =
m_freeList
;
201
m_freeList
= next;
212
node->m_next =
m_freeList
;
213
m_freeList
= node;
229
Node*
m_freeList
;
[
all
...]
/cts/suite/cts/deviceTests/browserbench/assets/octane/
box2d.js
78
z.prototype.GetVertexCount=function(){return this.m_count};z.prototype.GetVertex=function(b){if(b===undefined)b=0;y.b2Assert(0<=b&&b<this.m_count);return this.m_vertices[b]};u.b2DynamicTree=function(){};u.prototype.b2DynamicTree=function(){this.
m_freeList
=this.m_root=null;this.m_insertionCount=this.m_path=0};u.prototype.CreateProxy=function(b,e){var f=this.AllocateNode(),m=y.b2_aabbExtension,r=y.b2_aabbExtension;f.aabb.lowerBound.x=b.lowerBound.x-m;f.aabb.lowerBound.y=b.lowerBound.y-r;f.aabb.upperBound.x=
82
0;){v=J[--T];if(v.aabb.TestOverlap(t)!=false){x=v.aabb.GetCenter();C=v.aabb.GetExtents();if(!(Math.abs(r.x*(f.x-x.x)+r.y*(f.y-x.y))-s.x*C.x-s.y*C.y>0))if(v.IsLeaf()){x=new S;x.p1=e.p1;x.p2=e.p2;x.maxFraction=e.maxFraction;v=b(x,v);if(v==0)break;if(v>0){x=f.x+v*(m.x-f.x);C=f.y+v*(m.y-f.y);t.lowerBound.x=Math.min(f.x,x);t.lowerBound.y=Math.min(f.y,C);t.upperBound.x=Math.max(f.x,x);t.upperBound.y=Math.max(f.y,C)}}else{J[T++]=v.child1;J[T++]=v.child2}}}}};u.prototype.AllocateNode=function(){if(this.
m_freeList
){var b=
83
this.
m_freeList
;this.
m_freeList
=b.parent;b.parent=null;b.child1=null;b.child2=null;return b}return new H};u.prototype.FreeNode=function(b){b.parent=this.
m_freeList
;this.
m_freeList
=b};u.prototype.InsertLeaf=function(b){++this.m_insertionCount;if(this.m_root==null){this.m_root=b;this.m_root.parent=null}else{var e=b.aabb.GetCenter(),f=this.m_root;if(f.IsLeaf()==false){do{var m=f.child1;f=f.child2;f=Math.abs((m.aabb.lowerBound.x+m.aabb.upperBound.x)/2-e.x)+Math.abs((m.aabb.lowerBound.y+m.aabb.upperBound.y)/
[
all
...]
Completed in 62 milliseconds