Symbol: structure
crypto/openssl/crypto/asn1/d2i_pr.c
40
const char *structure;
crypto/openssl/crypto/asn1/d2i_pr.c
69
structure = "PrivateKeyInfo";
crypto/openssl/crypto/asn1/d2i_pr.c
72
structure = "type-specific";
crypto/openssl/crypto/asn1/d2i_pr.c
78
dctx = OSSL_DECODER_CTX_new_for_pkey(ppkey, "DER", structure, key_name,
crypto/openssl/test/endecoder_legacy_test.c
307
const char *structure)
crypto/openssl/test/endecoder_legacy_test.c
324
"PEM", structure,
crypto/openssl/test/endecoder_legacy_test.c
337
"PEM", structure,
crypto/openssl/test/endecoder_legacy_test.c
373
const char *structure)
crypto/openssl/test/endecoder_legacy_test.c
390
"PEM", structure,
crypto/openssl/test/endecoder_legacy_test.c
402
"PEM", structure,
crypto/openssl/test/endecoder_legacy_test.c
436
const char *structure)
crypto/openssl/test/endecoder_legacy_test.c
453
"DER", structure,
crypto/openssl/test/endecoder_legacy_test.c
467
"DER", structure,
crypto/openssl/test/endecoder_legacy_test.c
529
for (i = 0; i < OSSL_NELEM(test_stanza->structure); i++) {
crypto/openssl/test/endecoder_legacy_test.c
530
const char *structure = test_stanza->structure[i];
crypto/openssl/test/endecoder_legacy_test.c
533
test_stanza->keytype, structure);
crypto/openssl/test/endecoder_legacy_test.c
538
pkey, selection, structure))
crypto/openssl/test/endecoder_legacy_test.c
548
for (i = 0; i < OSSL_NELEM(test_stanza->structure); i++) {
crypto/openssl/test/endecoder_legacy_test.c
549
const char *structure = test_stanza->structure[i];
crypto/openssl/test/endecoder_legacy_test.c
552
test_stanza->keytype, structure);
crypto/openssl/test/endecoder_legacy_test.c
557
pkey, selection, structure))
crypto/openssl/test/endecoder_legacy_test.c
566
for (i = 0; i < OSSL_NELEM(test_stanza->structure); i++) {
crypto/openssl/test/endecoder_legacy_test.c
567
const char *structure = test_stanza->structure[i];
crypto/openssl/test/endecoder_legacy_test.c
570
test_stanza->keytype, structure);
crypto/openssl/test/endecoder_legacy_test.c
576
pkey, selection, structure))
crypto/openssl/test/endecoder_legacy_test.c
585
const char *structure = "SubjectPublicKeyInfo";
crypto/openssl/test/endecoder_legacy_test.c
588
test_stanza->keytype, structure);
crypto/openssl/test/endecoder_legacy_test.c
593
pkey, selection, structure))
crypto/openssl/test/endecoder_legacy_test.c
601
for (i = 0; i < OSSL_NELEM(test_stanza->structure); i++) {
crypto/openssl/test/endecoder_legacy_test.c
602
const char *structure = test_stanza->structure[i];
crypto/openssl/test/endecoder_legacy_test.c
605
test_stanza->keytype, structure);
crypto/openssl/test/endecoder_legacy_test.c
610
pkey, selection, structure))
crypto/openssl/test/endecoder_legacy_test.c
620
for (i = 0; i < OSSL_NELEM(test_stanza->structure); i++) {
crypto/openssl/test/endecoder_legacy_test.c
621
const char *structure = test_stanza->structure[i];
crypto/openssl/test/endecoder_legacy_test.c
624
test_stanza->keytype, structure);
crypto/openssl/test/endecoder_legacy_test.c
629
pkey, selection, structure))
crypto/openssl/test/endecoder_legacy_test.c
638
for (i = 0; i < OSSL_NELEM(test_stanza->structure); i++) {
crypto/openssl/test/endecoder_legacy_test.c
639
const char *structure = test_stanza->structure[i];
crypto/openssl/test/endecoder_legacy_test.c
642
test_stanza->keytype, structure);
crypto/openssl/test/endecoder_legacy_test.c
646
pkey, selection, structure))
crypto/openssl/test/endecoder_legacy_test.c
655
const char *structure = "SubjectPublicKeyInfo";
crypto/openssl/test/endecoder_legacy_test.c
658
test_stanza->keytype, structure);
crypto/openssl/test/endecoder_legacy_test.c
662
pkey, selection, structure))
crypto/openssl/test/endecoder_legacy_test.c
74
const char *structure[2];
sys/ofed/drivers/infiniband/core/ib_packer.c
116
(char *)structure + desc[i].struct_offset_bytes,
sys/ofed/drivers/infiniband/core/ib_packer.c
128
static void value_write(int offset, int size, u64 val, void *structure)
sys/ofed/drivers/infiniband/core/ib_packer.c
131
case 8: *( u8 *) ((char *)structure + offset) = val; break;
sys/ofed/drivers/infiniband/core/ib_packer.c
132
case 16: *(__be16 *) ((char *)structure + offset) = cpu_to_be16(val); break;
sys/ofed/drivers/infiniband/core/ib_packer.c
133
case 32: *(__be32 *) ((char *)structure + offset) = cpu_to_be32(val); break;
sys/ofed/drivers/infiniband/core/ib_packer.c
134
case 64: *(__be64 *) ((char *)structure + offset) = cpu_to_be64(val); break;
sys/ofed/drivers/infiniband/core/ib_packer.c
153
void *structure)
sys/ofed/drivers/infiniband/core/ib_packer.c
174
structure);
sys/ofed/drivers/infiniband/core/ib_packer.c
188
structure);
sys/ofed/drivers/infiniband/core/ib_packer.c
196
memcpy((char *)structure + desc[i].struct_offset_bytes,
sys/ofed/drivers/infiniband/core/ib_packer.c
41
static u64 value_read(int offset, int size, void *structure)
sys/ofed/drivers/infiniband/core/ib_packer.c
44
case 1: return *(u8 *) ((char *)structure + offset);
sys/ofed/drivers/infiniband/core/ib_packer.c
45
case 2: return be16_to_cpup((__be16 *) ((char *)structure + offset));
sys/ofed/drivers/infiniband/core/ib_packer.c
46
case 4: return be32_to_cpup((__be32 *) ((char *)structure + offset));
sys/ofed/drivers/infiniband/core/ib_packer.c
47
case 8: return be64_to_cpup((__be64 *) ((char *)structure + offset));
sys/ofed/drivers/infiniband/core/ib_packer.c
66
void *structure,
sys/ofed/drivers/infiniband/core/ib_packer.c
82
structure) << shift;
sys/ofed/drivers/infiniband/core/ib_packer.c
99
structure) << shift;
sys/ofed/include/rdma/ib_pack.h
281
void *structure,
sys/ofed/include/rdma/ib_pack.h
287
void *structure);
tools/tools/netmap/nmreplay.c
1416
see the structure description for that.
usr.bin/indent/indent.c
957
case structure:
usr.bin/indent/lexi.c
245
if (state->last_token == structure && !state->p_l_follow) {
usr.bin/indent/lexi.c
255
state->last_u_d = (state->last_token == structure);
usr.bin/indent/lexi.c
296
return (structure);