Home
last modified time | relevance | path

Searched refs:area1 (Results 1 – 2 of 2) sorted by relevance

/external/v8/test/cctest/
Dtest-utils.cc106 void TestMemMove(byte* area1, in TestMemMove() argument
112 area1[i] = i & 0xFF; in TestMemMove()
115 MemMove(area1 + dest_offset, area1 + src_offset, length); in TestMemMove()
117 if (memcmp(area1, area2, kAreaSize) != 0) { in TestMemMove()
121 if (area1[i] == area2[i]) continue; in TestMemMove()
123 reinterpret_cast<void*>(area1 + i), area1[i], area2[i]); in TestMemMove()
132 byte* area1 = new byte[kAreaSize]; in TEST() local
143 TestMemMove(area1, area2, src_offset, dst_offset, length); in TEST()
147 delete[] area1; in TEST()
/external/opencv/cv/src/
Dcvmatchcontours.cpp231 double match_v, d12, area1, area2, r11, r12, r21, r22, w1, w2; in cvMatchContourTrees() local
278 area1 = tree_1.area; in cvMatchContourTrees()
281 if( area1 < eps || area2 < eps || lpt < 4 ) in cvMatchContourTrees()
314 w1 = ptr11[j]->area / area1; in cvMatchContourTrees()