Home
last modified time | relevance | path

Searched refs:linetable (Results 1 - 8 of 8) sorted by relevance

/third_party/libwebsockets/lib/misc/fts/
H A Dtrie.c547 unsigned char c, linetable[256], vlibuf[8]; in lws_fts_fill() local
572 bp += g16(&linetable[bp], 0); in lws_fts_fill()
573 bp += g16(&linetable[bp], 0); in lws_fts_fill()
574 bp += g32(&linetable[bp], 0); in lws_fts_fill()
592 bp += wq32(&linetable[bp], (uint32_t)t->chars_in_line); in lws_fts_fill()
593 if ((unsigned int)bp > sizeof(linetable) - 6) { in lws_fts_fill()
594 if ((int)write(t->fd, linetable, (unsigned int)bp) != bp) { in lws_fts_fill()
595 lwsl_err("%s: linetable write failed\n", in lws_fts_fill()
1053 if ((int)write(t->fd, linetable, (size_t)bp) != bp) in lws_fts_fill()
1065 g16(linetable, (uint16_ in lws_fts_fill()
[all...]
H A Dtrie-fd.c61 struct linetable { struct
62 struct linetable *next;
238 static struct linetable *
242 struct linetable *lt, *first = NULL, **prev = NULL; in lws_fts_cache_chunktable()
284 lws_fts_getfileoffset(struct lws_fts_file *jtf, struct linetable *ltstart, in lws_fts_getfileoffset()
287 struct linetable *lt = ltstart; in lws_fts_getfileoffset()
621 struct linetable *ltst; in lws_fts_search()
/third_party/python/Objects/
H A Dcodeobject.c247 con->linetable == NULL || !PyBytes_Check(con->linetable) || in _PyCode_Validate()
305 Py_INCREF(con->linetable); in init_code()
306 co->co_linetable = con->linetable; in init_code()
470 // Compact the linetable if we are opted out of debug in _PyCode_New()
473 replacement_locations = remove_column_info(con->linetable); in _PyCode_New()
477 con->linetable = replacement_locations; in _PyCode_New()
504 PyObject *linetable, in PyCode_NewWithPosOnlyArgs()
582 .linetable = linetable, in PyCode_NewWithPosOnlyArgs()
498 PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_NewWithPosOnlyArgs() argument
622 PyCode_New(int argcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_New() argument
648 static const uint8_t linetable[2] = { global() variable
781 _PyLineTable_InitAddressRange(const char *linetable, Py_ssize_t length, int firstlineno, PyCodeAddressRange *range) _PyLineTable_InitAddressRange() argument
795 const char *linetable = PyBytes_AS_STRING(co->co_linetable); _PyCode_InitAddressRange() local
1522 code_new_impl(PyTypeObject *type, int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable, PyObject *freevars, PyObject *cellvars) code_new_impl() argument
[all...]
/third_party/python/Objects/clinic/
H A Dcodeobject.c.h8 " qualname, firstlineno, linetable, exceptiontable, freevars=(),\n"
19 PyObject *qualname, int firstlineno, PyObject *linetable,
41 PyObject *linetable; in code_new() local
130 linetable = PyTuple_GET_ITEM(args, 14); in code_new()
153 return_value = code_new_impl(type, argcount, posonlyargcount, kwonlyargcount, nlocals, stacksize, flags, code, consts, names, varnames, filename, name, qualname, firstlineno, linetable, exceptiontable, freevars, cellvars); in code_new()
/third_party/python/Include/internal/
H A Dpycore_code.h178 PyObject *linetable; member
227 const char *linetable,
/third_party/python/Python/
H A Dmarshal.c1369 PyObject* linetable = NULL; in r_object() local
1422 linetable = r_object(p); in r_object()
1423 if (linetable == NULL) in r_object()
1437 .linetable = linetable, in r_object()
1474 Py_XDECREF(linetable); in r_object()
H A Dcompile.c8036 .linetable = a->a_linetable, in makecode()
/third_party/python/Tools/gdb/
H A Dlibpython.py658 def parse_location_table(firstlineno, linetable):
661 it = iter(linetable)

Completed in 22 milliseconds