Lines Matching refs:cdef
9 ffi.cdef("int close(int); static const int BB = 42; int somevar;")
24 ffi.cdef("static const long BB; static const float BF = 12;")
39 e = py.test.raises(CDefError, ffi.cdef, "#define BB 12.34")
45 ffi.cdef("#define FOO ...")
54 ffi.cdef("typedef int foobar_t;")
69 ffi.cdef("enum myenum_e { AA, BB, CC=-42 };")
85 ffi.cdef("struct foo_s { int a; signed char b[]; }; struct bar_s;")
100 ffi.cdef("#define ABC 123")
131 ffi.cdef("static const int BB = -42;")
146 baseffi.cdef("struct foo_s { int x; };")
177 ffi.cdef("typedef int32_t my_array_t[42];")
192 ffi.cdef("typedef int32_t my_array_t[3000000000];")
199 ffi.cdef("int myglob;")
214 ffi.cdef("struct foo_s { int y:10; short x:5; };")