| /Linux-v4.19/drivers/misc/altera-stapl/ |
| D | altera-jtag.c | 91 struct altera_jtag *js = &astate->js; in altera_jinit() local 94 js->jtag_state = ILLEGAL_JTAG_STATE; in altera_jinit() 97 js->drstop_state = IDLE; in altera_jinit() 98 js->irstop_state = IDLE; in altera_jinit() 99 js->dr_pre = 0; in altera_jinit() 100 js->dr_post = 0; in altera_jinit() 101 js->ir_pre = 0; in altera_jinit() 102 js->ir_post = 0; in altera_jinit() 103 js->dr_length = 0; in altera_jinit() 104 js->ir_length = 0; in altera_jinit() [all …]
|
| D | altera-jtag.h | 79 struct altera_jtag js; member 85 int altera_set_drstop(struct altera_jtag *js, enum altera_jtag_state state); 86 int altera_set_irstop(struct altera_jtag *js, enum altera_jtag_state state); 87 int altera_set_dr_pre(struct altera_jtag *js, u32 count, u32 start_index, 89 int altera_set_ir_pre(struct altera_jtag *js, u32 count, u32 start_index, 91 int altera_set_dr_post(struct altera_jtag *js, u32 count, u32 start_index, 93 int altera_set_ir_post(struct altera_jtag *js, u32 count, u32 start_index,
|
| D | altera.c | 784 status = altera_set_dr_pre(&astate->js, count, 0, NULL); in altera_execute() 797 status = altera_set_dr_pre(&astate->js, count, 0, in altera_execute() 807 status = altera_set_dr_post(&astate->js, count, in altera_execute() 822 status = altera_set_dr_post(&astate->js, count, 0, in altera_execute() 828 status = altera_set_ir_pre(&astate->js, count, in altera_execute() 842 status = altera_set_ir_pre(&astate->js, count, in altera_execute() 853 status = altera_set_ir_post(&astate->js, count, in altera_execute() 868 status = altera_set_ir_post(&astate->js, count, 0, in altera_execute() 1075 status = altera_set_irstop(&astate->js, args[0]); in altera_execute() 1082 status = altera_set_drstop(&astate->js, args[0]); in altera_execute() [all …]
|
| /Linux-v4.19/tools/perf/pmu-events/ |
| D | jsmn.c | 59 static jsmnerr_t jsmn_parse_primitive(jsmn_parser *parser, const char *js, in jsmn_parse_primitive() argument 69 switch (js[parser->pos]) { in jsmn_parse_primitive() 88 if (js[parser->pos] < 32 || js[parser->pos] >= 127) { in jsmn_parse_primitive() 116 static jsmnerr_t jsmn_parse_string(jsmn_parser *parser, const char *js, in jsmn_parse_string() argument 127 char c = js[parser->pos]; in jsmn_parse_string() 144 switch (js[parser->pos]) { in jsmn_parse_string() 173 jsmnerr_t jsmn_parse(jsmn_parser *parser, const char *js, size_t len, in jsmn_parse() argument 184 c = js[parser->pos]; in jsmn_parse() 222 r = jsmn_parse_string(parser, js, len, tokens, in jsmn_parse() 263 r = jsmn_parse_primitive(parser, js, len, tokens, in jsmn_parse()
|
| D | jsmn.h | 62 jsmnerr_t jsmn_parse(jsmn_parser *parser, const char *js,
|
| /Linux-v4.19/arch/x86/math-emu/ |
| D | round_Xsig.S | 42 js L_round /* Already normalized */ 102 js L_n_exit /* Already normalized */ 111 js L_n_exit /* Normalized now */
|
| D | reg_norm.S | 36 js L_done /* Already normalized */ 114 js L_exit_nuo_valid /* Already normalized */
|
| D | wm_sqrt.S | 392 js sqrt_near_exact_small 452 js sqrt_more_prec_small
|
| D | polynom_Xsig.S | 65 js L_accum_done
|
| D | reg_round.S | 585 js LPseudoDenormal /* Will be masked underflow */ 588 js L_Normalised /* No longer a denormal */
|
| D | reg_u_sub.S | 51 js L_bugged_1
|
| /Linux-v4.19/drivers/char/ |
| D | Makefile | 55 obj-$(CONFIG_JS_RTC) += js-rtc.o 56 js-rtc-y = rtc.o
|
| D | Kconfig | 315 module will be called js-rtc.
|
| /Linux-v4.19/drivers/input/joystick/ |
| D | analog.c | 53 static char *js[ANALOG_PORTS]; variable 56 module_param_array_named(map, js, charp, &js_nargs, 0); 754 if (!strcmp(analog_types[j].name, js[i])) { in analog_parse_options() 760 analog_options[i] = simple_strtoul(js[i], &end, 0); in analog_parse_options() 761 if (end != js[i]) continue; in analog_parse_options() 764 if (!strlen(js[i])) continue; in analog_parse_options() 766 printk(KERN_WARNING "analog.c: Bad config for port %d - \"%s\"\n", i, js[i]); in analog_parse_options()
|
| /Linux-v4.19/drivers/md/ |
| D | dm-integrity.c | 506 struct journal_sector *js; in access_journal_entry() local 513 js = access_journal(ic, section, rel_sector); in access_journal_entry() 514 return (struct journal_entry *)((char *)js + offset * ic->journal_entry_size); in access_journal_entry() 587 struct journal_sector *js = access_journal(ic, section, j); in rw_section_mac() local 590 memcpy(&js->mac, result + (j * JOURNAL_MAC_PER_SECTOR), JOURNAL_MAC_PER_SECTOR); in rw_section_mac() 592 if (memcmp(&js->mac, result + (j * JOURNAL_MAC_PER_SECTOR), JOURNAL_MAC_PER_SECTOR)) in rw_section_mac() 1525 struct journal_sector *js; in __journal_read_write() local 1538 js = access_journal_data(ic, journal_section, journal_entry); in __journal_read_write() 1542 memcpy(mem_ptr, js, JOURNAL_SECTOR_DATA); in __journal_read_write() 1544 js++; in __journal_read_write() [all …]
|
| /Linux-v4.19/Documentation/input/joydev/ |
| D | joystick-api.rst | 13 This document describes legacy ``js`` interface. Newer clients are 302 struct JS_DATA_TYPE js; 304 if (read (fd, &js, JS_RETURN) != JS_RETURN) { 327 first_button_state = js.buttons & 1; 328 second_button_state = js.buttons & 2;
|
| D | joystick.rst | 42 rm js*
|
| /Linux-v4.19/arch/x86/lib/ |
| D | atomic64_cx8_32.S | 116 js 2f
|
| D | atomic64_386_32.S | 186 js 1f
|
| /Linux-v4.19/kernel/rcu/ |
| D | tree.c | 1506 unsigned long js; in check_cpu_stall() local 1534 js = READ_ONCE(rsp->jiffies_stall); in check_cpu_stall() 1540 ULONG_CMP_LT(j, js) || in check_cpu_stall() 1541 ULONG_CMP_GE(gps, js)) in check_cpu_stall() 1547 cmpxchg(&rsp->jiffies_stall, js, jn) == js) { in check_cpu_stall() 1553 ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY) && in check_cpu_stall() 1554 cmpxchg(&rsp->jiffies_stall, js, jn) == js) { in check_cpu_stall()
|
| /Linux-v4.19/tools/perf/Documentation/ |
| D | tips.txt | 35 To add Node.js USDT(User-Level Statically Defined Tracing): perf buildid-cache --add `which node`
|
| /Linux-v4.19/Documentation/translations/zh_CN/ |
| D | SubmittingPatches | 199 要修正这个问题,只需要将你的 mozilla 的 defaults/pref/mailnews.js 文件
|
| /Linux-v4.19/Documentation/x86/ |
| D | entry_64.txt | 76 js 1f /* negative -> in kernel */
|
| /Linux-v4.19/arch/x86/entry/ |
| D | entry_64.S | 1185 js 1f /* negative -> in kernel */
|
| /Linux-v4.19/Documentation/admin-guide/ |
| D | kernel-parameters.txt | 1870 js= [HW,JOY] Analog joystick
|