Home | History | Annotate | Download | only in profile

Lines Matching defs:uint64_t

51 typedef unsigned long long uint64_t;
58 typedef unsigned long long uint64_t;
82 static uint64_t cur_buffer_size = 0;
83 static uint64_t cur_pos = 0;
84 static uint64_t file_size = 0;
114 static void resize_write_buffer(uint64_t size) {
134 static void write_64bit_value(uint64_t i) {
160 static uint64_t read_64bit_value() {
161 uint64_t val;
164 return (uint64_t)-1;
166 val = *(uint64_t*)&write_buffer[cur_pos];
326 uint64_t **counters) {
327 uint64_t *counter;
373 void llvm_gcda_emit_arcs(uint32_t num_counters, uint64_t *counters) {
375 uint64_t *old_ctrs = NULL;
377 uint64_t save_cur_pos = cur_pos;
400 old_ctrs = malloc(sizeof(uint64_t) * num_counters);
429 uint64_t save_cur_pos = cur_pos;