104
|
1 typedef struct PipeRead<Type, Isa> impl SysRead {
|
138
|
2 struct pipe* p;
|
|
3 int i;
|
|
4 int n;
|
|
5 __code cbc_piperead1(Type* sys_read, struct pipe* p, __code next(...));
|
|
6 __code cbc_piperead2(Type* sys_read, int i, int n,struct pipe* p, __code next(...));
|
|
7 __code cbc_piperead3(Type* sys_read, struct pipe* p, int i, __code next(...));
|
|
8 __code next(...);
|
104
|
9 } PipeRead;
|
138
|
10
|
|
11 /*
|
|
12 __code cbc_piperead1(Impl* sys_read, struct pipe* p);
|
|
13 __code cbc_piperead2(Impl* sys_read, int i, int n,struct pipe* p);
|
|
14 __code cbc_piperead3(Impl* sys_read, struct pipe* p, int i);
|
|
15 */
|