Home
last modified time | relevance | path

Searched refs:decode_ctx (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/krb5/src/util/support/
H A Djson.c705 struct decode_ctx { struct
710 static int parse_value(struct decode_ctx *ctx, k5_json_value *val_out); argument
715 white_spaces(struct decode_ctx *ctx) in white_spaces()
755 parse_number(struct decode_ctx *ctx, k5_json_number *val_out) in parse_number()
789 parse_string(struct decode_ctx *ctx, char **str_out) in parse_string()
855 parse_object_association(k5_json_object obj, struct decode_ctx *ctx) in parse_object_association()
891 parse_object(struct decode_ctx *ctx, k5_json_object *val_out) in parse_object()
939 parse_array_item(k5_json_array array, struct decode_ctx *ctx) in parse_array_item()
954 parse_array(struct decode_ctx *ctx, k5_json_array *val_out) in parse_array()
1002 parse_value(struct decode_ctx *ctx, k5_json_value *val_out) in parse_value()
[all …]
/freebsd/crypto/openssl/test/
H A Devp_test.c3387 EVP_ENCODE_CTX *decode_ctx = NULL, *encode_ctx = NULL; in encode_test_run() local
3390 if (!TEST_ptr(decode_ctx = EVP_ENCODE_CTX_new())) { in encode_test_run()
3440 EVP_DecodeInit(decode_ctx); in encode_test_run()
3449 if (EVP_DecodeUpdate(decode_ctx, decode_out + output_len, &chunk_len, in encode_test_run()
3459 if (EVP_DecodeFinal(decode_ctx, decode_out + output_len, &chunk_len) != 1) { in encode_test_run()
3484 EVP_ENCODE_CTX_free(decode_ctx); in encode_test_run()