/linux-4.4.14/lib/xz/ |
D | xz_dec_lzma2.c | 264 struct dictionary dict; member 286 static void dict_reset(struct dictionary *dict, struct xz_buf *b) in dict_reset() argument 288 if (DEC_IS_SINGLE(dict->mode)) { in dict_reset() 289 dict->buf = b->out + b->out_pos; in dict_reset() 290 dict->end = b->out_size - b->out_pos; in dict_reset() 293 dict->start = 0; in dict_reset() 294 dict->pos = 0; in dict_reset() 295 dict->limit = 0; in dict_reset() 296 dict->full = 0; in dict_reset() 300 static void dict_limit(struct dictionary *dict, size_t out_max) in dict_limit() argument [all …]
|
/linux-4.4.14/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
D | Util.py | 35 def add_stats(dict, key, value): argument 36 if not dict.has_key(key): 37 dict[key] = (value, value, value, 1) 39 min, max, avg, count = dict[key] 45 dict[key] = (min, max, avg, count + 1)
|
/linux-4.4.14/tools/perf/util/scripting-engines/ |
D | trace-event-python.c | 95 static void pydict_set_item_string_decref(PyObject *dict, const char *key, PyObject *val) in pydict_set_item_string_decref() argument 97 PyDict_SetItemString(dict, key, val); in pydict_set_item_string_decref() 389 PyObject *dict = NULL; in python_process_tracepoint() local 416 dict = PyDict_New(); in python_process_tracepoint() 417 if (!dict) in python_process_tracepoint() 442 pydict_set_item_string_decref(dict, "common_cpu", PyInt_FromLong(cpu)); in python_process_tracepoint() 443 pydict_set_item_string_decref(dict, "common_s", PyInt_FromLong(s)); in python_process_tracepoint() 444 pydict_set_item_string_decref(dict, "common_ns", PyInt_FromLong(ns)); in python_process_tracepoint() 445 pydict_set_item_string_decref(dict, "common_pid", PyInt_FromLong(pid)); in python_process_tracepoint() 446 pydict_set_item_string_decref(dict, "common_comm", PyString_FromString(comm)); in python_process_tracepoint() [all …]
|
/linux-4.4.14/drivers/isdn/i4l/ |
D | isdn_bsdcomp.c | 139 struct bsd_dict *dict; /* dictionary */ member 284 vfree(db->dict); in bsd_free() 285 db->dict = NULL; in bsd_free() 343 db->dict = vmalloc(hsize * sizeof(struct bsd_dict)); in bsd_alloc() 344 if (!db->dict) { in bsd_alloc() 405 db->dict[indx].codem1 = BADCODEM1; in bsd_init() 406 db->dict[indx].cptr = 0; in bsd_init() 423 #define dict_ptrx(p, idx) &(p->dict[idx])
|
/linux-4.4.14/drivers/net/ppp/ |
D | bsd_comp.c | 160 struct bsd_dict *dict; /* dictionary */ member 335 vfree(db->dict); in bsd_free() 336 db->dict = NULL; in bsd_free() 409 db->dict = vmalloc(hsize * sizeof(struct bsd_dict)); in bsd_alloc() 410 if (!db->dict) in bsd_alloc() 490 db->dict[indx].codem1 = BADCODEM1; in bsd_init() 491 db->dict[indx].cptr = 0; in bsd_init() 523 #define dict_ptrx(p,idx) &(p->dict[idx])
|
/linux-4.4.14/lib/lzo/ |
D | lzo1x_compress.c | 30 lzo_dict_t * const dict = (lzo_dict_t *) wrkmem; in lzo1x_1_do_compress() local 48 m_pos = in + dict[t]; in lzo1x_1_do_compress() 49 dict[t] = (lzo_dict_t) (ip - in); in lzo1x_1_do_compress()
|
/linux-4.4.14/scripts/ |
D | xz_wrap.sh | 23 exec xz --check=crc32 $BCJ --lzma2=$LZMA2OPTS,dict=32MiB
|
D | analyze_suspend.py | 102 altdevname = dict() 238 'suspend_prepare': {'list': dict(), 'start': -1.0, 'end': -1.0, 240 'suspend': {'list': dict(), 'start': -1.0, 'end': -1.0, 242 'suspend_late': {'list': dict(), 'start': -1.0, 'end': -1.0, 244 'suspend_noirq': {'list': dict(), 'start': -1.0, 'end': -1.0, 246 'suspend_machine': {'list': dict(), 'start': -1.0, 'end': -1.0, 248 'resume_machine': {'list': dict(), 'start': -1.0, 'end': -1.0, 250 'resume_noirq': {'list': dict(), 'start': -1.0, 'end': -1.0, 252 'resume_early': {'list': dict(), 'start': -1.0, 'end': -1.0, 254 'resume': {'list': dict(), 'start': -1.0, 'end': -1.0, [all …]
|
D | checkkconfigsymbols.py | 219 referenced_features = dict() # {feature: [files]} 246 parse_kconfig_file(kfile, defined_features, dict())
|
D | Makefile.lib | 389 xz --check=crc32 --lzma2=dict=1MiB) > $@ || \
|
/linux-4.4.14/kernel/printk/ |
D | printk.c | 425 const char *dict, u16 dict_len, in log_store() argument 462 memcpy(log_dict(msg), dict, dict_len); in log_store() 559 char *dict, size_t dict_len, in msg_print_ext_body() argument 580 unsigned char c = dict[i]; in msg_print_ext_body() 1660 const char *dict, size_t dictlen, in vprintk_emit() argument 1760 if (dict) in vprintk_emit() 1777 dict, dictlen, text, text_len); in vprintk_emit() 1800 dict, dictlen, text, text_len); in vprintk_emit() 1840 const char *dict, size_t dictlen, in printk_emit() argument 1847 r = vprintk_emit(facility, level, dict, dictlen, fmt, args); in printk_emit() [all …]
|
/linux-4.4.14/include/linux/ |
D | printk.h | 130 const char *dict, size_t dictlen, 138 const char *dict, size_t dictlen,
|
/linux-4.4.14/tools/perf/util/ |
D | python.c | 1084 PyObject *dict, *module = Py_InitModule("perf", perf__methods); in initperf() local 1109 dict = PyModule_GetDict(module); in initperf() 1110 if (dict == NULL) in initperf() 1117 PyDict_SetItemString(dict, perf__constants[i].name, obj); in initperf()
|
/linux-4.4.14/tools/perf/tests/ |
D | attr.py | 25 class Event(dict):
|
/linux-4.4.14/Documentation/ |
D | xz.txt | 78 xz --check=crc32 --lzma2=dict=512KiB inputfile
|
/linux-4.4.14/drivers/net/wireless/b43legacy/ |
D | phy.c | 1318 static const u8 dict[10] = { 11, 10, 11, 12, 13, 12, 13, 12, 13, 12 }; in b43legacy_find_lopair() local 1327 return b43legacy_get_lopair(phy, dict[rfatt], bbatt); in b43legacy_find_lopair()
|