HomeSort by relevance Sort by last modified time
    Searched refs:cdef (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/bintrees/bintrees/
cwalker.pxd 11 cdef class cWalker:
12 cdef node_t *node
13 cdef node_t *root
14 cdef node_stack_t *stack
16 cdef void set_tree(self, node_t *root)
stack.pxd 10 cdef extern from "stack.h":
qavltree.pyx 16 cdef class cAVLTree:
17 cdef node_t *_root
18 cdef int _count
52 cdef cWalker walker
65 cdef int result
74 cdef node_t *node
82 cdef node_t *node
qbintree.pyx 16 cdef class cBinaryTree:
17 cdef node_t *_root
18 cdef int _count
52 cdef cWalker walker
64 cdef int result
73 cdef node_t *node
81 cdef node_t *node
qrbtree.pyx 16 cdef class cRBTree:
17 cdef node_t *_root
18 cdef int _count
52 cdef cWalker walker
65 cdef int result
74 cdef node_t *node
82 cdef node_t *node
cwalker.pyx 14 cdef class cWalker:
23 cdef void set_tree(self, node_t *root):
48 cdef int cval
ctrees.pxd 8 cdef extern from "ctrees.h":
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
yasm.pyx 43 cdef extern from "Python.h":
44 cdef object PyCObject_FromVoidPtr(void *cobj, void (*destr)(void *))
45 cdef object PyCObject_FromVoidPtrAndDesc(void *cobj, void *desc,
47 cdef int PyType_Check(object)
48 cdef int PyCObject_Check(object)
49 cdef void *PyCObject_AsVoidPtr(object)
50 cdef void *PyCObject_GetDesc(object)
52 cdef object _PyLong_FromByteArray(unsigned char *bytes, unsigned int n,
54 cdef int _PyLong_AsByteArray(object v, unsigned char *bytes, unsigned int n,
57 cdef void Py_INCREF(object o
    [all...]
symrec.pxi 26 cdef class Symbol:
27 cdef yasm_symrec *sym
43 cdef yasm_sym_status status
58 cdef yasm_sym_vis vis
69 cdef yasm_expr *e
77 cdef yasm_symrec_get_label_bytecodep bc
99 cdef void __python_symrec_cb_destroy(void *data):
101 cdef void __python_symrec_cb_print(void *data, FILE *f, int indent_level):
107 cdef object __make_symbol(yasm_symrec *symrec):
108 cdef void *dat
    [all...]
expr.pxi 26 cdef extern from *:
28 cdef yasm_expr *yasm_expr_simplify(yasm_expr *e, int calc_bc_dist)
56 cdef object __make_expression(yasm_expr *expr):
59 cdef class Expression:
60 cdef yasm_expr *expr
72 cdef size_t numargs
73 cdef unsigned long line
88 cdef yasm_expr__item* __new_item(self, value) except NULL:
89 cdef yasm_expr__item *retval
117 cdef yasm_expr *retva
    [all...]
bytecode.pxi 26 cdef class Bytecode:
27 cdef yasm_bytecode *bc
29 cdef object __weakref__ # make weak-referenceable
63 cdef yasm_symrec *sym
64 cdef int i
85 cdef object __make_bytecode(yasm_bytecode *bc):
97 cdef yasm_bytecode *bc
107 #cdef class Section:
intnum.pxi 26 cdef class IntNum
28 cdef object __intnum_op_ex(object x, yasm_expr_op op, object y):
33 cdef object __intnum_op(object x, yasm_expr_op op, object y):
54 cdef object __make_intnum(yasm_intnum *intn):
57 cdef class IntNum:
58 cdef yasm_intnum *intn
61 cdef unsigned char buf[16]
95 cdef unsigned char buf[16]
128 cdef object __op(self, yasm_expr_op op, object x):
149 cdef yasm_intnum *
    [all...]
value.pxi 26 cdef class Value:
27 cdef yasm_value value
29 cdef unsigned int sz
errwarn.pxi 28 cdef int __error_check() except 1:
29 cdef yasm_error_class errclass
30 cdef unsigned long xrefline
31 cdef char *errstr, *xrefstr
floatnum.pxi 26 cdef class FloatNum:
27 cdef yasm_floatnum *flt
  /external/harfbuzz_ng/contrib/python/lib/
harfbuzz.pyx 0 cdef extern from "stdlib.h":
6 cdef extern from "ft2build.h" :
9 cdef extern from "freetype/freetype.h" :
20 cdef extern from "hb-common.h" :
21 cdef enum hb_direction_t :
36 cdef extern from "hb-unicode.h" :
41 cdef extern from "hb-ot-tag.h" :
44 cdef extern from "hb-buffer.h" :
84 cdef extern from "hb-blob.h" :
85 cdef struct hb_blob_t
    [all...]
fontconfig.pyx 0 cdef extern from "fontconfig/fontconfig.h" :
6 cdef enum FcResult '_FcResult' :
20 cdef class fcPattern :
21 cdef FcPattern *_pattern
24 cdef FcPattern *temp
25 cdef FcResult res
37 cdef int res
42 cdef FcChar8 *res
  /external/zlib/src/
make_vms.com 149 $ cdef = f$element(1," ",work)
545 $ in_ldef = f$locate(cdef,libdefs)
548 $ write aconf "#define ''cdef' 1"
550 f$extract(in_ldef + f$length(cdef) + 1, -
551 f$length(libdefs) - in_ldef - f$length(cdef) - 1, -
554 $ if (f$type('cdef') .eqs. "INTEGER")
556 $ write aconf "#define ''cdef' ", 'cdef'
558 $ if (f$type('cdef') .eqs. "STRING")
560 $ write aconf "#define ''cdef' ", """", '''cdef'', """
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
genpyx.py 346 toks.append( ' '*indent + 'cdef ' + node.pyxstr(indent=indent, cprefix=cprefix, shadow_name=shadow_name, **kw).strip() )
378 cdef = 'cdef '
379 if not use_cdef: cdef = '' # sometimes we don't want the cdef (eg. in a cast)
381 toks.append( ' '*indent + comment + cdef + Node.pyxstr(self,indent=indent, cprefix=cprefix, **kw).strip() ) # + "(cprefix=%s)"%cprefix)
388 # This cdef is no good: it does not expose a python object
390 #ostream.putln( 'cdef %s %s' % ( self.pyx_adaptor_decl(cobjects), self.name ) ) # _CObject
499 ostream.putln( 'cdef extern from "%s":\n pass\n' % filename )
500 ostream.putln( 'cdef extern from *:'
    [all...]

Completed in 123 milliseconds