Home | History | Annotate | Download | only in fuzzing

Lines Matching defs:payload

40 //	perform the operation on the key, then check the order of the payload.
44 size_t payload;
46 stable_test(uint8_t k) : key(k), payload(0) {}
47 stable_test(uint8_t k, size_t p) : key(k), payload(p) {}
54 swap(lhs.payload, rhs.payload);
69 return lhs.payload < rhs.payload;
77 return lhs.key == rhs.key ? lhs.payload < rhs.payload : lhs.key < rhs.key;
83 return lhs.key == rhs.key && lhs.payload == rhs.payload;
124 xPayloads[first1->key] += first1->payload;
127 yPayloads[first2->key] += first2->payload;