Home
last modified time | relevance | path

Searched refs:use1 (Results 1 – 7 of 7) sorted by relevance

/external/llvm/test/Analysis/Dominators/
D2006-10-02-BreakCritEdges.ll6 declare void @use1(i32)
15 call void @use1( i32 %i )
19 call void @use1( i32 %i )
/external/v8/test/mjsunit/
Dmigrations.js46 var use = use_desc.use1;
70 var use = use_desc.use2 !== undefined ? use_desc.use2 : use_desc.use1;
203 use1: function(o, i) { return o.a + 1.0; }, method
208 use1: function(o, i) { return o.b + 1.0; }, method
213 use1: function(o, i) { return o[1] + 1.0; }, method
218 use1: function(o, i) { return o[-1] + 1.0; }, method
223 use1: function(o, i) { return o() + 1.0; }, method
/external/llvm/test/Transforms/InstCombine/
D2009-01-31-Pressure.ll4 declare void @use1(i1)
11 call void @use1(i1 %C)
19 call void @use1(i1 %C)
/external/clang/test/Modules/Inputs/merge-template-members/
Dupdate.h2 B<int>::C use1; variable
/external/llvm/test/Transforms/NaryReassociate/
Dnary-add.ll125 ; def4 use1
127 ; NaryReassociate should match use1 with def3, and use2 with def1.
/external/skia/tests/
DPathOpsAngleIdeas.cpp772 bool use1 = fabs(dist1) < fabs(dist2); in mDistance() local
774 SkDebugf("%c dist=%1.9g r=%1.9g\n", agrees ? 'T' : 'F', use1 ? dist1 : dist2, in mDistance()
775 use1 ? distEndRatio(dist1, q1) : distEndRatio(dist2, q2)); in mDistance()
777 return fabs(use1 ? distEndRatio(dist1, q1) : distEndRatio(dist2, q2)); in mDistance()
/external/v8/src/compiler/
Dsimplified-lowering.cc227 static bool IsUseLessGeneral(UseInfo use1, UseInfo use2) { in IsUseLessGeneral() argument
228 return MachineRepresentationIsSubtype(use1.preferred(), use2.preferred()) && in IsUseLessGeneral()
229 use1.truncation().IsLessGeneralThan(use2.truncation()); in IsUseLessGeneral()