Searched refs:pc (Results 1 - 3 of 3) sorted by relevance
/systemd/src/journal/ |
H A D | lookup3.h | 9 void jenkins_hashword2(const uint32_t *k, size_t length, uint32_t *pc, uint32_t *pb); 12 void jenkins_hashlittle2(const void *key, size_t length, uint32_t *pc, uint32_t *pb);
|
H A D | lookup3.c | 217 32-bit values. pc and pb must both be nonnull, and *pc and *pb must 219 (*pc) will be the same as the return value from hashword(). 225 uint32_t *pc, /* IN: seed OUT: primary hash value */ 231 a = b = c = 0xdeadbeef + ((uint32_t)(length<<2)) + *pc; 256 *pc=c; *pb=b; 465 * the key. *pc is better mixed than *pb, so use *pc first. If you want 466 * a 64-bit value do something like "*pc + (((uint64_t)*pb)<<32)". 471 uint32_t *pc, /* I 222 jenkins_hashword2( const uint32_t *k, size_t length, uint32_t *pc, uint32_t *pb) argument 468 jenkins_hashlittle2( const void *key, size_t length, uint32_t *pc, uint32_t *pb) argument [all...] |
/systemd/src/coredump/ |
H A D | stacktrace.c | 44 Dwarf_Addr pc, pc_adjusted, bias = 0; local 56 if (!dwfl_frame_pc(frame, &pc, &is_activation)) 59 pc_adjusted = pc - (is_activation ? 0 : 1); 93 fprintf(c->f, "#%-2u 0x%016" PRIx64 " %s (%s)\n", c->n_frame, (uint64_t) pc, strna(symbol), strna(fname));
|
Completed in 1124 milliseconds