Symbol: TAG_LEN
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
105
write_record(int fd, off_t offset, const uint8_t tag[TAG_LEN],
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
111
memcpy(record, tag, TAG_LEN);
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
112
store_32_be(timestamp, record + TAG_LEN);
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
137
store(krb5_context context, int fd, const uint8_t tag[TAG_LEN], uint32_t now,
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
145
uint8_t seed[K5_HASH_SEED_LEN], r1tag[TAG_LEN], r2tag[TAG_LEN];
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
169
ind = k5_siphash24(tag, TAG_LEN, seed) % nrecords;
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
177
if ((nread >= 1 && r1stamp && memcmp(r1tag, tag, TAG_LEN) == 0) ||
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
178
(nread == 2 && r2stamp && memcmp(r2tag, tag, TAG_LEN) == 0))
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
205
uint8_t tagbuf[TAG_LEN], *tag;
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
212
if (tag_data->length >= TAG_LEN) {
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
216
memset(tagbuf + tag_data->length, 0, TAG_LEN - tag_data->length);
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
43
#define RECORD_LEN (TAG_LEN + 4)
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
74
read_records(int fd, off_t offset, uint8_t tag1_out[TAG_LEN],
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
75
uint32_t *timestamp1_out, uint8_t tag2_out[TAG_LEN],
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
91
memcpy(tag1_out, buf, TAG_LEN);
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
92
*timestamp1_out = load_32_be(buf + TAG_LEN);
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
96
memcpy(tag2_out, buf + RECORD_LEN, TAG_LEN);
crypto/krb5/src/lib/krb5/rcache/rc_file2.c
97
*timestamp2_out = load_32_be(buf + RECORD_LEN + TAG_LEN);
crypto/krb5/src/lib/krb5/rcache/t_rcfile2.c
104
uint8_t tag[TAG_LEN] = { 0 };
crypto/krb5/src/lib/krb5/rcache/t_rcfile2.c
154
uint8_t tag[TAG_LEN] = { 0 };
crypto/krb5/src/lib/krb5/rcache/t_rcfile2.c
61
krb5_data tag_data = make_data(tag, TAG_LEN);
crypto/krb5/src/lib/krb5/rcache/t_rcfile2.c
75
uint8_t tag[TAG_LEN] = { 0 }, seed[K5_HASH_SEED_LEN] = { 0 }, data[4];
crypto/openssl/apps/speed.c
1022
TAG_LEN, NULL)) {
crypto/openssl/apps/speed.c
1075
unsigned char tag[TAG_LEN];
crypto/openssl/apps/speed.c
1095
TAG_LEN, NULL)) {
crypto/openssl/apps/speed.c
1114
memcpy(tag, tempargs->tag, TAG_LEN);
crypto/openssl/apps/speed.c
1117
TAG_LEN, tag)) {
crypto/openssl/apps/speed.c
3091
TAG_LEN, NULL)) {
crypto/openssl/apps/speed.c
3142
TAG_LEN, &loopargs[k].tag)) {
crypto/openssl/apps/speed.c
610
unsigned char tag[TAG_LEN];