Home
last modified time | relevance | path

Searched refs:js (Results 1 – 17 of 17) sorted by relevance

/linux/drivers/misc/altera-stapl/
H A Daltera-jtag.c77 struct altera_jtag *js = &astate->js; in altera_jinit() local
80 js->jtag_state = ILLEGAL_JTAG_STATE; in altera_jinit()
83 js->drstop_state = IDLE; in altera_jinit()
84 js->irstop_state = IDLE; in altera_jinit()
85 js->dr_pre = 0; in altera_jinit()
86 js->dr_post = 0; in altera_jinit()
87 js->ir_pre = 0; in altera_jinit()
88 js->ir_post = 0; in altera_jinit()
89 js->dr_length = 0; in altera_jinit()
90 js->ir_length = 0; in altera_jinit()
[all …]
H A Daltera-jtag.h65 struct altera_jtag js; member
71 int altera_set_drstop(struct altera_jtag *js, enum altera_jtag_state state);
72 int altera_set_irstop(struct altera_jtag *js, enum altera_jtag_state state);
73 int altera_set_dr_pre(struct altera_jtag *js, u32 count, u32 start_index,
75 int altera_set_ir_pre(struct altera_jtag *js, u32 count, u32 start_index,
77 int altera_set_dr_post(struct altera_jtag *js, u32 count, u32 start_index,
79 int altera_set_ir_post(struct altera_jtag *js, u32 count, u32 start_index,
H A Daltera.c767 status = altera_set_dr_pre(&astate->js, count, 0, NULL); in altera_execute()
780 status = altera_set_dr_pre(&astate->js, count, 0, in altera_execute()
790 status = altera_set_dr_post(&astate->js, count, in altera_execute()
805 status = altera_set_dr_post(&astate->js, count, 0, in altera_execute()
811 status = altera_set_ir_pre(&astate->js, count, in altera_execute()
825 status = altera_set_ir_pre(&astate->js, count, in altera_execute()
836 status = altera_set_ir_post(&astate->js, count, in altera_execute()
851 status = altera_set_ir_post(&astate->js, count, 0, in altera_execute()
1040 status = altera_set_irstop(&astate->js, args[0]); in altera_execute()
1047 status = altera_set_drstop(&astate->js, args[0]); in altera_execute()
[all …]
/linux/tools/perf/Documentation/
H A Dperf-trace.txt328 0.000 ( 0.000 ms): Web Content/17136 minfault [js::gc::Chunk::fetchNextDecommittedArena+0x4b] => 0x7fbe6181b000 (?.)
329 js::gc::FreeSpan::initAsEmpty (inlined)
330 js::gc::Arena::setAsNotAllocated (inlined)
331 js::gc::Chunk::fetchNextDecommittedArena (/usr/lib64/firefox/libxul.so)
332 js::gc::Chunk::allocateArena (/usr/lib64/firefox/libxul.so)
333 js::gc::GCRuntime::allocateArena (/usr/lib64/firefox/libxul.so)
334 js::gc::ArenaLists::allocateFromArena (/usr/lib64/firefox/libxul.so)
335 js::gc::GCRuntime::tryNewTenuredThing<JSString, (js::AllowGC)1> (inlined)
336 js
[all...]
H A Dtips.txt53 To add Node.js USDT(User-Level Statically Defined Tracing): perf buildid-cache --add `which node`
/linux/kernel/rcu/
H A Dtree_stall.h784 unsigned long js; in check_cpu_stall() local
824 js = READ_ONCE(rcu_state.jiffies_stall); in check_cpu_stall()
830 ULONG_CMP_LT(j, js) || in check_cpu_stall()
831 ULONG_CMP_GE(gps, js) || in check_cpu_stall()
838 (self_detected || ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY)) && in check_cpu_stall()
839 cmpxchg(&rcu_state.jiffies_stall, js, jn) == js) { in check_cpu_stall()
940 unsigned long js; in show_rcu_state() local
947 js = j - data_race(READ_ONCE(rcu_state.gp_start)); in show_rcu_state()
953 js, ja, jr, jw, (long)data_race(READ_ONCE(rcu_state.gp_wake_seq)), in show_rcu_state()
/linux/drivers/input/joystick/
H A Danalog.c35 static char *js[ANALOG_PORTS]; variable
38 module_param_array_named(map, js, charp, &js_nargs, 0);
661 if (!strcmp(analog_types[j].name, js[i])) { in analog_parse_options()
667 analog_options[i] = simple_strtoul(js[i], &end, 0); in analog_parse_options()
668 if (end != js[i]) continue; in analog_parse_options()
671 if (!strlen(js[i])) continue; in analog_parse_options()
673 printk(KERN_WARNING "analog.c: Bad config for port %d - \"%s\"\n", i, js[i]); in analog_parse_options()
/linux/lib/crypto/x86/
H A Dpolyval-pclmul-avx.S301 js .LstrideLoopExit
304 js .LstrideLoopExitReduce
/linux/drivers/md/
H A Ddm-integrity.c770 struct journal_sector *js; in access_journal_entry() local
777 js = access_journal(ic, section, rel_sector); in access_journal_entry()
778 return (struct journal_entry *)((char *)js + offset * ic->journal_entry_size); in access_journal_entry()
873 struct journal_sector *js = access_journal(ic, section, j); in rw_section_mac() local
876 memcpy(&js->mac, result + (j * JOURNAL_MAC_PER_SECTOR), JOURNAL_MAC_PER_SECTOR); in rw_section_mac()
878 if (crypto_memneq(&js->mac, result + (j * JOURNAL_MAC_PER_SECTOR), JOURNAL_MAC_PER_SECTOR)) { in rw_section_mac()
2234 struct journal_sector *js; in __journal_read_write() local
2247 js = access_journal_data(ic, journal_section, journal_entry); in __journal_read_write()
2251 memcpy(mem_ptr, js, JOURNAL_SECTOR_DATA); in __journal_read_write()
2253 js++; in __journal_read_write()
[all …]
/linux/Documentation/input/joydev/
H A Djoystick-api.rst13 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;
H A Djoystick.rst42 rm js*
/linux/arch/x86/lib/
H A Datomic64_cx8_32.S117 js 2f
H A Datomic64_386_32.S189 js 1f
H A Dcsum-copy_64.S196 js .Lwas_odd
/linux/Documentation/arch/x86/
H A Dentry_64.rst82 js 1f /* negative -> in kernel */
/linux/arch/x86/entry/
H A Dentry_64.S924 js .Lparanoid_kernel_gsbase
/linux/Documentation/admin-guide/
H A Dkernel-parameters.txt2898 js= [HW,JOY] Analog joystick