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

  /external/chromium_org/native_client_sdk/src/libraries/xray/
xray.h 5 /* XRay -- a simple profiler for Native Client */
18 #undef XRAY
28 #if defined(XRAY)
37 /* This is the beginning of the public XRay API */
40 * XRay will also attempt to populate the symbol table with dladdr()
75 /* This is the end of the public XRay API */
77 #else /* defined(XRAY) */
79 /* Builds that don't define XRAY will use these 'null' functions instead. */
111 #endif /* defined(XRAY) */
parsesymbols.c 6 /* XRay -- a simple profiler for Native Client */
13 #include "xray/xray_priv.h"
15 #if defined(XRAY)
27 fprintf(stderr, "While parsing the mapfile, XRay encountered:\n");
30 "XRay only works with code addresses 0x00000000 - 0x07FFFFFF\n");
53 printf("XRay: opening mapfile %s\n", mapfile);
56 fprintf(stderr, "XRay: failed to open %s\n", mapfile);
59 printf("XRay: parsing...\n");
93 printf("XRay: parsed %d symbols into symbol table\n", num_symbols);
96 #endif // XRAY
    [all...]
stringpool.c 6 /* XRay string pool */
17 #include "xray/xray_priv.h"
19 #if defined(XRAY)
93 #endif /* XRAY */
browser.c 7 /* XRay -- a simple profiler for Native Client */
21 #include "xray/xray_priv.h"
24 #if defined(XRAY)
38 XRayGetTSC(&pair.xray);
60 "xray");
75 double odiff = (end_time.xray - start_time.xray);
77 double scale_b = ((double)end_time.pepper) - (scale_a * end_time.xray);
78 printf("Xray timestamp calibration frame %d: %f %f\n",
162 #endif /* XRAY */
    [all...]
symtable.c 5 /* XRay symbol table */
17 #include "xray/xray_priv.h"
20 #if defined(XRAY)
200 #endif /* XRAY */
hashtable.c 6 /* Hashtable for XRay */
12 #include "xray/xray_priv.h"
14 #if defined(XRAY)
140 printf("XRay: Growing a hash table...\n");
156 printf("Xray: Hash table capacity should be a power of 2!\n");
204 #endif /* XRAY */
report.c 6 /* XRay -- a simple profiler for Native Client */
17 #include "xray/xray_priv.h"
19 #if defined(XRAY)
140 "XRay: %d frame(s) %d total capture(s)\n", counter, total_capture);
209 #endif /* XRAY */
xray_priv.h 5 /* XRay -- a simple profiler for Native Client */
16 #include "xray/xray.h"
22 #if defined(XRAY)
68 /* Important: don't instrument xray itself, so use */
69 /* XRAY_NO_INSTRUMENT on all xray functions */
185 uint64_t xray; /* internal xray timestamp */ member in struct:XRayTimestampPair
201 #endif /* defined(XRAY) */
xray.c 6 /* XRay -- a simple profiler for Native Client */
17 #include "xray/xray_priv.h"
19 #if defined(XRAY)
304 /* Generic memory malloc for XRay */
311 printf("XRay: malloc(%d) failed, panic shutdown!\n", t);
318 /* Generic memory free for XRay */
487 /* Reset xray profiler. */
657 "XRay: XRayStopFrame() detects insufficient trace buffer size!\n");
718 /* Initialize XRay */
765 /* Shut down and free memory used by XRay. *
    [all...]

Completed in 249 milliseconds