Searched refs:hint (Results 1 - 25 of 99) sorted by relevance

1234

/linux-master/tools/testing/selftests/arm64/fp/
H A Drdvl.S10 hint 34 // BTI C
16 hint 34 // BTI C
/linux-master/fs/reiserfs/
H A Dbitmap.c126 if (tmp) { /* hint supplied */
382 * bad hint. Decent hinting must be implemented for this to work well.
773 static inline void new_hashed_relocation(reiserfs_blocknr_hint_t * hint) argument
777 if (hint->formatted_node) {
778 hash_in = (char *)&hint->key.k_dir_id;
780 if (!hint->inode) {
781 /*hint->search_start = hint->beg;*/
782 hash_in = (char *)&hint->key.k_dir_id;
784 if (TEST_OPTION(displace_based_on_dirid, hint
799 dirid_groups(reiserfs_blocknr_hint_t * hint) argument
825 oid_groups(reiserfs_blocknr_hint_t * hint) argument
854 get_left_neighbor(reiserfs_blocknr_hint_t * hint) argument
907 set_border_in_hint(struct super_block *s, reiserfs_blocknr_hint_t * hint) argument
919 displace_large_file(reiserfs_blocknr_hint_t * hint) argument
933 hash_formatted_node(reiserfs_blocknr_hint_t * hint) argument
949 this_blocknr_allocation_would_make_it_a_large_file(reiserfs_blocknr_hint_t * hint) argument
957 displace_new_packing_locality(reiserfs_blocknr_hint_t * hint) argument
968 old_hashed_relocation(reiserfs_blocknr_hint_t * hint) argument
987 old_way(reiserfs_blocknr_hint_t * hint) argument
1005 hundredth_slices(reiserfs_blocknr_hint_t * hint) argument
1018 determine_search_start(reiserfs_blocknr_hint_t * hint, int amount_needed) argument
1130 determine_prealloc_size(reiserfs_blocknr_hint_t * hint) argument
1150 allocate_without_wrapping_disk(reiserfs_blocknr_hint_t * hint, b_blocknr_t * new_blocknrs, b_blocknr_t start, b_blocknr_t finish, int min, int amount_needed, int prealloc_size) argument
1194 blocknrs_and_prealloc_arrays_from_search_start(reiserfs_blocknr_hint_t * hint, b_blocknr_t * new_blocknrs, int amount_needed) argument
1310 use_preallocated_list_if_available(reiserfs_blocknr_hint_t * hint, b_blocknr_t * new_blocknrs, int amount_needed) argument
1334 reiserfs_allocate_blocknrs(reiserfs_blocknr_hint_t *hint, b_blocknr_t *new_blocknrs, int amount_needed, int reserved_by_us) argument
[all...]
/linux-master/arch/loongarch/include/asm/
H A Dprefetch.h13 .macro __pref hint addr
15 preld \hint, \addr, 0
H A Dasm.h19 #define PREF(hint, addr, offs) \
20 preld hint, addr, offs; \
22 #define PREFX(hint, addr, index) \
23 preldx hint, addr, index; \
27 #define PREF(hint, addr, offs)
28 #define PREFX(hint, addr, index)
H A Dbarrier.h20 #define DBAR(hint) __asm__ __volatile__("dbar %0 " : : "I"(hint) : "memory")
/linux-master/tools/testing/selftests/arm64/bti/
H A Dassembler.h53 hint 0x19
57 hint 0x1d
61 hint 0x20
65 hint 0x22
69 hint 0x24
73 hint 0x26
/linux-master/arch/x86/include/asm/
H A Dmwait.h14 #define MWAIT_HINT2CSTATE(hint) (((hint) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK)
15 #define MWAIT_HINT2SUBSTATE(hint) ((hint) & MWAIT_CSTATE_MASK)
72 * EAX unused (reserve for hint)
/linux-master/arch/mips/include/asm/
H A Dprefetch.h47 .macro __pref hint addr
49 pref \hint, \addr
H A Dasm-eva.h18 #define kernel_pref(hint, base) "pref " hint ", " base "\n"
55 #define user_pref(hint, base) __BUILD_EVA_INSN("prefe", hint, base)
77 #define user_pref(hint, base) kernel_pref(hint, base)
105 #define kernel_pref(hint, base) pref hint, base
142 #define user_pref(hint, base) __BUILD_EVA_INSN(prefe, hint, bas
[all...]
/linux-master/lib/
H A Dsbitmap.c32 unsigned hint; local
34 hint = this_cpu_read(*sb->alloc_hint);
35 if (unlikely(hint >= depth)) {
36 hint = depth ? get_random_u32_below(depth) : 0;
37 this_cpu_write(*sb->alloc_hint, hint);
40 return hint;
45 unsigned int hint,
49 /* If the map is full, a hint won't do us much good. */
51 } else if (nr == hint || unlikely(sb->round_robin)) {
52 /* Only update the hint i
43 update_alloc_hint_after_get(struct sbitmap *sb, unsigned int depth, unsigned int hint, unsigned int nr) argument
136 __sbitmap_get_word(unsigned long *word, unsigned long depth, unsigned int hint, bool wrap) argument
242 unsigned int hint, depth; local
271 unsigned int hint, depth; local
481 unsigned int hint, depth; local
[all...]
/linux-master/sound/pci/hda/
H A Dhda_sysfs.c23 /* hint string pair */
270 const struct hda_hint *hint; local
273 snd_array_for_each(&codec->hints, i, hint) {
275 hint->key, hint->val);
283 struct hda_hint *hint; local
286 snd_array_for_each(&codec->hints, i, hint) {
287 if (!strcmp(hint->key, key))
288 return hint;
311 struct hda_hint *hint; local
420 struct hda_hint *hint = get_hint(codec, key); local
784 struct hda_hint *hint; local
[all...]
/linux-master/tools/perf/util/
H A Dstrbuf.c20 int strbuf_init(struct strbuf *sb, ssize_t hint) argument
24 if (hint)
25 return strbuf_grow(sb, hint);
139 ssize_t strbuf_read(struct strbuf *sb, int fd, ssize_t hint) argument
145 ret = strbuf_grow(sb, hint ? hint : 8192);
H A Dstrbuf.h59 int strbuf_init(struct strbuf *buf, ssize_t hint);
93 ssize_t strbuf_read(struct strbuf *, int fd, ssize_t hint);
/linux-master/tools/testing/selftests/net/
H A Dbind_bhash.c32 struct addrinfo *res, hint = {}; local
42 hint.ai_family = domain;
43 hint.ai_socktype = SOCK_STREAM;
45 err = getaddrinfo(addr, port, &hint, &res);
/linux-master/fs/jfs/
H A Djfs_extent.c58 * extent that is used as an allocation hint if the
73 s64 nxlen, nxaddr, xoff, hint, xaddr = 0; local
90 /* check if an allocation hint was provided */
91 if ((hint = addressXAD(xp))) {
92 /* get the size of the extent described by the hint */
95 /* check if the hint is for the portion of the file
97 * request and if hint extent has the same abnr
99 * extend the hint extent to include the current
101 * following the hint extent.
105 xaddr = hint
299 extBalloc(struct inode *ip, s64 hint, s64 * nblocks, s64 * blkno) argument
[all...]
/linux-master/drivers/gpu/drm/xe/
H A Dxe_guc_hxg_helpers.h80 static inline u32 guc_hxg_msg_encode_failure(u32 *msg, u32 error, u32 hint) argument
84 FIELD_PREP(GUC_HXG_FAILURE_MSG_0_HINT, hint) |
/linux-master/block/
H A Dbadblocks.c328 * the binary search inside prev_badblocks(), it is possible to provide a hint
330 * avoided. In my test with the hint to prev_badblocks(), except for the first
454 * starts from index 'hint' and stops at index 'hint_end' from the bad
457 static int prev_by_hint(struct badblocks *bb, sector_t s, int hint) argument
459 int hint_end = hint + 2;
463 while ((hint < hint_end) && ((hint + 1) <= bb->count) &&
464 (BB_OFFSET(p[hint]) <= s)) {
465 if ((hint + 1) == bb->count || BB_OFFSET(p[hint
481 prev_badblocks(struct badblocks *bb, struct badblocks_context *bad, int hint) argument
865 int prev = -1, hint = -1; local
1137 int prev = -1, hint = -1; local
1278 int prev = -1, hint = -1, set = 0; local
[all...]
/linux-master/arch/sparc/kernel/
H A Diommu-common.c84 iommu->pools[i].hint = start;
93 p->hint = p->start;
140 start = pool->hint;
156 * at the masked hint to avoid O(n) search complexity,
186 pool->hint = pool->start;
195 pool->hint = pool->start;
206 (n < pool->hint || need_flush(iommu))) {
212 pool->hint = end;
/linux-master/drivers/cpuidle/
H A Dcpuidle-pseries.c146 u8 hint; member in struct:xcede_latency_record
207 u8 hint = record->hint; local
209 pr_info("xcede: Record %d : hint = %u, latency = 0x%llx tb ticks, Wake-on-irq = %u\n",
210 i, hint, latency_ticks, wake_on_irqs);
373 u8 hint = record->hint; local
388 pr_warn("cpuidle: Skipping xcede record %d [hint=%d]. Exit latency = 0us\n",
389 i, hint);
/linux-master/tools/testing/selftests/mm/
H A Dvirtual_address_range.c30 * Address space till 128TB is mapped without any hint
32 * till 512TB is obtained by passing hint address as the
100 char *hint; local
128 hint = hind_addr();
129 hptr[i] = mmap(hint, MAP_CHUNK_SIZE, PROT_READ | PROT_WRITE,
/linux-master/arch/sparc/include/asm/
H A Diommu-common.h16 unsigned long hint; member in struct:iommu_pool
H A Diommu_64.h24 unsigned int hint; member in struct:iommu_arena
/linux-master/drivers/parisc/
H A Diommu-helpers.h9 * @hint: The DMA Hint.
16 unsigned long hint,
79 vaddr, hint);
15 iommu_fill_pdir(struct ioc *ioc, struct scatterlist *startsg, int nents, unsigned long hint, void (*iommu_io_pdir_entry)(__le64 *, space_t, unsigned long, unsigned long)) argument
/linux-master/drivers/dma/ioat/
H A Dhw.h86 unsigned int hint:1; member in struct:ioat_dma_descriptor::__anon119::__anon120
118 unsigned int hint:1; member in struct:ioat_xor_descriptor::__anon122::__anon123
165 unsigned int hint:1; member in struct:ioat_pq_descriptor::__anon126::__anon127
214 unsigned int hint:1; member in struct:ioat_pq_update_descriptor::__anon129::__anon130
/linux-master/net/ipv4/
H A Dip_input.c309 const struct sk_buff *hint)
311 return hint && !skb_dst(skb) && ip_hdr(hint)->daddr == iph->daddr &&
312 ip_hdr(hint)->tos == iph->tos;
319 const struct sk_buff *hint)
327 if (ip_can_use_hint(skb, iph, hint)) {
329 dev, hint);
597 struct sk_buff *skb, *next, *hint = NULL; local
613 if (ip_rcv_finish_core(net, sk, skb, dev, hint) == NET_RX_DROP)
618 hint
308 ip_can_use_hint(const struct sk_buff *skb, const struct iphdr *iph, const struct sk_buff *hint) argument
317 ip_rcv_finish_core(struct net *net, struct sock *sk, struct sk_buff *skb, struct net_device *dev, const struct sk_buff *hint) argument
[all...]

Completed in 488 milliseconds

1234