Lines Matching defs:dp
13 void test(int *dp, int value) {
14 dp = ptrauth_strip(dp, VALID_DATA_KEY);
15 ptrauth_extra_data_t t0 = ptrauth_blend_discriminator(dp, value);
17 dp = ptrauth_sign_unauthenticated(dp, VALID_DATA_KEY, 0);
18 dp = ptrauth_auth_and_resign(dp, VALID_DATA_KEY, dp, VALID_DATA_KEY, dp);
19 dp = ptrauth_auth_data(dp, VALID_DATA_KEY, 0);
22 ptrauth_auth_and_resign(&pu1, VALID_DATA_KEY, dp, VALID_DATA_KEY, dp);
23 ptrauth_auth_and_resign(dp, VALID_DATA_KEY, &pu2, VALID_DATA_KEY, dp);
24 ptrauth_auth_and_resign(dp, VALID_DATA_KEY, dp, VALID_DATA_KEY, &pu3);
25 ptrauth_sign_generic_data(pu4, dp);
26 ptrauth_sign_generic_data(dp, pu5);
28 ptrauth_auth_data(dp, VALID_DATA_KEY, pu7);
32 int t2 = ptrauth_sign_generic_data(dp, 0);
36 void test_string_discriminator(int *dp) {
41 void test_type_discriminator(int *dp) {
46 void test_sign_constant(int *dp) {
47 dp = ptrauth_sign_constant(&dv, VALID_DATA_KEY, 0);