Searched refs:linetable (Results 1 – 7 of 7) sorted by relevance
/third_party/libwebsockets/lib/misc/fts/ |
D | trie.c | 547 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() 1053 if ((int)write(t->fd, linetable, (size_t)bp) != bp) in lws_fts_fill() 1065 g16(linetable, (uint16_t)(t->c - (jg2_file_offset)lbh)); in lws_fts_fill() 1066 g16(linetable + 2, (uint16_t)(t->line_number - sline)); in lws_fts_fill() [all …]
|
D | trie-fd.c | 61 struct linetable { struct 62 struct linetable *next; argument 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()
|
D | README.md | 233 There is a final linetable chunk consisting of all zeros to indicate the end
|
/third_party/python/Objects/ |
D | codeobject.c | 122 PyObject *linetable) in PyCode_NewWithPosOnlyArgs() argument 140 linetable == NULL || !PyBytes_Check(linetable)) { in PyCode_NewWithPosOnlyArgs() 261 Py_INCREF(linetable); in PyCode_NewWithPosOnlyArgs() 262 co->co_linetable = linetable; in PyCode_NewWithPosOnlyArgs() 280 PyObject *linetable) in PyCode_New() argument 285 name, firstlineno, linetable); in PyCode_New() 553 int firstlineno, PyObject *linetable, PyObject *freevars, in code_new_impl() argument 621 name, firstlineno, linetable); in code_new_impl() 1258 PyLineTable_InitAddressRange(const char *linetable, Py_ssize_t length, int firstlineno, PyCodeAddre… in PyLineTable_InitAddressRange() argument 1260 range->opaque.lo_next = linetable; in PyLineTable_InitAddressRange() [all …]
|
/third_party/python/Objects/clinic/ |
D | codeobject.c.h | 18 int firstlineno, PyObject *linetable, PyObject *freevars, 38 PyObject *linetable; in code_new() local 117 linetable = PyTuple_GET_ITEM(args, 13); in code_new() 135 …ize, flags, code, consts, names, varnames, filename, name, firstlineno, linetable, freevars, cellv… in code_new()
|
/third_party/python/Include/cpython/ |
D | code.h | 178 void PyLineTable_InitAddressRange(const char *linetable, Py_ssize_t length, int firstlineno, PyCode…
|
/third_party/python/Python/ |
D | marshal.c | 1319 PyObject *linetable = NULL; in r_object() local 1374 linetable = r_object(p); in r_object() 1375 if (linetable == NULL) in r_object() 1383 firstlineno, linetable); in r_object() 1395 Py_XDECREF(linetable); in r_object()
|