Searched refs:re (Results 76 - 100 of 151) sorted by relevance

1234567

/linux-master/arch/sparc/kernel/
H A Dentry.S444 wr %l0, PSR_ET, %psr ! re-enable traps
497 wr %l0, PSR_ET, %psr ! re-enable traps
512 wr %l0, PSR_ET, %psr ! re-enable traps
551 wr %l0, PSR_ET, %psr ! re-enable traps
568 wr %l0, PSR_ET, %psr ! re-enable traps
585 wr %l0, PSR_ET, %psr ! re-enable traps
602 wr %l0, PSR_ET, %psr ! re-enable traps
619 wr %l0, PSR_ET, %psr ! re-enable traps
636 wr %l0, PSR_ET, %psr ! re-enable traps
653 wr %l0, PSR_ET, %psr ! re
[all...]
/linux-master/drivers/comedi/drivers/ni_routing/tools/
H A Dconvert_csv_to_c.py7 import os, sys, re namespace
47 if not re.match('[VIU]\([^)]*\)', value):
/linux-master/tools/testing/selftests/kmod/
H A Dkmod.sh556 re='^[0-9]+$'
557 if ! [[ $1 =~ $re ]]; then
/linux-master/tools/net/ynl/
H A Dethtool.py8 import re namespace
68 speed_re = re.compile(r'[0-9]+base[^/]+/.+')
88 devices we're not interested in).
/linux-master/tools/cgroup/
H A Diocost_monitor.py13 import re namespace
221 filter_re = re.compile(re_str) if re_str else None
/linux-master/fs/ntfs3/
H A Dfsntfs.c2381 struct NTFS_DE_R re; local
2386 memset(&re, 0, sizeof(re));
2388 re.de.view.data_off = cpu_to_le16(offsetof(struct NTFS_DE_R, zero));
2389 re.de.size = cpu_to_le16(sizeof(struct NTFS_DE_R));
2390 re.de.key_size = cpu_to_le16(sizeof(re.key));
2392 re.key.ReparseTag = rtag;
2393 memcpy(&re.key.ref, ref, sizeof(*ref));
2397 err = indx_insert_entry(indx, ni, &re
2413 struct NTFS_DE_R *re; local
[all...]
/linux-master/arch/s390/net/
H A Dbpf_jit_comp.c404 * Save registers from "rs" (register start) to "re" (register end) on stack
406 static void save_regs(struct bpf_jit *jit, u32 rs, u32 re) argument
410 if (rs == re)
414 /* stmg %rs,%re,off(%r15) */
415 _EMIT6_DISP(0xeb00f000 | rs << 20 | re << 16, 0x0024, off);
419 * Restore registers from "rs" (register start) to "re" (register end) on stack
421 static void restore_regs(struct bpf_jit *jit, u32 rs, u32 re, u32 stack_depth) argument
428 if (rs == re)
432 /* lmg %rs,%re,off(%r15) */
433 _EMIT6_DISP(0xeb00f000 | rs << 20 | re << 1
473 int re = 6, rs; local
[all...]
/linux-master/drivers/net/ethernet/marvell/prestera/
H A Dprestera_router.c1273 struct prestera_rif_entry *re; local
1287 re = prestera_rif_entry_find(port->sw, &re_key);
1291 if (re) {
1295 re = prestera_rif_entry_create(port->sw, &re_key,
1298 if (!re) {
1305 if (!re) {
1309 prestera_rif_entry_destroy(port->sw, re);
/linux-master/tools/testing/selftests/tc-testing/
H A Dtdc.py10 import re namespace
448 match_pattern = re.compile(
449 str(tidx["matchPattern"]), re.DOTALL | re.MULTILINE)
450 match_index = re.findall(match_pattern, procout)
/linux-master/Documentation/sphinx/
H A Dkfigure.py55 import re namespace
191 dot_Tpdf = re.search(dot_Tpdf_ptn, dot_Thelp_list)
200 inkscape_ver_one = re.search(ver_one_ptn, inkscape_ver)
/linux-master/tools/mm/
H A Dthpmaps17 import re
494 text = re.sub(r'\s+', ' ', string)
495 text = re.sub(r'\s*\\n\s*', '\n', text)
/linux-master/drivers/hid/
H A Dhid-google-hammer.c425 struct hid_report_enum *re = &hdev->report_enum[report_type]; local
429 list_for_each_entry(report, &re->report_list, list) {
/linux-master/tools/perf/tests/
H A Dattr.py12 import re namespace
220 pattern = re.compile(r"[: ]+")
/linux-master/arch/arm/kernel/
H A Dentry-common.S45 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
75 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
278 * containing the swi instruction, but we're not really in a
280 * instruction and re-enter the user fault handling path trying
294 * This is the really slow path. We're going to be doing
/linux-master/arch/arc/kernel/
H A Dentry-compact.S160 ; But both L1 and L2 re-enabled, so another L1 can be taken
352 ; decrement thread_info->preempt_count (re-enable preemption)
H A Dhead.S51 ; Unaligned access is disabled at reset, so re-enable early as
/linux-master/tools/build/
H A DMakefile.feature114 clang-bpf-co-re
/linux-master/include/linux/
H A Dbitmap.h195 * @nr: The number of zeroed bits we're looking for
609 unsigned int *rs, unsigned int *re,
613 *re = find_next_zero_bit(bitmap, end, *rs + 1);
608 bitmap_next_set_region(unsigned long *bitmap, unsigned int *rs, unsigned int *re, unsigned int end) argument
/linux-master/mm/
H A Dpercpu.c1146 * @nr: the number of zeroed bits we're looking for
1845 unsigned int page_end, rs, re; local
1850 for_each_clear_bitrange_from(rs, re, chunk->populated, page_end) {
1853 ret = pcpu_populate_chunk(chunk, rs, re, pcpu_gfp);
1861 pcpu_chunk_populated(chunk, rs, re);
2007 unsigned int rs, re; local
2009 for_each_set_bitrange(rs, re, chunk->populated, chunk->nr_pages) {
2010 pcpu_depopulate_chunk(chunk, rs, re);
2012 pcpu_chunk_depopulated(chunk, rs, re);
2064 unsigned int nr_unpop = 0, rs, re; local
[all...]
/linux-master/arch/mips/include/uapi/asm/
H A Dinst.h683 __BITFIELD_FIELD(unsigned int re : 5,
703 __BITFIELD_FIELD(unsigned int re : 5,
723 __BITFIELD_FIELD(unsigned int re : 5,
734 __BITFIELD_FIELD(unsigned int re : 5,
823 * if it is MIPS32 instruction re-encoded for use in the microMIPS ASE.
/linux-master/arch/arm/mm/
H A Dproc-v7m.S152 teq r8, #0 @ re-evalutae condition
/linux-master/drivers/mmc/host/
H A Drenesas_sdhi_core.c618 unsigned int tap_start = 0, tap_end = 0, tap_cnt = 0, rs, re, i; local
656 for_each_set_bitrange(rs, re, bitmap, taps_size) {
657 if (re - rs > tap_cnt) {
658 tap_end = re;
672 /* Enable auto re-tuning */
/linux-master/scripts/
H A Dget_abi.pl742 foreach my $re (@expr) {
743 print STDERR "$names[$i] =~ /^$re\$/\n" if ($debug && $dbg_undefined);
744 if ($names[$i] =~ $re) {
753 foreach my $re (@expr) {
754 print STDERR "$names[$i] =~ /^$re\$/\n" if ($debug && $dbg_undefined);
755 if ($names[$i] =~ $re) {
/linux-master/drivers/infiniband/hw/hns/
H A Dhns_roce_mr.c1072 struct hns_roce_buf_region *re; local
1085 re = &mtr->hem_cfg.region[i];
1086 if (re->hopnum == 0)
1089 pgs_per_l1ba = cal_pages_per_l1ba(ba_per_bt, re->hopnum);
1090 ba_num += DIV_ROUND_UP(re->count, pgs_per_l1ba);
/linux-master/arch/m68k/fpsp040/
H A Dget_op.S41 | the '040. The '040 then re-executes the fadd.x fpm,fpn with
616 | ;re-execute the inst. without taking

Completed in 276 milliseconds

1234567