Searched defs:traces (Results 1 - 4 of 4) sorted by relevance

/external/blktrace/
H A Dblkrawverify.c39 static struct trace_info traces[] = { variable in typeref:struct:trace_info
54 #define N_TRACES (sizeof(traces) / sizeof(struct trace_info))
94 sprintf(buf2, "| %s ", traces[i].string);
215 * skip notify traces, they don't have valid sequences
259 fprintf(ofp, "%8s %d traces\n", "", nbad_trace);
/external/valgrind/tsan/
H A Dts_race_verifier.cc47 // concurrent traces
48 vector<uintptr_t> traces; member in struct:PossibleRace
78 // used to reduce the sleep time for hot traces
106 for (vector<uintptr_t>::iterator it2 = race->traces.begin();
107 it2 != race->traces.end(); ++it2) {
130 /* Build and print a race report for a data address. Does not print stack traces
305 race->traces.push_back(addr);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_report.cc304 static bool HandleRacyStacks(ThreadState *thr, const StackTrace (&traces)[2], argument
310 hash.hash[0] = md5_hash(traces[0].Begin(), traces[0].Size() * sizeof(uptr));
311 hash.hash[1] = md5_hash(traces[1].Begin(), traces[1].Size() * sizeof(uptr));
344 static void AddRacyStacks(ThreadState *thr, const StackTrace (&traces)[2], argument
349 hash.hash[0] = md5_hash(traces[0].Begin(), traces[0].Size() * sizeof(uptr));
350 hash.hash[1] = md5_hash(traces[1].Begin(), traces[
399 StackTrace traces[kMop]; local
[all...]
/external/opencv/cv/src/
H A Dcvsurf.cpp105 CvMat** traces = (CvMat**)cvStackAlloc(totalLayers*sizeof(traces[0])); local
136 traces[k] = cvCreateMat( hessian_rows, hessian_cols, CV_32FC1 );
145 float* trace = traces[k]->data.fl;
197 const float* trace = traces[k]->data.fl + i*hessian_cols;
246 cvReleaseMat( &traces[k] );

Completed in 210 milliseconds