aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap-vpp-verify-semiweekly.sh
AgeCommit message (Expand)AuthorFilesLines
2016-08-09CSIT-311 Remove perf tests from semiweekly job runMiroslav Miklus1-107/+3
2016-08-01CSIT-310 Use multi-NIC topology filesMiroslav Miklus1-3/+3
2016-07-27Mark test cases with EXPECTED_FAILING tag as non critical in rebotMatej Klotton1-2/+4
2016-07-22CSIT-220: Rename directories in tests directoryMatej Klotton1-0/+2
2016-06-21Change file name of plot data in semiweekly jobpmikus1-2/+2
2016-06-18Small changes in semiweekly jobJan Gelety1-0/+429
16_8_32_t * v) { #ifdef clib_crc32c_uses_intrinsics return clib_crc32c ((u8 *) v->key, 16); #else u64 tmp = v->key[0] ^ v->key[1]; return clib_xxhash (tmp); #endif } static inline u8 * format_bihash_kvp_16_8_32 (u8 * s, va_list * args) { clib_bihash_kv_16_8_32_t *v = va_arg (*args, clib_bihash_kv_16_8_32_t *); s = format (s, "key %llu %llu value %llu", v->key[0], v->key[1], v->value); return s; } static inline int clib_bihash_key_compare_16_8_32 (u64 * a, u64 * b) { #if defined(CLIB_HAVE_VEC128) && defined(CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE) u64x2 v; v = u64x2_load_unaligned (a) ^ u64x2_load_unaligned (b); return u64x2_is_all_zero (v); #else return ((a[0] ^ b[0]) | (a[1] ^ b[1])) == 0; #endif } #undef __included_bihash_template_h__ #include <vppinfra/bihash_template.h> #endif /* __included_bihash_16_8_32_h__ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */