Searched refs:tweak (Results 1 - 105 of 105) sorted by relevance

/linux-4.1.27/drivers/staging/skein/
H A Dthreefish_api.c6 u64 *key_data, u64 *tweak) threefish_set_key()
12 key_ctx->tweak[0] = tweak[0]; threefish_set_key()
13 key_ctx->tweak[1] = tweak[1]; threefish_set_key()
14 key_ctx->tweak[2] = tweak[0] ^ tweak[1]; threefish_set_key()
4 threefish_set_key(struct threefish_key *key_ctx, enum threefish_size state_size, u64 *key_data, u64 *tweak) threefish_set_key() argument
H A Dskein_base.h44 #define SKEIN_MODIFIER_WORDS 2 /* number of modifier (tweak) words */
66 u64 tweak[SKEIN_MODIFIER_WORDS]; /* tweak[0]=byte cnt, tweak[1]=flags */ member in struct:skein_ctx_hdr
155 /* tweak word tweak[1]: bit field starting positions */
164 /* tweak word tweak[1]: flag bit definition(s) */
169 /* tweak word tweak[1]: tree level bit field mask */
173 /* tweak word tweak[1]: block type field */
234 ** Skein macros for getting/setting tweak words, etc.
237 #define skein_get_tweak(ctx_ptr, TWK_NUM) ((ctx_ptr)->h.tweak[TWK_NUM])
239 (ctx_ptr)->h.tweak[TWK_NUM] = (t_val); \
247 /* set both tweak words at once */
259 * h.tweak[0]=0; h.tweak[1] = NEW_TYPE; h.b_cnt=0;
268 (hdr).tweak[1] &= ~SKEIN_T1_FLAG_FIRST; \
271 (hdr).tweak[1] |= SKEIN_T1_FLAG_BIT_PAD; \
275 (hdr).tweak[1] |= SKEIN_T1_TREE_LEVEL(height); \
H A Dthreefish_api.h24 threefish_set_key(&key_ctx, THREEFISH_512, key, tweak);
46 * Context for Threefish key and tweak words.
56 u64 tweak[3]; member in struct:threefish_key
60 * Set Threefish key and tweak data.
62 * This function sets the key and tweak data for the Threefish cipher of
72 * @param tweak
73 * Pointer to the two tweak words (word has 64 bits).
77 u64 *key_data, u64 *tweak);
H A Dskein_block.c38 ctx->h.tweak[0] = ts[0]; \
39 ctx->h.tweak[1] = ts[1]; \
353 /* key schedule: chaining vars + tweak + "rot"*/ skein_256_process_block()
356 /* key schedule words : chaining vars + tweak */ skein_256_process_block()
370 ts[0] = ctx->h.tweak[0]; skein_256_process_block()
371 ts[1] = ctx->h.tweak[1]; skein_256_process_block()
456 ctx->h.tweak[0] = ts[0]; skein_256_process_block()
457 ctx->h.tweak[1] = ts[1]; skein_256_process_block()
483 u64 kw[WCNT+4+RCNT*2]; /* key sched: chaining vars + tweak + "rot"*/ skein_512_process_block()
485 u64 kw[WCNT+4]; /* key schedule words : chaining vars + tweak */ skein_512_process_block()
503 ts[0] = ctx->h.tweak[0]; skein_512_process_block()
504 ts[1] = ctx->h.tweak[1]; skein_512_process_block()
605 ctx->h.tweak[0] = ts[0]; skein_512_process_block()
606 ctx->h.tweak[1] = ts[1]; skein_512_process_block()
632 u64 kw[WCNT+4+RCNT*2]; /* key sched: chaining vars + tweak + "rot" */ skein_1024_process_block()
634 u64 kw[WCNT+4]; /* key schedule words : chaining vars + tweak */ skein_1024_process_block()
643 ts[0] = ctx->h.tweak[0]; skein_1024_process_block()
644 ts[1] = ctx->h.tweak[1]; skein_1024_process_block()
767 ctx->h.tweak[0] = ts[0]; skein_1024_process_block()
768 ctx->h.tweak[1] = ts[1]; skein_1024_process_block()
H A Dskein_base.c202 ctx->h.tweak[1] |= SKEIN_T1_FLAG_FINAL; skein_256_final()
427 ctx->h.tweak[1] |= SKEIN_T1_FLAG_FINAL; skein_512_final()
647 ctx->h.tweak[1] |= SKEIN_T1_FLAG_FINAL; skein_1024_final()
695 ctx->h.tweak[1] |= SKEIN_T1_FLAG_FINAL; skein_256_final_pad()
717 ctx->h.tweak[1] |= SKEIN_T1_FLAG_FINAL; skein_512_final_pad()
739 ctx->h.tweak[1] |= SKEIN_T1_FLAG_FINAL; skein_1024_final_pad()
H A Dskein_api.c205 /* set tweak flag for the skein_final call */ skein_update_bits()
H A Dthreefish_block.c11 u64 t0 = key_ctx->tweak[0], t1 = key_ctx->tweak[1], threefish_encrypt_256()
12 t2 = key_ctx->tweak[2]; threefish_encrypt_256()
504 u64 t0 = key_ctx->tweak[0], t1 = key_ctx->tweak[1], threefish_decrypt_256()
505 t2 = key_ctx->tweak[2]; threefish_decrypt_256()
1151 u64 t0 = key_ctx->tweak[0], t1 = key_ctx->tweak[1], threefish_encrypt_512()
1152 t2 = key_ctx->tweak[2]; threefish_encrypt_512()
2112 u64 t0 = key_ctx->tweak[0], t1 = key_ctx->tweak[1], threefish_decrypt_512()
2113 t2 = key_ctx->tweak[2]; threefish_decrypt_512()
3381 u64 t0 = key_ctx->tweak[0], t1 = key_ctx->tweak[1], threefish_encrypt_1024()
3382 t2 = key_ctx->tweak[2]; threefish_encrypt_1024()
5502 u64 t0 = key_ctx->tweak[0], t1 = key_ctx->tweak[1], threefish_decrypt_1024()
5503 t2 = key_ctx->tweak[2]; threefish_decrypt_1024()
/linux-4.1.27/crypto/
H A Dxts.c30 struct crypto_cipher *tweak; member in struct:priv
37 struct crypto_cipher *child = ctx->tweak; setkey()
49 /* we need two cipher instances: one to compute the initial 'tweak' setkey()
53 /* tweak cipher, uses Key2 i.e. the second half of *key */ setkey()
119 tw(crypto_cipher_tfm(ctx->tweak), w->iv, w->iv); crypt()
154 return crypt(desc, &w, ctx, crypto_cipher_alg(ctx->tweak)->cia_encrypt, encrypt()
165 return crypt(desc, &w, ctx, crypto_cipher_alg(ctx->tweak)->cia_encrypt, decrypt()
275 ctx->tweak = cipher; init_tfm()
284 crypto_free_cipher(ctx->tweak); exit_tfm()
H A Dlrw.c48 int lrw_init_table(struct lrw_table_ctx *ctx, const u8 *tweak) lrw_init_table() argument
57 ctx->table = gf128mul_init_64k_bbe((be128 *)tweak); lrw_init_table()
85 const u8 *tweak = key + keylen - bsize; setkey() local
96 return lrw_init_table(&ctx->table, tweak); setkey()
/linux-4.1.27/arch/powerpc/crypto/
H A Daes-spe-regs.h20 #define rKT r9 /* pointer to tweak key (XTS mode) */
39 #define rG0 r28 /* endian reversed tweak (XTS mode) */
/linux-4.1.27/arch/arm/crypto/
H A Dbsaes-armv7.pl1616 ldr r0, [ip] @ pointer to input tweak
1618 @ generate initial tweak
1623 mov r0,sp @ pointer to initial tweak
1632 sub r12, #`32+16` @ place for tweak[9]
1656 0: sub sp, #0x90 @ place for tweak[9]
1659 vld1.8 {@XMM[8]}, [r0] @ initial tweak
1696 vst1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1729 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1765 vst1.64 {@XMM[15]}, [r0,:128] @ next round tweak
1796 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1800 vst1.64 {@XMM[14]}, [r0,:128] @ next round tweak
1827 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1837 vst1.64 {@XMM[13]}, [r0,:128] @ next round tweak
1863 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1867 vst1.64 {@XMM[12]}, [r0,:128] @ next round tweak
1890 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1894 vst1.64 {@XMM[11]}, [r0,:128] @ next round tweak
1916 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1920 vst1.64 {@XMM[10]}, [r0,:128] @ next round tweak
1939 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1957 vmov @XMM[8], @XMM[9] @ next round tweak
1995 ldr r1, [$fp, #0x20+VFP_ABI_FRAME] @ chain tweak
2030 ldr r0, [ip] @ pointer to input tweak
2032 @ generate initial tweak
2037 mov r0, sp @ pointer to initial tweak
2046 sub r12, #`32+16` @ place for tweak[9]
2076 0: sub sp, #0x90 @ place for tweak[9]
2078 vld1.8 {@XMM[8]}, [r0] @ initial tweak
2121 vst1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2154 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2190 vst1.64 {@XMM[15]}, [r0,:128] @ next round tweak
2221 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2225 vst1.64 {@XMM[14]}, [r0,:128] @ next round tweak
2252 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2256 vst1.64 {@XMM[13]}, [r0,:128] @ next round tweak
2282 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2286 vst1.64 {@XMM[12]}, [r0,:128] @ next round tweak
2309 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2313 vst1.64 {@XMM[11]}, [r0,:128] @ next round tweak
2335 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2339 vst1.64 {@XMM[10]}, [r0,:128] @ next round tweak
2358 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2378 vmov @XMM[8], @XMM[9] @ next round tweak
2385 @ calculate one round of extra tweak for the stolen ciphertext
2393 @ perform the final decryption with the last tweak value
2438 ldr r1, [$fp, #0x20+VFP_ABI_FRAME] @ chain tweak
H A Daesbs-glue.c37 struct BS_KEY *key, u8 tweak[]);
40 struct BS_KEY *key, u8 tweak[]);
263 /* generate the initial tweak */ aesbs_xts_encrypt()
287 /* generate the initial tweak */ aesbs_xts_decrypt()
/linux-4.1.27/tools/perf/tests/
H A Dopen-syscall.c32 "tweak /proc/sys/kernel/perf_event_paranoid?\n", test__open_syscall_event()
H A Dopen-syscall-all-cpus.c43 "tweak /proc/sys/kernel/perf_event_paranoid?\n", test__open_syscall_event_on_all_cpus()
H A Dmmap-basic.c82 "tweak /proc/sys/kernel/perf_event_paranoid?\n", test__basic_mmap()
/linux-4.1.27/include/crypto/
H A Dlrw.h27 int lrw_init_table(struct lrw_table_ctx *ctx, const u8 *tweak);
/linux-4.1.27/arch/cris/include/uapi/asm/
H A Dstat.h4 /* Keep this a verbatim copy of i386 version; tweak CRIS-specific bits in
/linux-4.1.27/arch/arm/include/asm/
H A Dtypes.h15 * supplied by GCC, we can tweak these to align with the kernel's idea of those
H A Dpgtable-2level.h26 * Therefore, we tweak the implementation slightly - we tell Linux that we
/linux-4.1.27/arch/arc/kernel/
H A Dfpu.c28 * However we can tweak the read, so that read-out of outgoing task's FPU regs
/linux-4.1.27/drivers/net/
H A Dloopback.c17 * Larry McVoy : Tiny tweak to double performance
18 * Alan Cox : Backed out LMV's tweak - the linux mm
/linux-4.1.27/drivers/mtd/maps/
H A Dsun_uflash.c70 /* copy defaults and tweak parameters */ uflash_devinit()
/linux-4.1.27/drivers/spi/
H A Dspi-bitbang-txrx.h40 * chips need ... there may be several reasons you'd need to tweak timings
/linux-4.1.27/drivers/usb/usbip/
H A Dstub_rx.c195 /* tweak clear_halt */ tweak_special_requests()
199 /* tweak set_interface */ tweak_special_requests()
203 /* tweak set_configuration */ tweak_special_requests()
209 usbip_dbg_stub_rx("no need to tweak\n"); tweak_special_requests()
H A Dusbip_common.c385 /* there may be more cases to tweak the flags. */ tweak_transfer_flags()
/linux-4.1.27/drivers/media/pci/saa7134/
H A Dsaa7134-tvaudio.c257 int acpf, tweak = 0; tvaudio_setmode() local
265 tweak = audio_clock_tweak; tvaudio_setmode()
272 acpf, tweak); tvaudio_setmode()
274 acpf += tweak; tvaudio_setmode()
/linux-4.1.27/include/net/
H A Dinet_ecn.h115 * IP_ECN_set_ce() has to tweak IPV4 checksum when setting CE,
/linux-4.1.27/arch/blackfin/lib/
H A Ddivsi3.S134 BITTGL(R5,0); /* tweak AQ to be what we want to shift in */
/linux-4.1.27/arch/hexagon/kernel/
H A Dmodule.c34 * module_frob_arch_sections - tweak got/plt sections.
/linux-4.1.27/drivers/video/fbdev/nvidia/
H A Dnvidia.c174 int tweak = 0; nvidia_panel_tweak() local
177 tweak = par->paneltweak; nvidia_panel_tweak()
187 tweak = -1; nvidia_panel_tweak()
191 tweak = 1; nvidia_panel_tweak()
196 return tweak; nvidia_panel_tweak()
/linux-4.1.27/arch/s390/crypto/
H A Daes_s390.c52 u8 tweak[16]; member in struct:pcc_param
637 memcpy(pcc_param.tweak, walk->iv, sizeof(pcc_param.tweak)); xts_aes_crypt()
/linux-4.1.27/arch/arm64/crypto/
H A Daes-modes.S397 encrypt_block v4, w3, x5, x6, w7 /* first tweak */
469 encrypt_block v4, w3, x5, x6, w7 /* first tweak */
/linux-4.1.27/drivers/pcmcia/
H A Dsa11xx_base.c76 * to tweak the BS values.
/linux-4.1.27/drivers/net/wireless/ath/
H A Dhw.c36 * accept frames for all BSSes and so we tweak some bits of our mac address
/linux-4.1.27/arch/mn10300/unit-asb2305/
H A Dpci-asb2305.c64 * keep as much of the original configuration as possible, but tweak it
/linux-4.1.27/arch/powerpc/kernel/
H A Dpci_32.c173 /* Ok, here we need some tweak. If we have already renumbered pci_device_from_OF_node()
H A Dhead_32.S1085 /* Here's a tweak: at this point, CPU setup have
H A Dpci-common.c1147 * keep as much of the original configuration as possible, but tweak it
/linux-4.1.27/arch/avr32/boards/atngw100/
H A Dsetup.c304 * it. Use it however you like, including letting U-Boot or Linux tweak atngw100_arch_init()
/linux-4.1.27/arch/frv/mb93090-mb00/
H A Dpci-frv.c53 * keep as much of the original configuration as possible, but tweak it
/linux-4.1.27/drivers/scsi/
H A Dhpsa_cmd.h545 __le32 tweak_lower; /* Encryption tweak, lower 4 bytes */
556 __le32 tweak_upper; /* Encryption tweak, upper 4 bytes */
H A Dhpsa.c3483 /* Set encryption tweak values based on logical block address set_encrypt_ioaccel2()
3484 * If block size is 512, tweak value is LBA. set_encrypt_ioaccel2()
3485 * For other block sizes, tweak is (LBA * block size)/ 512) set_encrypt_ioaccel2()
/linux-4.1.27/drivers/cpufreq/
H A Dpmac32-cpufreq.c122 /* tweak L2 for high voltage */ cpu_750fx_cpu_speed()
133 /* tweak L2 for low voltage */ cpu_750fx_cpu_speed()
/linux-4.1.27/drivers/video/fbdev/omap2/displays-new/
H A Dpanel-sony-acx565akm.c562 /*FIXME tweak me */ acx565akm_panel_power_on()
618 /* FIXME need to tweak this delay */ acx565akm_panel_power_off()
/linux-4.1.27/drivers/lguest/
H A Dsegments.c180 * (LHCALL_LOAD_GDT_ENTRY). We tweak the entry and copy it in.
/linux-4.1.27/arch/x86/pci/
H A Di386.c179 * keep as much of the original configuration as possible, but tweak it
/linux-4.1.27/arch/x86/crypto/
H A Dtwofish_glue_3way.c293 /* second half of xts-key is for tweak */ xts_twofish_setkey()
H A Dcast6_avx_glue.c346 /* second half of xts-key is for tweak */ xts_cast6_setkey()
H A Dserpent_avx_glue.c352 /* second half of xts-key is for tweak */ xts_serpent_setkey()
H A Dserpent_sse2_glue.c328 /* second half of xts-key is for tweak */ xts_serpent_setkey()
H A Daesni-intel_glue.c657 /* second half of xts-key is for tweak */ xts_aesni_setkey()
H A Dcamellia_glue.c1519 /* second half of xts-key is for tweak */ xts_camellia_setkey()
/linux-4.1.27/drivers/usb/musb/
H A Dmusbhsdma.c163 /* Let targets check/tweak the arguments */ dma_channel_program()
/linux-4.1.27/arch/parisc/include/uapi/asm/
H A Dunistd.h10 * very least. If we decide to change it later, we can ``just'' tweak
/linux-4.1.27/drivers/media/i2c/
H A Dov7670.c195 struct regval_list *regs; /* Regs to tweak */
748 * base and tweak them empirically could be required.
1032 * to do someday; for now, we just do the frame rate tweak.
/linux-4.1.27/drivers/hwmon/
H A Dlm75.c211 * Then tweak to be more precise when appropriate. lm75_probe()
/linux-4.1.27/drivers/edac/
H A Di82875p_edac.c287 * http://www.x86-secret.com/articles/tweak/pat/patsecrets-2.htm i82875p_setup_overfl_dev()
/linux-4.1.27/drivers/ata/
H A Dpata_artop.c330 /* PCI latency must be > 0x80 for burst mode, tweak it atp8xx_fixup()
/linux-4.1.27/arch/powerpc/platforms/powermac/
H A Dpic.c589 * broken with the new driver model. We use this tweak for now...
/linux-4.1.27/arch/powerpc/include/asm/
H A Dpmac_feature.h304 /* Video suspend tweak */
/linux-4.1.27/drivers/media/i2c/cx25840/
H A Dcx25840-ir.c792 /* Before we tweak the hardware, we have to disable the receiver */ cx25840_ir_rx_s_parameters()
979 /* Before we tweak the hardware, we have to disable the transmitter */ cx25840_ir_tx_s_parameters()
/linux-4.1.27/drivers/media/pci/cx23885/
H A Dcx23888-ir.c766 /* Before we tweak the hardware, we have to disable the receiver */ cx23888_ir_rx_s_parameters()
894 /* Before we tweak the hardware, we have to disable the transmitter */ cx23888_ir_tx_s_parameters()
/linux-4.1.27/drivers/net/wireless/ath/ath5k/
H A Drfbuffer.h40 * them. We tweak these settings on rfregs_init function.
87 * on each chip that we want to tweak. Some RF registers
H A Ddma.c869 * guess we can tweak it and see how it goes ;-) ath5k_hw_dma_init()
H A Dpcu.c441 * accept frames for all BSSes and so we tweak some bits of our mac address
H A Dath5k.h244 * because we only tweak them on 5212) */
H A Dbase.c1858 * we have and tweak the code below to send beacons ath5k_beacon_setup()
H A Dphy.c3555 * so we have to tweak their power so that gainf ath5k_setup_rate_powertable()
/linux-4.1.27/drivers/macintosh/
H A Dmacio_asic.c178 * macio_resource_quirks - tweak or skip some resources for a device
H A Dvia-pmu.c1928 /* tweak LPJ before cpufreq is there */ powerbook_sleep_Core99()
/linux-4.1.27/drivers/net/irda/
H A Dbfin_sir.c112 * need to tweak the divisor like he UART driver (which will bfin_sir_set_speed()
H A Dstir4200.c520 /* Undocumented magic to tweak the DPLL */ change_speed()
/linux-4.1.27/include/linux/wimax/
H A Ddebug.h125 * file with a single numeric value that can be use to tweak it. To
/linux-4.1.27/drivers/media/platform/
H A Dvia-camera.c963 * Let the sensor code look over and tweak the viacam_s_fmt_vid_cap()
1386 * OLPCish; any system will need to tweak 0x1e. viacam_probe()
/linux-4.1.27/drivers/infiniband/hw/cxgb4/
H A Dcq.c514 * Gotta tweak READ completions: poll_cq()
/linux-4.1.27/drivers/mtd/devices/
H A Dpmc551.c397 * tweak the configurations fixup_pmc551()
H A Dst_spi_fsm.c239 * Flags to tweak operation of default read/write/erase routines
/linux-4.1.27/drivers/gpu/drm/i915/
H A Di915_dma.c578 * - before the first usage of the fields it can tweak.
H A Di915_debugfs.c3337 * to tweak symbol-level features to produce a deterministic series of vlv_pipe_crc_ctl_reg()
3417 * to tweak symbol-level features to produce a deterministic series of i9xx_pipe_crc_ctl_reg()
/linux-4.1.27/drivers/firewire/
H A Dcore-device.c788 * rom. It shouldn't be necessary to tweak these; if the device
/linux-4.1.27/arch/alpha/kernel/
H A Dcore_marvel.c972 * so we can still tweak mode here. marvel_agp_configure()
/linux-4.1.27/net/ipv4/
H A Darp.c863 /* do not tweak dropwatch on an ARP we will ignore */ arp_rcv()
/linux-4.1.27/drivers/infiniband/hw/cxgb3/
H A Dcxio_hal.c1173 * Gotta tweak READ completions: cxio_poll_cq()
/linux-4.1.27/drivers/net/ethernet/8390/
H A Dlib8390.c36 Paul Gortmaker : tweak ANK's above multicast changes a bit.
H A Daxnet_cs.c767 Paul Gortmaker : tweak ANK's above multicast changes a bit.
/linux-4.1.27/drivers/net/wimax/i2400m/
H A Di2400m.h575 /* typed u8 so /sys/kernel/debug/u8 can tweak */
/linux-4.1.27/arch/microblaze/pci/
H A Dpci-common.c958 * keep as much of the original configuration as possible, but tweak it
/linux-4.1.27/drivers/vfio/pci/
H A Dvfio_pci_config.c424 * Pretend we're hardware and tweak the values of the *virtual* PCI BARs
/linux-4.1.27/fs/configfs/
H A Ddir.c650 * We could, perhaps, tweak our parent's ->mkdir for a minute and
/linux-4.1.27/drivers/net/wan/
H A Ddscc4.c605 #if 0 /* dscc4_{rx/tx}_reset are both unreliable - more tweak needed */
/linux-4.1.27/drivers/media/platform/ti-vpe/
H A Dvpe.c128 * these could be passed later via userspace if some one needs to tweak these.
/linux-4.1.27/drivers/pci/
H A Dprobe.c962 * The architecture-dependent code can tweak these, of course.
H A Dquirks.c1177 * becomes necessary to do this tweak in two steps -- the chosen trigger
2198 * http://www.x86-secret.com/articles/tweak/pat/patsecrets-2.htm
/linux-4.1.27/fs/xfs/
H A Dxfs_aops.c1858 * small tweak: buffers beyond EOF do not get marked dirty. If we mark them
/linux-4.1.27/arch/powerpc/perf/
H A Dcore-book3s.c628 * The workaround is to detect this case and tweak the hardware to pmao_restore_workaround()
/linux-4.1.27/net/netfilter/
H A Dnf_conntrack_proto_tcp.c584 * but we have to tweak window tracking to pass III tcp_in_window()
/linux-4.1.27/drivers/scsi/pm8001/
H A Dpm80xx_hwi.c3982 /* set tweak values. Should be the start lba */ pm80xx_chip_ssp_io_req()
4160 /* set tweak values. Should be the start lba */ pm80xx_chip_sata_req()
/linux-4.1.27/drivers/media/usb/gspca/
H A Dxirlink_cit.c1288 * In any case, here is what they do, and feel free to tweak: cit_set_hue()
/linux-4.1.27/mm/
H A Dpage-writeback.c759 * is 2. We might want to tweak this if we observe the control bdi_position_ratio()
H A Dmemory.c1761 * NOTE! Some drivers might want to tweak vma->vm_page_prot first to get
/linux-4.1.27/sound/pci/
H A Dazt3328.c2197 * this timing tweak snd_azf3328_timer_start()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_main.c3185 /* tweak some settings */ adap_init1()
/linux-4.1.27/drivers/net/ethernet/sun/
H A Dcassini.c4817 * only subordinate device and we can tweak the bridge settings to
/linux-4.1.27/fs/ext4/
H A Dextents.c4906 * different IV or XTS tweak (which are based on the logical ext4_fallocate()
/linux-4.1.27/drivers/net/wireless/ipw2x00/
H A Dipw2200.c8445 /* For now we just don't re-use anything. We can tweak this ipw_rx()

Completed in 3154 milliseconds