Home
last modified time | relevance | path

Searched full:gap (Results 1 – 25 of 376) sorted by relevance

12345678910>>...16

/linux/net/sctp/
H A Dtsnmap.c71 u32 gap; in sctp_tsnmap_check() local
84 gap = tsn - map->base_tsn; in sctp_tsnmap_check()
87 if (gap < map->len && test_bit(gap, map->tsn_map)) in sctp_tsnmap_check()
98 u16 gap; in sctp_tsnmap_mark() local
103 gap = tsn - map->base_tsn; in sctp_tsnmap_mark()
105 if (gap >= map->len && !sctp_tsnmap_grow(map, gap + 1)) in sctp_tsnmap_mark()
108 if (!sctp_tsnmap_has_gap(map) && gap == 0) { in sctp_tsnmap_mark()
120 /* Either we already have a gap, or about to record a gap, so in sctp_tsnmap_mark()
129 set_bit(gap, map->tsn_map); in sctp_tsnmap_mark()
141 /* Initialize a Gap Ack Block iterator from memory being provided. */
[all …]
/linux/drivers/video/fbdev/kyro/
H A DSTG4000Reg.h103 volatile u32 Fill0[6]; /* GAP 0x0068 - 0x007C */
108 volatile u32 Fill1[37]; /* GAP 0x0088 - 0x011C */
114 volatile u32 dwFill_1; /* GAP 0x0128 */
120 volatile u32 Fill2[6]; /* GAP 0x0138 - 0x014C */
127 volatile u32 Fill3[2]; /* GAP 0x0160 - 0x0168 */
141 volatile u32 Fill4[0x0400/4 - 0x0190/4]; //GAP 0x0190 - 0x0400
142 volatile u32 Fill5[0x05FC/4 - 0x0400/4]; //GAP 0x0400 - 0x05FC Fog Table
143 volatile u32 Fill6[0x0604/4 - 0x0600/4]; //GAP 0x0600 - 0x0604
144 volatile u32 Fill7[0x0680/4 - 0x0608/4]; //GAP 0x0608 - 0x0680
145 volatile u32 Fill8[0x07FC/4 - 0x0684/4]; //GAP 0x0684 - 0x07FC
[all …]
/linux/Documentation/devicetree/bindings/ata/
H A Dceva,ahci-1v84.yaml48 - description: CIBGN - COMINIT Burst Gap Nominal.
49 - description: CIBGMX - COMINIT Burst Gap Maximum.
50 - description: CIBGMN - COMINIT Burst Gap Minimum.
59 - description: CWBGMN - COMWAKE Burst Gap Minimum.
60 - description: CWBGMX - COMWAKE Burst Gap Maximum.
61 - description: CWBGN - COMWAKE Burst Gap Nominal.
94 - description: CIBGN - COMINIT Burst Gap Nominal.
95 - description: CIBGMX - COMINIT Burst Gap Maximum.
96 - description: CIBGMN - COMINIT Burst Gap Minimum.
105 - description: CWBGMN - COMWAKE Burst Gap Minimum.
[all …]
/linux/drivers/media/pci/bt8xx/
H A Dbttv-input.c187 u32 gap, rc5, scancode; in bttv_rc5_timer_end() local
193 gap = ktime_to_us(ktime_sub(tv, ir->base_time)); in bttv_rc5_timer_end()
194 /* avoid overflow with gap >1s */ in bttv_rc5_timer_end()
195 if (gap > USEC_PER_SEC) { in bttv_rc5_timer_end()
196 gap = 200000; in bttv_rc5_timer_end()
202 if (gap < 28000) { in bttv_rc5_timer_end()
240 u32 gap; in bttv_rc5_irq() local
250 gap = ktime_to_us(ktime_sub(tv, ir->base_time)); in bttv_rc5_irq()
251 /* avoid overflow with gap >1s */ in bttv_rc5_irq()
252 if (gap > USEC_PER_SEC) { in bttv_rc5_irq()
[all …]
/linux/arch/x86/mm/
H A Dmmap.c85 unsigned long gap = rlim_stack->rlim_cur; in mmap_base() local
89 if (gap + pad > gap) in mmap_base()
90 gap += pad; in mmap_base()
96 gap = clamp(gap, SIZE_128M, (task_size / 6) * 5); in mmap_base()
98 return PAGE_ALIGN(task_size - gap - rnd); in mmap_base()
/linux/Documentation/admin-guide/
H A Dbtmrvl.rst14 bit 8:0 -- Gap
21 where Gap is the gap in milli seconds between wakeup signal and
26 # Use SDIO interface to wake up the host and set GAP to 0x80:
30 # Use GPIO pin #3 to wake up the host and set GAP to 0xff:
/linux/net/dccp/ccids/lib/
H A Dpacket_history.c
/linux/drivers/net/ethernet/microchip/sparx5/lan969x/
H A Dlan969x_calendar.c33 /* Gap between two slots for one device running this speed. */
34 u32 gap; member
150 speed->gap = DIV_ROUND_UP(cal_len, in lan969x_dsm_calendar_calc()
153 speed->gap = 0; in lan969x_dsm_calendar_calc()
185 idx += speed->gap; in lan969x_dsm_calendar_calc()
/linux/lib/
H A Dmaple_tree.c141 unsigned long gap[MAPLE_BIG_NODE_GAPS]; member
626 return node->ma64.gap; in ma_gaps()
814 * @offset: The offset of the highest sub-gap in this node.
822 meta->gap = offset; in ma_set_meta()
859 meta->gap = 0; in mt_clear_meta()
877 * ma_meta_gap() - Get the largest gap location of a node from the metadata
882 return mn->ma64.meta.gap; in ma_meta_gap()
886 * ma_set_meta_gap() - Set the largest gap location in a nodes metadata
889 * @offset: The location of the largest gap.
897 meta->gap = offset; in ma_set_meta_gap()
[all …]
/linux/arch/mips/boot/
H A Delf2ecoff.c412 /* If there is a gap between text and data, we'll fill it when we copy in main()
569 uint32_t gap = ph[i].p_vaddr - cur_vma; in main() local
571 if (gap > 65536) { in main()
573 "Intersegment gap (%"PRId32" bytes) too large.\n", in main()
574 gap); in main()
578 "Warning: %d byte intersegment gap.\n", in main()
579 gap); in main()
581 while (gap) { in main()
584 (gap > in main()
586 obuf : gap)); in main()
[all …]
/linux/Documentation/arch/s390/
H A Dmm.rst33 | | ... unused gap | KASAN untracked
51 | ... unused gap | KASAN untracked
101 | ... unused gap | KASAN untracked
105 | ... unused gap | KASAN untracked
/linux/drivers/net/wireless/marvell/mwifiex/
H A DREADME226 echo "<condition> [GPIO# [gap]]]" > hscfg
237 [gap]: the gap in milliseconds between wakeup signal and
244 Use GPIO and gap set previously
246 Use gap set previously
247 echo "2 1 160" > hscfg : Unicast data, GPIO 1 and gap 160 ms
/linux/arch/x86/kernel/
H A Dftrace_32.S101 * gap / RET-IP
102 * gap
103 * gap
104 * gap
/linux/drivers/clk/mmp/
H A Dclk-mix.c208 unsigned long gap, gap_best; in mmp_clk_mix_determine_rate() local
228 gap = abs(mix_rate - req->rate); in mmp_clk_mix_determine_rate()
229 if (!parent_best || gap < gap_best) { in mmp_clk_mix_determine_rate()
233 gap_best = gap; in mmp_clk_mix_determine_rate()
246 gap = abs(mix_rate - req->rate); in mmp_clk_mix_determine_rate()
247 if (!parent_best || gap < gap_best) { in mmp_clk_mix_determine_rate()
251 gap_best = gap; in mmp_clk_mix_determine_rate()
/linux/drivers/gpu/drm/radeon/
H A Dr300_reg.h149 /* gap */
157 /* gap */
204 /* gap */
226 /* gap */
258 /* gap */
291 /* gap */
297 /* gap */
319 /* gap */
333 /* gap */
379 /* gap */
[all …]
/linux/Documentation/core-api/
H A Dmaple_tree.rst36 The Maple Tree can also be configured to support searching for a gap of a given
56 but allows the user to search for a gap of a given size or larger from either
189 If you wish to search for a gap within a range, then mas_empty_area()
190 or mas_empty_area_rev() can be used. mas_empty_area() searches for a gap
192 mas_empty_area_rev() searches for a gap starting at the highest index given
/linux/lib/tests/
H A Dffs_kunit.c356 {0xFFFFFEFF, 8, "bit 8 is zero"}, /* Gap in bit 8 */
357 {0xFFFF7FFF, 15, "bit 15 is zero"}, /* Gap in bit 15 */
358 {0xFFFEFFFF, 16, "bit 16 is zero"}, /* Gap in bit 16 */
359 {0xBFFFFFFF, 30, "bit 30 is zero"}, /* Gap in bit 30 */
373 {0xFFFDFFFF, 17, "bit 17 is zero"}, /* Gap in bit 17 */
374 {0xFFF7FFFF, 19, "bit 19 is zero"}, /* Gap in bit 19 */
375 {0xF7FFFFFF, 27, "bit 27 is zero"}, /* Gap in bit 27 */
376 {0xDFFFFFFF, 29, "bit 29 is zero"}, /* Gap in bit 29 */
/linux/arch/sparc/kernel/
H A Dsys_sparc_64.c300 unsigned long gap; in arch_pick_mmap_layout() local
306 gap = rlim_stack->rlim_cur; in arch_pick_mmap_layout()
309 gap == RLIM_INFINITY || in arch_pick_mmap_layout()
317 if (gap < 128 * 1024 * 1024) in arch_pick_mmap_layout()
318 gap = 128 * 1024 * 1024; in arch_pick_mmap_layout()
319 if (gap > (task_size / 6 * 5)) in arch_pick_mmap_layout()
320 gap = (task_size / 6 * 5); in arch_pick_mmap_layout()
322 mm->mmap_base = PAGE_ALIGN(task_size - gap - random_factor); in arch_pick_mmap_layout()
/linux/Documentation/devicetree/bindings/regulator/
H A Drichtek,rt4831-regulator.yaml20 Its voltage should be configured above 0.15V to 0.2V gap larger than the
21 voltage needed for DSVP and DSVN. Too much voltage gap could improve the
/linux/drivers/firewire/
H A Dcore-card.c452 // cycle master and do gap count optimization. in DEFINE_FREE()
455 // If self IDs have inconsistent gap counts, do a in DEFINE_FREE()
464 // We must always send a bus reset if the gap count in DEFINE_FREE()
497 // We will send out a force root packet for this node as part of the gap count in DEFINE_FREE()
503 * Pick a gap count from 1394a table E-1. The table doesn't cover in DEFINE_FREE()
513 // with the same physical topology and we have either a new root or a new gap count in DEFINE_FREE()
526 * of a gap count inconsistency, use a long bus reset. in DEFINE_FREE()
529 * may set different gap counts after a bus reset. On a mixed in DEFINE_FREE()
532 * may treat it as two, causing a gap count inconsistency in DEFINE_FREE()
/linux/tools/power/pm-graph/config/
H A Dexample.cfg36 # Suspend/Resume Gap
37 # insert a small visible gap between suspend and resume on the timeline (default: false)
101 # Call Loop Max Gap (dev mode only)
/linux/include/net/sctp/
H A Dtsnmap.h129 /* How many gap ack blocks do we have recorded? */
136 /* Is there a gap in the TSN map? */
154 /* Is there a gap in the TSN map? */
/linux/mm/
H A Dmseal.c36 * - no gap (unallocated memory) exists between start and end.
97 * no gap (unallocated memory) between start and end.
131 * a gap (unallocated memory) between start and end.
/linux/arch/x86/include/asm/
H A Dtext-patching.h145 * The INT3 handler in entry_64.S adds a gap between the in int3_emulate_push()
148 * this gap. See the idtentry macro's X86_TRAP_BP logic. in int3_emulate_push()
150 * Similarly, entry_32.S will have a gap on the stack for in int3_emulate_push()
/linux/tools/testing/selftests/x86/
H A Dtest_shadow_stack.c549 * gap. The steps are:
554 * guard gap.
558 * 5. See if it landed in the gap.
597 printf("[OK]\tGuard gap test, other mapping's gaps\n"); in test_guard_gap_other_gaps()
602 /* Tests respecting the guard gap of the mapping getting placed */
634 printf("[INFO]\tNew mapping has other mapping in guard gap!\n"); in test_guard_gap_new_mappings_gaps()
650 printf("[OK]\tGuard gap test, placement mapping's gaps\n"); in test_guard_gap_new_mappings_gaps()
1047 printf("[FAIL]\tGuard gap test, other mappings' gaps\n"); in main()
1053 printf("[FAIL]\tGuard gap test, placement mapping's gaps\n"); in main()

12345678910>>...16