/external/openssl/apps/ |
prime.c | 64 int checks=20; local 80 else if(!strcmp(*argv,"-checks")) 84 checks=atoi(*++argv); 118 BN_is_prime_ex(bn,checks,NULL,NULL) ? "" : "not "); 128 BIO_printf(bio_err,"%-14s number of checks\n","-checks <n>");
|
/frameworks/base/opengl/tools/glgen/src/ |
ParameterChecker.java | 33 String[] checks = map.get(functionName); local 34 if (checks == null && 39 checks = map.get(functionName); 41 return checks;
|
JniCodeEmitter.java | 218 String[] checks = mChecker.getChecks(cfunc.getName()); local 220 if (checks != null) { 221 while (index < checks.length) { 222 if (checks[index].equals("return")) { 224 } else if (checks[index].startsWith("check")) { 226 } else if (checks[index].equals("ifcheck")) { 228 } else if (checks[index].equals("unsupported")) { 230 } else if (checks[index].equals("requires")) { 232 } else if (checks[index].equals("nullAllowed")) { 236 checks[index] + "\"") 251 String[] checks = mChecker.getChecks(cfunc.getName()); local 280 String[] checks = mChecker.getChecks(cfunc.getName()); local 307 String[] checks = mChecker.getChecks(cfunc.getName()); local 336 String[] checks = mChecker.getChecks(cfunc.getName()); local [all...] |
/external/icu4c/test/intltest/ |
itutil.cpp | 106 : checks(countChecks), dests(countDests) {} 114 ++checks; 116 int32_t &checks; member in class:MyErrorCode
|
/external/webkit/WebKit/android/ |
RenderSkinRadio.cpp | 41 static const char* checks[] = { "btn_check_off.png", variable 57 String path = drawableDirectory + checks[0]; 59 path = drawableDirectory + checks[1]; 61 path = drawableDirectory + checks[2]; 63 path = drawableDirectory + checks[3];
|
/external/openssl/crypto/bn/ |
bn_prime.c | 166 int checks = BN_prime_checks_for_size(bits); local 199 i=BN_is_prime_fasttest_ex(ret,checks,ctx,0,cb); 211 for (i=0; i<checks; i++) 238 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, BN_GENCB *cb) 240 return BN_is_prime_fasttest_ex(a, checks, ctx_passed, 0, cb); 243 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, 256 if (checks == BN_prime_checks) 257 checks = BN_prime_checks_for_size(BN_num_bits(a)); 320 for (i = 0; i < checks; i++)
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
EventRecurrenceTest.java | 317 Check[] checks = new Check[]{ local 327 for (Check ck : checks) {
|
/external/icu4c/test/cintltst/ |
spooftest.c | 311 * get & set Checks 314 int32_t checks; local 318 checks = uspoof_getChecks(sc, &status); 320 TEST_ASSERT_EQ(USPOOF_ALL_CHECKS, checks); 322 checks &= ~(USPOOF_SINGLE_SCRIPT | USPOOF_MIXED_SCRIPT_CONFUSABLE); 323 uspoof_setChecks(sc, checks, &status); 326 TEST_ASSERT_EQ(checks, checks2); 328 /* The checks that were disabled just above are the same ones that the "scMixed" test fails. 356 /* Limit checks to USPOOF_CHAR_LIMIT. Some of the test data has whole script confusables also,
|
/external/v8/test/cctest/ |
test-debug.cc | 727 // checks: An array of expressions and expected results 730 // Structure for holding checks to do. 735 // Array of checks to do. 736 struct EvaluateCheck* checks = NULL; variable in typeref:struct:EvaluateCheck 754 for (int i = 0; checks[i].expr != NULL; i++) { 757 v8::String::New(checks[i].expr), 758 checks[i].expected }; 762 v8::String::AsciiValue ascii(checks[i].expected->ToString()); 763 V8_Fatal(__FILE__, __LINE__, "%s != %s", checks[i].expr, *ascii); [all...] |