/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | wow.c | 142 struct cfg80211_pkt_pattern *patterns = wowlan->patterns; in ath9k_wow_add_pattern() local 149 mask_len = DIV_ROUND_UP(patterns[i].pattern_len, 8); in ath9k_wow_add_pattern() 152 memcpy(wow_pattern, patterns[i].pattern, patterns[i].pattern_len); in ath9k_wow_add_pattern() 153 memcpy(wow_mask, patterns[i].mask, mask_len); in ath9k_wow_add_pattern() 159 patterns[i].pattern_len); in ath9k_wow_add_pattern()
|
/linux-4.1.27/mm/ |
D | memtest.c | 11 static u64 patterns[] __initdata = { variable 98 memtest_pattern = ARRAY_SIZE(patterns); in parse_memtest() 115 idx = i % ARRAY_SIZE(patterns); in early_memtest() 116 do_one_pass(patterns[idx], start, end); in early_memtest()
|
D | Kconfig.debug | 23 fill the pages with poison patterns after free_pages() and verify 24 the patterns before alloc_pages(). Additionally,
|
/linux-4.1.27/drivers/net/ethernet/intel/i40e/ |
D | i40e_diag.c | 39 const u32 patterns[] = {0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF}; in i40e_diag_reg_pattern_test() local 44 for (i = 0; i < ARRAY_SIZE(patterns); i++) { in i40e_diag_reg_pattern_test() 45 pat = patterns[i]; in i40e_diag_reg_pattern_test()
|
/linux-4.1.27/Documentation/leds/ |
D | leds-lp55xx.txt | 14 Program memory for running LED patterns 53 Program memory address access for running patterns 59 various LED patterns. 96 To start blinking patterns in engine #2 and #3 simultaneously, 158 To use the predefined pattern concept, 'patterns' and 'num_patterns' should be 184 .patterns = board_led_patterns,
|
D | leds-lp5523.txt | 30 LP5523 has the internal program memory for running various LED patterns. 31 There are two ways to run LED patterns.
|
D | leds-lp5521.txt | 20 LP5521 has the internal program memory for running various LED patterns. 21 There are two ways to run LED patterns.
|
D | leds-lm3556.txt | 47 and 4 patterns are pre-defined in indicator_pattern array. 49 be generated.If you want new patterns for your own device, change
|
D | leds-lp5562.txt | 14 LP5562 has the internal program memory for running various LED patterns. 56 How to load the predefined patterns
|
D | leds-lp3944.txt | 20 The DIM modes are used to set _blink_ patterns for leds, the pattern is
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/ |
D | lib.c | 1063 int mask_len = DIV_ROUND_UP(wowlan->patterns[i].pattern_len, 8); in iwlagn_send_patterns() 1065 memcpy(&pattern_cmd->patterns[i].mask, in iwlagn_send_patterns() 1066 wowlan->patterns[i].mask, mask_len); in iwlagn_send_patterns() 1067 memcpy(&pattern_cmd->patterns[i].pattern, in iwlagn_send_patterns() 1068 wowlan->patterns[i].pattern, in iwlagn_send_patterns() 1069 wowlan->patterns[i].pattern_len); in iwlagn_send_patterns() 1070 pattern_cmd->patterns[i].mask_size = mask_len; in iwlagn_send_patterns() 1071 pattern_cmd->patterns[i].pattern_size = in iwlagn_send_patterns() 1072 wowlan->patterns[i].pattern_len; in iwlagn_send_patterns()
|
D | commands.h | 3795 struct iwlagn_wowlan_pattern patterns[]; member
|
/linux-4.1.27/include/linux/platform_data/ |
D | leds-lp55xx.h | 74 struct lp55xx_predef_pattern *patterns; member
|
/linux-4.1.27/drivers/mtd/ubi/ |
D | io.c | 401 static uint8_t patterns[] = {0xa5, 0x5a, 0x0}; variable 417 patt_count = ARRAY_SIZE(patterns); in torture_peb() 440 memset(ubi->peb_buf, patterns[i], ubi->peb_size); in torture_peb() 445 memset(ubi->peb_buf, ~patterns[i], ubi->peb_size); in torture_peb() 450 err = ubi_check_pattern(ubi->peb_buf, patterns[i], in torture_peb() 454 patterns[i], pnum); in torture_peb()
|
/linux-4.1.27/Documentation/driver-model/ |
D | design-patterns.txt | 5 This document describes a few common design patterns found in device drivers. 7 conform to these design patterns.
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
D | d3.c | 361 int mask_len = DIV_ROUND_UP(wowlan->patterns[i].pattern_len, 8); in iwl_mvm_send_patterns() 363 memcpy(&pattern_cmd->patterns[i].mask, in iwl_mvm_send_patterns() 364 wowlan->patterns[i].mask, mask_len); in iwl_mvm_send_patterns() 365 memcpy(&pattern_cmd->patterns[i].pattern, in iwl_mvm_send_patterns() 366 wowlan->patterns[i].pattern, in iwl_mvm_send_patterns() 367 wowlan->patterns[i].pattern_len); in iwl_mvm_send_patterns() 368 pattern_cmd->patterns[i].mask_size = mask_len; in iwl_mvm_send_patterns() 369 pattern_cmd->patterns[i].pattern_size = in iwl_mvm_send_patterns() 370 wowlan->patterns[i].pattern_len; in iwl_mvm_send_patterns()
|
D | fw-api-d3.h | 221 struct iwl_wowlan_pattern patterns[]; member
|
/linux-4.1.27/Documentation/devicetree/bindings/media/xilinx/ |
D | xlnx,v-tpg.txt | 27 video timings for the TPG test patterns.
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-sched.txt | 29 threads can then replay the timings (CPU runtime and sleep patterns)
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/ |
D | core.c | 437 struct cfg80211_pkt_pattern *patterns = wow->patterns; in _rtl_add_wowlan_patterns() local 451 if (patterns[i].pattern_len > MAX_WOL_PATTERN_SIZE) { in _rtl_add_wowlan_patterns() 456 pattern_os = patterns[i].pattern; in _rtl_add_wowlan_patterns() 457 mask_len = DIV_ROUND_UP(patterns[i].pattern_len, 8); in _rtl_add_wowlan_patterns() 458 mask_os = patterns[i].mask; in _rtl_add_wowlan_patterns() 461 patterns[i].pattern_len); in _rtl_add_wowlan_patterns() 521 for (j = 12; j < patterns[i].pattern_len; j++) { in _rtl_add_wowlan_patterns()
|
/linux-4.1.27/drivers/leds/ |
D | leds-lp5562.c | 364 ptn = chip->pdata->patterns + (mode - 1); in lp5562_run_predef_led_pattern() 409 struct lp55xx_predef_pattern *ptn = chip->pdata->patterns; in lp5562_store_pattern()
|
/linux-4.1.27/net/wireless/ |
D | core.h | 117 kfree(rdev->wiphy.wowlan_config->patterns[i].mask); in cfg80211_rdev_free_wowlan() 118 kfree(rdev->wiphy.wowlan_config->patterns); in cfg80211_rdev_free_wowlan()
|
D | nl80211.c | 8769 pat_len = wowlan->patterns[i].pattern_len; in nl80211_send_wowlan_patterns() 8771 wowlan->patterns[i].mask) || in nl80211_send_wowlan_patterns() 8773 wowlan->patterns[i].pattern) || in nl80211_send_wowlan_patterns() 8775 wowlan->patterns[i].pkt_offset)) in nl80211_send_wowlan_patterns() 9215 new_triggers.patterns = kcalloc(n_patterns, in nl80211_set_wowlan() 9216 sizeof(new_triggers.patterns[0]), in nl80211_set_wowlan() 9218 if (!new_triggers.patterns) in nl80211_set_wowlan() 9249 new_triggers.patterns[i].pkt_offset = pkt_offset; in nl80211_set_wowlan() 9256 new_triggers.patterns[i].mask = mask_pat; in nl80211_set_wowlan() 9260 new_triggers.patterns[i].pattern = mask_pat; in nl80211_set_wowlan() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/leds/ |
D | common.txt | 5 blinking patterns, flash timeout, flash faults and external flash strobe mode.
|
/linux-4.1.27/fs/f2fs/ |
D | Kconfig | 81 information and block IO patterns in the filesystem level.
|
/linux-4.1.27/Documentation/device-mapper/ |
D | cache-policies.txt | 40 costs into account and to adjust to varying load patterns automatically.
|
D | switch.txt | 110 This parameter allows repetitive patterns to be loaded quickly. <n> and <m>
|
/linux-4.1.27/Documentation/fmc/ |
D | fmc-write-eeprom.txt | 29 * If the file name doesn't match any of the patterns above, it is
|
D | identifiers.txt | 74 options, and uses the same string patterns shown above.
|
/linux-4.1.27/drivers/net/wireless/mwifiex/ |
D | cfg80211.c | 2839 if (!mwifiex_is_pattern_supported(&wowlan->patterns[i], in mwifiex_set_wowlan_mef_entry() 2847 if (!wowlan->patterns[i].pkt_offset) { in mwifiex_set_wowlan_mef_entry() 2865 wowlan->patterns[i].pkt_offset; in mwifiex_set_wowlan_mef_entry() 3041 if (!mwifiex_is_pattern_supported(&crule->patterns[i], in mwifiex_fill_coalesce_rule_info() 3048 if (!crule->patterns[i].pkt_offset) { in mwifiex_fill_coalesce_rule_info() 3070 param->offset = crule->patterns[i].pkt_offset; in mwifiex_fill_coalesce_rule_info()
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/ |
D | Kconfig | 85 patterns (e.g. incoming arp requests).
|
/linux-4.1.27/Documentation/networking/caif/ |
D | Linux-CAIF.txt | 59 The architecture is inspired by the design patterns "Protocol Layer" and
|
/linux-4.1.27/Documentation/filesystems/ |
D | xfs.txt | 33 allocation patterns within the file and the access patterns
|
D | ext4.txt | 313 noauto_da_alloc replacing existing files via patterns such as 319 patterns and force that any delayed allocation
|
/linux-4.1.27/drivers/char/pcmcia/ |
D | synclink_cs.c | 3754 static unsigned char patterns[] = in register_test() local 3756 static unsigned int count = ARRAY_SIZE(patterns); in register_test() 3765 write_reg(info, XAD1, patterns[i]); in register_test() 3766 write_reg(info, XAD2, patterns[(i + 1) % count]); in register_test() 3767 if ((read_reg(info, XAD1) != patterns[i]) || in register_test() 3768 (read_reg(info, XAD2) != patterns[(i + 1) % count])) { in register_test()
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | api.txt | 2001 ARM core registers have the following id bit patterns: 2004 ARM 32-bit CP15 registers have the following id bit patterns: 2007 ARM 64-bit CP15 registers have the following id bit patterns: 2013 ARM 32-bit VFP control registers have the following id bit patterns: 2016 ARM 64-bit FP registers have the following id bit patterns: 2023 arm64 core/FP-SIMD registers have the following id bit patterns. Note 2032 arm64 system registers have the following id bit patterns: 2039 MIPS core registers (see above) have the following id bit patterns: 2043 patterns depending on whether they're 32-bit or 64-bit registers: 2047 MIPS KVM control registers (see above) have the following id bit patterns: [all …]
|
/linux-4.1.27/Documentation/locking/ |
D | lglock.txt | 1 lglock - local/global locks for mostly local access patterns
|
/linux-4.1.27/fs/squashfs/ |
D | Kconfig | 182 performance for some file access patterns (e.g. sequential
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | knfsd-stats.txt | 52 Depending on the NFS workload patterns and various network stack
|
/linux-4.1.27/Documentation/fb/ |
D | sstfb.txt | 141 patterns at the border of your windows (the pixels lose the lowest
|
/linux-4.1.27/drivers/tty/ |
D | synclink_gt.c | 4970 static unsigned short patterns[] = in register_test() local 4972 static unsigned int count = ARRAY_SIZE(patterns); in register_test() 4977 wr_reg16(info, TIR, patterns[i]); in register_test() 4978 wr_reg16(info, BDR, patterns[(i+1)%count]); in register_test() 4979 if ((rd_reg16(info, TIR) != patterns[i]) || in register_test() 4980 (rd_reg16(info, BDR) != patterns[(i+1)%count])) { in register_test()
|
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/ |
D | cfg80211.c | 1913 for (pos = 0; pos < wow->patterns[i].pattern_len; pos++) { in ath6kl_wow_usr() 1914 if (wow->patterns[i].mask[pos / 8] & (0x1 << (pos % 8))) in ath6kl_wow_usr() 1925 wow->patterns[i].pattern_len, in ath6kl_wow_usr() 1927 wow->patterns[i].pattern, mask); in ath6kl_wow_usr()
|
/linux-4.1.27/Documentation/gpio/ |
D | driver.txt | 122 (See Documentation/driver-model/design-patterns.txt)
|
/linux-4.1.27/include/net/ |
D | cfg80211.h | 1991 struct cfg80211_pkt_pattern *patterns; member 2010 struct cfg80211_pkt_pattern *patterns; member
|
/linux-4.1.27/Documentation/ |
D | kernel-doc-nano-HOWTO.txt | 237 patterns, which are highlighted appropriately.
|
D | oops-tracing.txt | 130 programs to search for specific patterns in the kernel code segment, and
|
D | pinctrl.txt | 427 different design patterns, but we're using this as a simple example. Of the
|
D | kernel-parameters.txt | 2036 pattern from a given set of patterns. Memtest
|
/linux-4.1.27/Documentation/video4linux/ |
D | v4l2-controls.txt | 210 have the capability to generate test patterns. These test patterns are hardware
|
D | vivid.txt | 22 - A large list of test patterns and variations thereof 583 is disabled for the other test patterns.
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | cfg80211.c | 3016 if ((wowl->patterns) && (wowl->n_patterns)) { in brcmf_configure_wowl() 3020 (u8 *)wowl->patterns[i].pattern, in brcmf_configure_wowl() 3021 wowl->patterns[i].pattern_len, in brcmf_configure_wowl() 3022 (u8 *)wowl->patterns[i].mask, in brcmf_configure_wowl() 3023 wowl->patterns[i].pkt_offset); in brcmf_configure_wowl()
|
/linux-4.1.27/Documentation/isdn/ |
D | README.gigaset | 346 bit patterns where every bit controls a certain type of debugging output.
|
D | README | 127 list of wildcard patterns separated by semicolon.
|
/linux-4.1.27/Documentation/block/ |
D | biodoc.txt | 244 decisions based on an understanding of the access patterns and i/o 1008 are far less common than "back merges" due to the nature of most I/O patterns.
|
/linux-4.1.27/lib/ |
D | Kconfig.debug | 890 about timer usage patterns in kernel and userspace. This feature 1773 memtest=17, mean do 17 test patterns.
|
/linux-4.1.27/Documentation/sysctl/ |
D | kernel.txt | 187 certain string patterns (beginning with '%') are substituted with
|
/linux-4.1.27/drivers/net/wireless/ti/wlcore/ |
D | main.c | 1627 ret = wl1271_validate_wowlan_pattern(&wow->patterns[i]); in wl1271_configure_wowlan() 1647 p = &wow->patterns[i]; in wl1271_configure_wowlan()
|
/linux-4.1.27/Documentation/usb/ |
D | power-management.txt | 401 patterns are possible.
|
/linux-4.1.27/Documentation/kbuild/ |
D | makefiles.txt | 748 Files matching the patterns "*.[oas]", "*.ko", plus some additional files
|
/linux-4.1.27/Documentation/RCU/ |
D | RTFP.txt | 1095 Describes RCU implementations and presents design patterns
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 1499 typical corruption patterns.
|
/linux-4.1.27/ |
D | MAINTAINERS | 90 F: Files and directories with wildcard patterns. 96 N: Files and directories with regex patterns. 100 match F: pattern and matches of N: patterns. By default,
|