Searched defs:check (Results 1 - 25 of 381) sorted by last modified time

1234567891011>>

/external/zlib/src/examples/
H A Dgun.c115 output file, a running CRC-32 check on the output and the total number of
121 int check; /* true if checking crc and total */ member in struct:outd
136 if (me->check) {
223 outd.check = 0;
315 input does not cause an exception. The code != end + 1 check is
317 code. If this ever causes a problem, that check could be safely
318 removed. Leaving this check in greatly improves gun's ability
320 In any case, the prev > end check must be retained. */
379 trailer CRC-32 check or length doesn't match, Z_BUF_ERROR if the input ends
407 strm->msg = (char *)"incorrect header check";
[all...]
/external/zlib/src/
H A Dinflate.h30 DICTID, /* i: waiting for dictionary check value */
33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
47 CHECK, /* i: waiting for 32-bit check value */
49 DONE, /* finished check, done -- remain here until reset */
88 unsigned long check; /* protected copy of check value */ member in struct:inflate_state
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_i.h35 Boolean (*check)(struct eap_sm *sm, void *priv, member in struct:eap_method
/external/wpa_supplicant_8/src/eap_server/
H A Deap_i.h35 Boolean (*check)(struct eap_sm *sm, void *priv, member in struct:eap_method
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_i.h35 Boolean (*check)(struct eap_sm *sm, void *priv, member in struct:eap_method
/external/valgrind/main/none/tests/x86/
H A Dbug126147-x86.c80 " cmpl $0x0, 36(%esp) # check for uppercase\n"
121 check (int thing, int number) function
134 check(a != NULL && b != NULL && STREQ (a, b), number);
146 check (mystrncpy (one, "abc", 4) == one, 1); /* Returned value. */
/external/valgrind/main/coregrind/m_dispatch/
H A Ddispatch-mips32-linux.S203 check: label
229 /* ------ Event check failed ------ */
H A Ddispatch-mips64-linux.S203 check: label
229 /* ------ Event check failed ------ */
/external/valgrind/main/coregrind/
H A Dm_translate.c667 (2) partial: known-problematic situations get a self-check
668 (3) full checking: all translations get a self-check
680 be non-self-checking. Otherwise, it needs a self-check.
682 This is complicated by Vex's basic-block chasing. If a self-check
774 self-check. See documentation of
788 Bool check = False; local
799 check = True;
802 if (!check) {
805 /* never check (except as per Darwin hack above) */
808 /* always check */
[all...]
H A Dvgdb-invoker-ptrace.c56 // -1 means we will check that PTRACE_GETREGSET works.
527 // runtime check not yet done.
528 // 0 : PTRACE_GETREGS runtime check has failed.
529 // 1 : PTRACE_GETREGS defined and runtime check ok.
670 // setregset can never be called before getregset has done a runtime check.
690 // setregs can never be called before getregs has done a runtime check.
791 /* A specific int value is passed to invoke_gdbserver, to check
793 const int check = 0x8BADF00D; // ate bad food. local
815 XERROR (errno, "invoke_gdbserver: check for pid %d existence failed\n",
867 /* push check ar
[all...]
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp4014 static void check(volatile FOO *foo) { function in class:test82::FOO
4045 FOO::check(foo[i]);
5539 // just check that sem_open is not completely broken
5546 // check that sem_open and sem_wait create a happens-before arc.
/external/valgrind/main/helgrind/tests/
H A Dt2t.c25 #define check if (ret != 0) printf("error %d at line %d\n", ret, __LINE__) macro
55 check;
60 check;
69 check;
74 check;
83 check;
89 check;
98 check;
103 check;
/external/valgrind/main/memcheck/tests/
H A Dmallinfo.c12 static size_t check(size_t min, size_t max) function
74 static size_t check(size_t min, size_t max) function
113 max = check(min, (size_t)-1);
123 check(min, max);
H A Dsh-mem-random.c26 // XXX: should check the error cases for SET/GET_VBITS also
70 void check(U1* arr, int n, char* who) function
122 printf("post-initialisation check\n");
123 check(arr, N_BYTES, "after initialisation");
206 printf("final check\n");
207 check(arr, N_BYTES, "final check");
H A Dstr_tester.c49 check (int thing, int number) function
62 check(a != NULL && b != NULL && STREQ (a, b), number);
73 check (strcmp ("", "") == 0, 1); /* Trivial case. */
74 check (strcmp ("a", "a") == 0, 2); /* Identity. */
75 check (strcmp ("abc", "abc") == 0, 3); /* Multicharacter. */
76 check (strcmp ("abc", "abcd") < 0, 4); /* Length mismatches. */
77 check (strcmp ("abcd", "abc") > 0, 5);
78 check (strcmp ("abcd", "abce") < 0, 6); /* Honest miscompares. */
79 check (strcmp ("abce", "abcd") > 0, 7);
80 check (strcm
[all...]
/external/stlport/test/unit/
H A Dtest_errno.cpp8 #include <errno.h> // not typo, check errno def/undef/redef
20 CPPUNIT_TEST(check);
24 void check();
29 void ErrnoTest::check() function in class:ErrnoTest
/external/skia/src/core/
H A DSkDistanceFieldGen.cpp198 DFData* check = curr - width-1; local
199 SkPoint distVec = check->fDistVector;
200 float distSq = check->fDistSq - 2.0f*(distVec.fX + distVec.fY - 1.0f);
209 check = curr - width;
210 distVec = check->fDistVector;
211 distSq = check->fDistSq - 2.0f*distVec.fY + 1.0f;
219 check = curr - width+1;
220 distVec = check->fDistVector;
221 distSq = check->fDistSq + 2.0f*(distVec.fX - distVec.fY + 1.0f);
230 check
244 DFData* check = curr + 1; local
259 DFData* check = curr - 1; local
273 DFData* check = curr + 1; local
[all...]
/external/skia/tests/
H A DMathTest.cpp208 what to do if the float exceeds 2^32-1, we check for that explicitly.
474 int64_t check = ((int64_t)numer << 16) / denom; local
480 if (check > SK_MaxS32) {
481 check = SK_MaxS32;
482 } else if (check < -SK_MaxS32) {
483 check = SK_MinS32;
485 REPORTER_ASSERT(reporter, result == (int32_t)check);
H A DReadPixelsTest.cpp188 bool check; local
189 REPORTER_ASSERT(reporter, check = checkPixel(pmPixel, canvasPixel, didPremul));
190 if (!check) {
377 // check the old webkit version of readPixels that clips the
H A DWritePixelsTest.cpp234 bool check = checkPixel(bmpPMColor, canvasPixel, mul); local
235 REPORTER_ASSERT(reporter, check);
236 if (!check) {
240 bool check; local
242 REPORTER_ASSERT(reporter, check = (canvasPixel == testColor));
243 if (!check) {
251 bool check; local
252 REPORTER_ASSERT(reporter, check = (pad[px] == static_cast<char>(DEV_PAD)));
253 if (!check) {
/external/smack/src/org/xbill/DNS/
H A DDClass.java43 check(int val) { method in class:DClass.DClassMnemonic
44 DClass.check(val);
68 check(int i) { method in class:DClass
H A DDNSOutput.java46 check(long val, int bits) { method in class:DNSOutput
110 check(val, 8);
121 check(val, 16);
134 check(val, 16);
148 check(val, 32);
H A DMnemonic.java94 check(int val) { method in class:Mnemonic
130 check(val);
145 check(val);
174 check(val);
H A DOptions.java91 check(String option) { method in class:Options
H A DTTL.java21 check(long i) { method in class:TTL
88 TTL.check(ttl);

Completed in 6018 milliseconds

1234567891011>>