Searched refs:v2 (Results 1 - 8 of 8) sorted by relevance

/systemd/src/basic/
H A Dsiphash24.c37 state->v2 += state->v3;
39 state->v3 ^= state->v2;
43 state->v2 += state->v1;
45 state->v1 ^= state->v2;
46 state->v2 = rotate_left(state->v2, 32);
62 .v2 = 0x6c7967656e657261ULL ^ k0,
94 printf("(%3zu) v2 %08x %08x\n", state->inlen, (uint32_t) (state->v2 >> 32), (uint32_t) state->v2);
[all...]
H A Dsiphash24.h11 uint64_t v2; member in struct:siphash
/systemd/src/test/
H A Dtest-siphash24.c37 assert_se(state.v2 == 0x6b7f62616d677361);
42 assert_se(state.v2 == 0x634cb3577b01fd3d);
48 assert_se(state.v2 == 0x1b38329c099bb55a);
H A Dtest-util.c141 uint32_t v2; member in struct:mytype
146 assert_se(container_of(&myval.v2, struct mytype, v2) == &myval);
147 assert_se(container_of(&container_of(&myval.v2,
149 v2)->v1,
/systemd/src/systemd/
H A Dsd-id128.h51 #define SD_ID128_MAKE(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) \
52 ((const sd_id128_t) { .bytes = { 0x##v0, 0x##v1, 0x##v2, 0x##v3, 0x##v4, 0x##v5, 0x##v6, 0x##v7, \
55 #define SD_ID128_ARRAY(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) \
56 { .bytes = { 0x##v0, 0x##v1, 0x##v2, 0x##v3, 0x##v4, 0x##v5, 0x##v6, 0x##v7, \
/systemd/src/hwdb/
H A Dhwdb.c88 static int trie_children_cmp(const void *v1, const void *v2) { argument
90 const struct trie_child_entry *n2 = v2;
148 static int trie_values_cmp(const void *v1, const void *v2, void *arg) { argument
150 const struct trie_value_entry *val2 = v2;
/systemd/src/udev/
H A Dudevadm-hwdb.c82 static int trie_children_cmp(const void *v1, const void *v2) { argument
84 const struct trie_child_entry *n2 = v2;
129 static int trie_values_cmp(const void *v1, const void *v2, void *arg) { argument
131 const struct trie_value_entry *val2 = v2;
/systemd/src/libsystemd/sd-hwdb/
H A Dsd-hwdb.c120 static int trie_children_cmp_f(const void *v1, const void *v2) { argument
122 const struct trie_child_entry_f *n2 = v2;

Completed in 2321 milliseconds