Lines Matching defs:x
66 #define OP_P(x) { (x) }, argument
67 #define OP_U64(x) { NULL, (x) }, argument
68 #define OP_I64(x) { NULL, 0, (x) }, argument
69 #define OP_D(x) { NULL, 0, 0, (x) }, argument
70 #define OP_FP(x) { NULL, 0, 0, 0, (void (*)(void))(x) }, argument
105 #define OP_CALL_P(f, x) OP_U64(OPK_CALL_P) OP_FP(f) OP_P (x) argument
106 #define OP_CALL_I(f, x) OP_U64(OPK_CALL_I) OP_FP(f) OP_I64(x) argument
107 #define OP_CALL_U64(f, x) OP_U64(OPK_CALL_U64) OP_FP(f) OP_U64(x) argument
108 #define OP_CALL_I64(f, x) OP_U64(OPK_CALL_I64) OP_FP(f) OP_I64(x) argument
109 #define OP_CALL_D(f, x) OP_U64(OPK_CALL_D) OP_FP(f) OP_D (x) argument
110 #define OP_CALL_PZ(f, x, xl) OP_U64(OPK_CALL_PZ) OP_FP(f) OP_P (x) OP_U64(xl) argument
119 #define OPJ_BOOL(x) OP_CALL_I(ossl_json_bool, (x)) argument
120 #define OPJ_U64(x) OP_CALL_U64(ossl_json_u64, (x)) argument
121 #define OPJ_I64(x) OP_CALL_I64(ossl_json_i64, (x)) argument
122 #define OPJ_F64(x) OP_CALL_D(ossl_json_f64, (x)) argument
123 #define OPJ_KEY(x) OP_CALL_P(ossl_json_key, (x)) argument
124 #define OPJ_STR(x) OP_CALL_P(ossl_json_str, (x)) argument
125 #define OPJ_STR_LEN(x, xl) OP_CALL_PZ(ossl_json_str_len, (x), (xl)) argument
126 #define OPJ_STR_HEX(x, xl) OP_CALL_PZ(ossl_json_str_hex, (x), (xl)) argument