HomeSort by relevance Sort by last modified time
    Searched refs:ATOMIC_GET (Results 1 - 8 of 8) sorted by null

  /external/honggfuzz/
display.c 127 size_t curr_exec_cnt = ATOMIC_GET(hfuzz->cnts.mutationsCnt);
160 switch (ATOMIC_GET(hfuzz->state)) {
191 ATOMIC_GET(hfuzz->io.fileCnt), hfuzz->io.inputDir);
214 uint64_t crashesCnt = ATOMIC_GET(hfuzz->cnts.crashesCnt);
221 ATOMIC_GET(hfuzz->cnts.uniqueCrashesCnt), ATOMIC_GET(hfuzz->cnts.blCrashesCnt),
222 ATOMIC_GET(hfuzz->cnts.verifiedCrashesCnt));
225 ATOMIC_GET(hfuzz->cnts.timeoutedCnt), hfuzz->timing.tmOut);
235 ATOMIC_GET(hfuzz->linux.hwCnts.cpuInstrCnt));
239 ATOMIC_GET(hfuzz->linux.hwCnts.cpuBranchCnt))
    [all...]
honggfuzz.c 68 if (ATOMIC_GET(sigReceived) != 0) {
197 if (ATOMIC_GET(sigReceived) > 0) {
198 LOG_I("Signal %d (%s) received, terminating", ATOMIC_GET(sigReceived),
199 strsignal(ATOMIC_GET(sigReceived)));
202 if (ATOMIC_GET(hfuzz.threads.threadsFinished) >= hfuzz.threads.threadsMax) {
fuzz.c 63 if (ATOMIC_GET(termTimeStamp) != 0) {
70 if (ATOMIC_GET(termTimeStamp) != 0) {
77 if (ATOMIC_GET(termTimeStamp) == 0) {
80 if ((time(NULL) - ATOMIC_GET(termTimeStamp)) > 5) {
225 static fuzzState_t fuzz_getState(honggfuzz_t* hfuzz) { return ATOMIC_GET(hfuzz->state); }
232 while (ATOMIC_GET(cnt) < hfuzz->threads.threadsMax) {
440 softCntPc = ATOMIC_GET(run->global->feedback->pidFeedbackPc[run->fuzzNo]);
442 softCntEdge = ATOMIC_GET(run->global->feedback->pidFeedbackEdge[run->fuzzNo]);
444 softCntCmp = ATOMIC_GET(run->global->feedback->pidFeedbackCmp[run->fuzzNo]);
676 if (run.global->exitUponCrash && ATOMIC_GET(run.global->cnts.crashesCnt) > 0)
    [all...]
sancov.c 362 uint64_t prevMapsNum = ATOMIC_GET(run->global->sanCovCnts.dsoCnt);
  /external/honggfuzz/libhfuzz/
instrument.c 104 uint8_t prev = ATOMIC_GET(feedback->bbMapCmp[pos]);
114 uint8_t prev = ATOMIC_GET(feedback->bbMapCmp[pos]);
124 uint8_t prev = ATOMIC_GET(feedback->bbMapCmp[pos]);
134 uint8_t prev = ATOMIC_GET(feedback->bbMapCmp[pos]);
162 uint8_t prev = ATOMIC_GET(feedback->bbMapCmp[pos]);
229 *x = ATOMIC_GET(feedback->pcGuardMap[n]) ? 0U : n;
275 uint8_t prev = ATOMIC_GET(feedback->bbMapCmp[pos]);
  /external/honggfuzz/linux/
pt.c 84 uint64_t aux_tail = ATOMIC_GET(pem->aux_tail);
85 uint64_t aux_head = ATOMIC_GET(pem->aux_head);
perf.c 64 uint64_t aux_head = ATOMIC_GET(pem->aux_head);
  /external/honggfuzz/libcommon/
util.h 43 #define ATOMIC_GET(x) __atomic_load_n(&(x), __ATOMIC_SEQ_CST)

Completed in 62 milliseconds