Symbol: zeroes
arch/mips/include/asm/octeon/cvmx-address.h
116
uint64_t zeroes:33;
arch/mips/include/asm/octeon/cvmx-address.h
156
uint64_t zeroes:24;
arch/mips/include/asm/octeon/cvmx-address.h
214
uint64_t zeroes:33;
arch/mips/include/asm/octeon/cvmx-address.h
241
uint64_t zeroes:24;
arch/s390/include/asm/chpid.h
18
u8 zeroes;
crypto/gcm.c
170
static const u8 zeroes[GHASH_BLOCK_SIZE];
crypto/gcm.c
186
ghash_update(ghash, zeroes, pad_len);
drivers/block/drbd/drbd_receiver.c
1672
struct p_trim *zeroes = (pi->cmd == P_ZEROES) ? pi->data : NULL;
drivers/block/drbd/drbd_receiver.c
1693
} else if (zeroes) {
drivers/block/drbd/drbd_receiver.c
1696
ds = be32_to_cpu(zeroes->size);
drivers/block/drbd/drbd_receiver.c
1701
if (trim || zeroes) {
drivers/block/drbd/drbd_receiver.c
1729
if (zeroes) {
drivers/media/platform/rockchip/rkvdec/rkvdec-vdpu381-hevc.c
104
u32 zeroes[3];
drivers/media/platform/rockchip/rkvdec/rkvdec-vdpu381-hevc.c
86
u16 zeroes : 3;
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_macsec.c
52
static const u8 zeroes[CN10K_MAX_HASH_LEN];
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_macsec.c
61
aes_encrypt(&aes, hash, zeroes);
drivers/net/ethernet/mellanox/mlxsw/spectrum_qdisc.c
1409
unsigned int zeroes[TCQ_ETS_MAX_BANDS] = {0};
drivers/net/ethernet/mellanox/mlxsw/spectrum_qdisc.c
1412
handle, p->bands, zeroes,
drivers/net/ethernet/mellanox/mlxsw/spectrum_qdisc.c
1413
zeroes, p->priomap);
drivers/net/ethernet/sfc/mae.c
568
bool zeroes = true; /* All bits seen so far are zeroes */
drivers/net/ethernet/sfc/mae.c
583
zeroes = false;
drivers/net/ethernet/sfc/mae.c
587
if (zeroes)
drivers/s390/cio/chsc.c
106
u8 zeroes : 3;
fs/coredump.c
1232
static char zeroes[PAGE_SIZE];
fs/coredump.c
1243
if (!__dump_emit(cprm, zeroes, PAGE_SIZE))
fs/coredump.c
1248
return __dump_emit(cprm, zeroes, nr);
fs/ntfs3/bitmap.c
992
size_t zeroes = wnd_zeroes(wnd);
fs/ntfs3/bitmap.c
994
zeroes -= wnd->zone_end - wnd->zone_bit;
fs/ntfs3/bitmap.c
995
if (zeroes < to_alloc0)
fs/ntfs3/fsntfs.c
359
size_t alcn, zlen, zeroes, zlcn, zlen2, ztrim, new_zlen;
fs/ntfs3/fsntfs.c
408
zeroes = wnd_zeroes(wnd);
fs/ntfs3/fsntfs.c
411
if (len > zeroes + zlen || zlen <= NTFS_MIN_MFT_ZONE) {
lib/crypto/aesgcm.c
60
static const u8 zeroes[GHASH_BLOCK_SIZE];
lib/crypto/aesgcm.c
72
ghash_update(&ghash, zeroes, -assoc_len & (GHASH_BLOCK_SIZE - 1));
lib/crypto/aesgcm.c
75
ghash_update(&ghash, zeroes, -src_len & (GHASH_BLOCK_SIZE - 1));
lib/crypto/arm64/gf128hash.h
52
static const u8 zeroes[GHASH_BLOCK_SIZE];
lib/crypto/arm64/gf128hash.h
64
pmull_ghash_update_p8(1, a, zeroes, b);
lib/crypto/arm64/sha3.h
38
static const u8 zeroes[SHA3_512_BLOCK_SIZE];
lib/crypto/arm64/sha3.h
41
sha3_ce_transform(state, zeroes, 1, sizeof(zeroes));
lib/crypto/gf128hash.c
289
static const u8 zeroes[GHASH_BLOCK_SIZE];
lib/crypto/gf128hash.c
291
ghash_blocks_arch(&ctx->acc, ctx->key, zeroes, 1);
lib/crypto/gf128hash.c
366
static const u8 zeroes[POLYVAL_BLOCK_SIZE];
lib/crypto/gf128hash.c
368
polyval_blocks_arch(&ctx->acc, ctx->key, zeroes, 1);
lib/crypto/s390/sha3.h
56
static const u8 zeroes[SHA3_512_BLOCK_SIZE];
lib/crypto/s390/sha3.h
58
cpacf_kimd(CPACF_KIMD_SHA3_512, state, zeroes, sizeof(zeroes));
lib/crypto/tests/hash-test-template.h
309
static const u8 zeroes[sizeof(struct HASH_CTX)];
lib/crypto/tests/hash-test-template.h
316
KUNIT_ASSERT_MEMEQ_MSG(test, &ctx, zeroes, sizeof(ctx),
lib/crypto/tests/hash-test-template.h
488
static const u8 zeroes[sizeof(struct HMAC_CTX)];
lib/crypto/tests/hash-test-template.h
528
KUNIT_EXPECT_MEMEQ_MSG(test, &ctx, zeroes, sizeof(ctx),
net/ipv4/tcp_ao.c
1425
static const u8 zeroes[AES_KEYSIZE_128];
net/ipv4/tcp_ao.c
1428
aes_cmac_preparekey(&extractor, zeroes, AES_KEYSIZE_128);
tools/firmware/ihex2fw.c
272
unsigned char zeroes[6] = {0, 0, 0, 0, 0, 0};
tools/firmware/ihex2fw.c
286
if (write(outfd, zeroes, 6) != 6)
tools/testing/selftests/bpf/progs/dynptr_success.c
748
char zeroes[32] = {'\0'};
tools/testing/selftests/bpf/progs/dynptr_success.c
753
err = err ?: bpf_memcmp(zeroes, memset_zero_data, data_sz);