Home
last modified time | relevance | path

Searched refs:prefixes (Results 1 – 25 of 29) sorted by relevance

12

/linux/tools/testing/memblock/tests/
H A Dcommon.c13 static const char __maybe_unused *prefixes[PREFIXES_MAX]; variable
157 test_print("%s%s", prefixes[i], DELIM); in print_prefixes()
192 memset(prefixes, 0, PREFIXES_MAX * sizeof(char *)); in prefix_reset()
199 prefixes[nr_prefixes] = prefix; in prefix_push()
206 prefixes[nr_prefixes - 1] = 0; in prefix_pop()
/linux/arch/x86/lib/
H A Dinsn.c126 struct insn_field *prefixes = &insn->prefixes; in insn_get_prefixes() local
131 if (prefixes->got) in insn_get_prefixes()
143 if (prefixes->bytes[i] == b) in insn_get_prefixes()
148 prefixes->bytes[nb++] = b; in insn_get_prefixes()
160 prefixes->nbytes++; in insn_get_prefixes()
167 if (lb && lb != insn->prefixes.bytes[3]) { in insn_get_prefixes()
168 if (unlikely(insn->prefixes.bytes[3])) { in insn_get_prefixes()
170 b = insn->prefixes.bytes[3]; in insn_get_prefixes()
172 if (prefixes->bytes[i] == lb) in insn_get_prefixes()
173 insn_set_byte(prefixes, i, b); in insn_get_prefixes()
[all …]
/linux/tools/arch/x86/lib/
H A Dinsn.c126 struct insn_field *prefixes = &insn->prefixes; in insn_get_prefixes() local
131 if (prefixes->got) in insn_get_prefixes()
143 if (prefixes->bytes[i] == b) in insn_get_prefixes()
148 prefixes->bytes[nb++] = b; in insn_get_prefixes()
160 prefixes->nbytes++; in insn_get_prefixes()
167 if (lb && lb != insn->prefixes.bytes[3]) { in insn_get_prefixes()
168 if (unlikely(insn->prefixes.bytes[3])) { in insn_get_prefixes()
170 b = insn->prefixes.bytes[3]; in insn_get_prefixes()
172 if (prefixes->bytes[i] == lb) in insn_get_prefixes()
173 insn_set_byte(prefixes, i, b); in insn_get_prefixes()
[all …]
/linux/Documentation/filesystems/
H A Derofs.rst303 Long extended attribute name prefixes
306 only a few common prefixes (such as overlayfs xattrs). The predefined prefixes
309 The long xattr name prefixes feature is introduced to address this issue. The
310 overall idea is that, apart from the existing predefined prefixes, the xattr
311 entry could also refer to user-specified long xattr name prefixes, e.g.
317 prefixes. Therefore, only the trailing part of the name apart from the long
321 All long xattr prefixes are stored one by one in the packed inode as long as
324 long xattr name prefixes, while (xattr_prefix_start * 4) indicates the start
325 offset of long name prefixes in the packed/meta inode. Note that, long extended
326 attribute name prefixes are disabled if xattr_prefix_count is 0.
/linux/tools/objtool/arch/x86/
H A Ddecode.c209 for (i = 0; i < insn->prefixes.nbytes; i++) { in has_notrack_prefix()
210 if (insn->prefixes.bytes[i] == 0x3e) in has_notrack_prefix()
250 prefix = ins.prefixes.bytes[0]; in arch_decode_instruction()
620 if (ins.prefixes.nbytes == 1 && in arch_decode_instruction()
621 ins.prefixes.bytes[0] == 0xf2) { in arch_decode_instruction()
/linux/Documentation/core-api/
H A Dprintk-index.rst114 prefixes.
116 These prefixes can be stored into the printk index metadata
118 interface might then show the printk formats including these prefixes.
H A Dmin_heap.rst19 prefixes, but should instead use the provided macro wrappers.
/linux/Documentation/networking/
H A Dalias.rst9 address/prefixes per interface, but aliases are still supported
H A Dipv6.rst46 for addresses to be automatically generated from prefixes
H A Dgtp.rst231 IPv6 prefixes, is unique.
H A Dila.rst41 locators are sixty-four bit prefixes.
/linux/Documentation/bpf/
H A Dmap_lpm_trie.rst12 can be used to match IP addresses to a stored set of prefixes.
119 address prefixes:
/linux/arch/x86/tools/
H A Dinsn_decoder_test.c72 dump_field(fp, "prefixes", "\t", &insn->prefixes); in dump_insn()
H A Dinsn_sanity.c66 dump_field(fp, "prefixes", "\t", &insn->prefixes); in dump_insn()
/linux/Documentation/bpf/libbpf/
H A Dlibbpf_naming_convention.rst12 following prefixes: ``bpf_``, ``btf_``, ``libbpf_``, ``btf_dump_``,
67 non-static libbpf symbols should have one of the prefixes mentioned in
/linux/tools/perf/util/intel-pt-decoder/
H A Dintel-pt-insn-decoder.c53 switch (insn->prefixes.bytes[3]) { in intel_pt_insn_decoder()
/linux/Documentation/admin-guide/perf/
H A Darm-cmn.rst39 register. The event templates are named with prefixes to cover all
/linux/Documentation/ABI/stable/
H A Dsysfs-bus-firewire132 without 0x prefixes, without whitespace. The former sbp2 driver
/linux/Documentation/filesystems/ext4/
H A Dattributes.rst157 the key name. Here is a map of name index values to key prefixes:
/linux/net/ipv4/
H A Dfib_trie.c163 unsigned int prefixes; member
2512 ++s->prefixes; in trie_collect_stats()
2542 seq_printf(seq, "\tPrefixes: %u\n", stat->prefixes); in trie_show_stats()
2543 bytes += sizeof(struct fib_alias) * stat->prefixes; in trie_show_stats()
/linux/Documentation/
H A Datomic_t.txt11 The 'full' API consists of (atomic64_ and atomic_long_ prefixes omitted for
/linux/Documentation/hid/
H A Duhid.rst141 prefixes according to these flags.
/linux/tools/usb/usbip/
H A DINSTALL111 You can specify separate installation prefixes for
/linux/tools/lib/bpf/
H A Dlibbpf.c12808 static const char *const prefixes[] = { in attach_tracing_multi() local
12823 for (i = 0; i < ARRAY_SIZE(prefixes); i++) { in attach_tracing_multi()
12826 if (!str_has_pfx(prog->sec_name, prefixes[i])) in attach_tracing_multi()
12829 pfx_len = strlen(prefixes[i]); in attach_tracing_multi()
13585 const char *const *prefixes, in sec_name_match_prefix() argument
13593 if (!str_has_pfx(sec_name, prefixes[i])) in sec_name_match_prefix()
13596 pfx_len = strlen(prefixes[i]); in sec_name_match_prefix()
13610 static const char *const prefixes[] = { in attach_tp() local
13621 match = sec_name_match_prefix(prog->sec_name, prefixes, ARRAY_SIZE(prefixes)); in attach_tp()
13692 static const char *const prefixes[] = { in attach_raw_tp() local
[all …]
/linux/Documentation/driver-api/gpio/
H A Dconsumer.rst37 interface. No other function in the kernel should use these prefixes. The use

12