/kernel/linux/linux-6.6/rust/alloc/vec/ |
H A D | is_zero.rs | 11 fn is_zero(&self) -> bool; in is_zero() functions 15 ($t:ty, $is_zero:expr) => { 18 fn is_zero(&self) -> bool { in is_zero() functions 19 $is_zero(*self) in is_zero() 47 fn is_zero(&self) -> bool { in is_zero() functions 54 fn is_zero(&self) -> bool { in is_zero() functions 61 fn is_zero(&self) -> bool { in is_zero() functions 69 N <= 16 && self.iter().all(IsZero::is_zero) in is_zero() 82 fn is_zero(&self) -> bool{ in is_zero() functions 88 $first_arg.is_zero() in is_zero() 108 fn is_zero(&self) -> bool { is_zero() functions 115 fn is_zero(&self) -> bool { is_zero() functions 131 fn is_zero(&self) -> bool { is_zero() functions 157 fn is_zero(&self) -> bool { is_zero() functions 172 fn is_zero(&self) -> bool { is_zero() functions 179 fn is_zero(&self) -> bool { is_zero() functions 188 fn is_zero(&self) -> bool { is_zero() functions [all...] |
H A D | mod.rs | 106 use self::is_zero::IsZero; 108 mod is_zero; modules
|
/kernel/linux/linux-6.6/fs/ntfs3/ |
H A D | lznt.c | 324 bool is_zero = true; in compress_lznt() local 341 if (is_zero && err != LZNT_ERROR_ALL_ZEROS) in compress_lznt() 342 is_zero = false; in compress_lznt() 350 return is_zero ? 0 : PtrOffset(cmpr, p); in compress_lznt()
|
/kernel/linux/linux-5.10/drivers/md/ |
H A D | dm-verity.h | 124 sector_t block, u8 *digest, bool *is_zero);
|
H A D | dm-verity-target.c | 335 sector_t block, u8 *digest, bool *is_zero) in verity_hash_for_block() 361 *is_zero = !memcmp(v->zero_digest, digest, v->digest_size); in verity_hash_for_block() 363 *is_zero = false; in verity_hash_for_block() 473 bool is_zero; in verity_verify_io() local 493 &is_zero); in verity_verify_io() 497 if (is_zero) { in verity_verify_io() 334 verity_hash_for_block(struct dm_verity *v, struct dm_verity_io *io, sector_t block, u8 *digest, bool *is_zero) verity_hash_for_block() argument
|
H A D | dm-verity-fec.c | 204 bool is_zero; in fec_read_bufs() local 268 &is_zero) == 0) { in fec_read_bufs() 270 if (is_zero) in fec_read_bufs()
|
/kernel/linux/linux-6.6/rust/kernel/sync/ |
H A D | arc.rs | 300 let is_zero = unsafe { bindings::refcount_dec_and_test(refcount) }; in drop() 301 if is_zero { in drop()
|
/kernel/linux/linux-6.6/drivers/md/ |
H A D | dm-verity-target.c | 371 sector_t block, u8 *digest, bool *is_zero) in verity_hash_for_block() 397 *is_zero = !memcmp(v->zero_digest, digest, v->digest_size); in verity_hash_for_block() 399 *is_zero = false; in verity_hash_for_block() 566 bool is_zero; in verity_verify_io() local 598 &is_zero); in verity_verify_io() 602 if (is_zero) { in verity_verify_io() 370 verity_hash_for_block(struct dm_verity *v, struct dm_verity_io *io, sector_t block, u8 *digest, bool *is_zero) verity_hash_for_block() argument
|
H A D | dm-verity.h | 133 sector_t block, u8 *digest, bool *is_zero);
|
H A D | dm-verity-fec.c | 204 bool is_zero; in fec_read_bufs() local 268 &is_zero) == 0) { in fec_read_bufs() 270 if (is_zero) in fec_read_bufs()
|
/kernel/linux/linux-5.10/lib/ |
H A D | vsprintf.c | 457 bool is_zero = num == 0LL; in number() local 483 else if (!is_zero) in number() 525 if (spec.base == 16 || !is_zero) { in number()
|
/kernel/linux/linux-6.6/lib/ |
H A D | vsprintf.c | 465 bool is_zero = num == 0LL; in number() local 491 else if (!is_zero) in number() 533 if (spec.base == 16 || !is_zero) { in number()
|