Searched refs:p1_type (Results 1 – 2 of 2) sorted by relevance
/freebsd/lib/libc/gen/ |
H A D | _pthread_stubs.c | 187 #define STUB_FUNC2(name, idx, ret, p0_type, p1_type) \ argument 188 static ret FUNC_EXP(name)(p0_type, p1_type) __used; \ 189 static ret FUNC_INT(name)(p0_type, p1_type) __used; \ 192 typedef ret (*FUNC_TYPE(name))(p0_type, p1_type); \ 193 static ret FUNC_EXP(name)(p0_type p0, p1_type p1) \ 199 static ret FUNC_INT(name)(p0_type p0, p1_type p1) \ 206 #define STUB_FUNC3(name, idx, ret, p0_type, p1_type, p2_type) \ argument 207 static ret FUNC_EXP(name)(p0_type, p1_type, p2_type) __used; \ 208 static ret FUNC_INT(name)(p0_type, p1_type, p2_type) __used; \ 211 typedef ret (*FUNC_TYPE(name))(p0_type, p1_type, p2_type); \ [all …]
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_cook_book.md | 3528 template <typename p1_type, ..., typename pk_type> 3529 FooMatcherPk<p1_type, ..., pk_type> 3530 Foo(p1_type p1, ..., pk_type pk) { ... } 3541 `FooMatcherPk<p1_type, ..., pk_type>`. This can be useful when composing
|