Searched refs:wrap (Results 1 – 6 of 6) sorted by relevance
/lib/tests/ |
A D | string_kunit.c | 535 } wrap; in string_test_strtomem() local 537 memset(&wrap, 0xFF, sizeof(wrap)); in string_test_strtomem() 544 strtomem(wrap.output, input); in string_test_strtomem() 549 KUNIT_EXPECT_EQ(test, wrap.output[i], 0xFF); in string_test_strtomem() 553 memset(&wrap, 0xFF, sizeof(wrap)); in string_test_strtomem() 554 strtomem(wrap.output, truncate); in string_test_strtomem() 561 memset(&wrap, 0xFF, sizeof(wrap)); in string_test_strtomem() 562 strtomem_pad(wrap.output, input, 0xAA); in string_test_strtomem() 567 KUNIT_EXPECT_EQ(test, wrap.output[i], 0xAA); in string_test_strtomem() 571 memset(&wrap, 0xFF, sizeof(wrap)); in string_test_strtomem() [all …]
|
/lib/ |
A D | sbitmap.c | 64 unsigned int depth, unsigned int alloc_hint, bool wrap) in sbitmap_deferred_clear() argument 82 if (!wrap && alloc_hint) in sbitmap_deferred_clear() 159 unsigned int hint, bool wrap) in __sbitmap_get_word() argument 164 wrap = wrap && hint; in __sbitmap_get_word() 174 if (hint && wrap) { in __sbitmap_get_word() 195 bool wrap) in sbitmap_find_bit_in_word() argument 201 alloc_hint, wrap); in sbitmap_find_bit_in_word() 204 if (!sbitmap_deferred_clear(map, depth, alloc_hint, wrap)) in sbitmap_find_bit_in_word() 235 bool wrap) in sbitmap_find_bit() argument 246 alloc_hint, wrap); in sbitmap_find_bit()
|
A D | test_ubsan.c | 67 volatile int neg = -1, wrap = 4; in test_ubsan_shift_out_of_bounds() local 75 val2 <<= wrap; in test_ubsan_shift_out_of_bounds()
|
A D | Kconfig.ubsan | 120 bool "Perform checking for integer arithmetic wrap-around" 132 (wrap-around) mitigation: signed-integer-overflow, unsigned-integer-overflow,
|
/lib/zlib_inflate/ |
A D | inflate.h | 77 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ member
|
A D | inflate.c | 70 state->wrap = 0; in zlib_inflateInit2() 74 state->wrap = (windowBits >> 4) + 1; in zlib_inflateInit2() 366 if (state->wrap == 0) { in zlib_inflate() 705 if (state->wrap) { in zlib_inflate() 753 if (INFLATE_NEED_CHECKSUM(strm) && state->wrap && out) in zlib_inflate()
|
Completed in 11 milliseconds