Searched refs:thresh (Results 26 - 43 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DReturnStatement.java136 public int costInline(int thresh, Environment env, Context ctx) { argument
137 return 1 + ((expr != null) ? expr.costInline(thresh, env, ctx) : 0);
H A DBreakStatement.java80 public int costInline(int thresh, Environment env, Context ctx) { argument
H A DContinueStatement.java92 public int costInline(int thresh, Environment env, Context ctx) { argument
H A DArrayAccessExpression.java198 public int costInline(int thresh, Environment env, Context ctx) { argument
203 return 1 + right.costInline(thresh, env, ctx)
204 + index.costInline(thresh, env, ctx);
H A DBinaryExpression.java198 public int costInline(int thresh, Environment env, Context ctx) { argument
199 return 1 + ((left != null) ? left.costInline(thresh, env, ctx) : 0) +
200 ((right != null) ? right.costInline(thresh, env, ctx) : 0);
H A DCompoundStatement.java156 public int costInline(int thresh, Environment env, Context ctx) { argument
158 for (int i = 0 ; (i < args.length) && (cost < thresh) ; i++) {
159 cost += args[i].costInline(thresh, env, ctx);
H A DIncDecExpression.java88 public int costInline(int thresh, Environment env, Context ctx) { argument
100 return right.costInline(thresh, env, ctx) + 4;
103 return updater.costInline(thresh, env, ctx, true) + 1;
H A DVarDeclarationStatement.java222 public int costInline(int thresh, Environment env, Context ctx) { argument
224 return thresh; // don't copy classes...
226 return (expr != null) ? expr.costInline(thresh, env, ctx) : 0;
H A DStatement.java320 public int costInline(int thresh, Environment env, Context ctx) { argument
321 return thresh;
H A DNewInstanceExpression.java459 public int costInline(int thresh, Environment env, Context ctx) { argument
461 return thresh; // don't copy classes...
464 return 2 + super.costInline(thresh, env, ctx);
473 return 2 + super.costInline(thresh, env, ctx);
477 return thresh;
H A DIdentifierExpression.java441 public int costInline(int thresh, Environment env, Context ctx) { argument
443 return implementation.costInline(thresh, env, ctx);
444 return super.costInline(thresh, env, ctx);
H A DTryStatement.java226 public int costInline(int thresh, Environment env, Context ctx){ argument
265 return thresh;
H A DFieldExpression.java1199 public int costInline(int thresh, Environment env, Context ctx) { argument
1201 return implementation.costInline(thresh, env, ctx);
1204 : right.costInline(thresh, env, ctx));
1218 return 3 + right.costInline(thresh, env, ctx);
1224 return thresh;
H A DMethodExpression.java778 public int costInline(int thresh, Environment env, Context ctx) { argument
780 return implementation.costInline(thresh, env, ctx);
785 return thresh;
787 return super.costInline(thresh, env, ctx);
H A DExpression.java414 public int costInline(int thresh, Environment env, Context ctx) { argument
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_image_proto.h1319 const mlib_s32 *thresh);
1328 const mlib_d64 *thresh);
2502 const mlib_s32 *thresh,
2512 const mlib_d64 *thresh,
2521 const mlib_d64 *thresh,
2530 const mlib_s32 *thresh,
2540 const mlib_s32 *thresh,
2549 const mlib_d64 *thresh,
2557 const mlib_d64 *thresh,
2565 const mlib_s32 *thresh,
[all...]
H A Dmlib_ImageColorTrue2Index.c4190 void *thresh,
4204 mlib_s32 thresh[1]; local
4208 thresh[0] = lut[2];
4214 thresh, ghigh, glow, bit_offset);
4241 mlib_s32 thresh[4]; local
4245 thresh[0] = thresh[1] = thresh[2] = thresh[3] = lut[2];
4251 bit_offset, thresh, ghig
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCodingChooser.java990 sizeFuzz *= sizeFuzz; // double the thresh
1052 int thresh = threshes[j];
1055 if (size >= thresh) {

Completed in 110 milliseconds

12