Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/compiler/
DCodeGen.java1290 int type1_p = typePrecedence(type1); in rightIsStrong() local
1292 return type1_p >= 0 && type2_p >= 0 && type1_p > type2_p; in rightIsStrong()
1309 int type1_p = typePrecedence(type1); in convertOprandTypes() local
1312 if (type2_p < 0 && type1_p < 0) // not primitive types in convertOprandTypes()
1315 if (type2_p < 0 || type1_p < 0) // either is not a primitive type in convertOprandTypes()
1319 if (type1_p <= type2_p) { in convertOprandTypes()
1322 op = castOp[type2_p * 4 + type1_p]; in convertOprandTypes()
1323 result_type = type1_p; in convertOprandTypes()
1327 op = castOp[type1_p * 4 + type2_p]; in convertOprandTypes()
1333 if (type1_p == P_DOUBLE || type1_p == P_LONG) in convertOprandTypes()
[all …]