Searched refs:plain (Results 1 - 175 of 175) sorted by relevance

/linux-4.1.27/net/sunrpc/auth_gss/
H A Dgss_krb5_seqnum.c47 unsigned char plain[8]; krb5_make_rc4_seq_num() local
56 plain[0] = (unsigned char) ((seqnum >> 24) & 0xff); krb5_make_rc4_seq_num()
57 plain[1] = (unsigned char) ((seqnum >> 16) & 0xff); krb5_make_rc4_seq_num()
58 plain[2] = (unsigned char) ((seqnum >> 8) & 0xff); krb5_make_rc4_seq_num()
59 plain[3] = (unsigned char) ((seqnum >> 0) & 0xff); krb5_make_rc4_seq_num()
60 plain[4] = direction; krb5_make_rc4_seq_num()
61 plain[5] = direction; krb5_make_rc4_seq_num()
62 plain[6] = direction; krb5_make_rc4_seq_num()
63 plain[7] = direction; krb5_make_rc4_seq_num()
69 code = krb5_encrypt(cipher, cksum, plain, buf, 8); krb5_make_rc4_seq_num()
81 unsigned char plain[8]; krb5_make_seq_num() local
87 plain[0] = (unsigned char) (seqnum & 0xff); krb5_make_seq_num()
88 plain[1] = (unsigned char) ((seqnum >> 8) & 0xff); krb5_make_seq_num()
89 plain[2] = (unsigned char) ((seqnum >> 16) & 0xff); krb5_make_seq_num()
90 plain[3] = (unsigned char) ((seqnum >> 24) & 0xff); krb5_make_seq_num()
92 plain[4] = direction; krb5_make_seq_num()
93 plain[5] = direction; krb5_make_seq_num()
94 plain[6] = direction; krb5_make_seq_num()
95 plain[7] = direction; krb5_make_seq_num()
97 return krb5_encrypt(key, cksum, plain, buf, 8); krb5_make_seq_num()
105 unsigned char plain[8]; krb5_get_rc4_seq_num() local
118 code = krb5_decrypt(cipher, cksum, buf, plain, 8); krb5_get_rc4_seq_num()
122 if ((plain[4] != plain[5]) || (plain[4] != plain[6]) krb5_get_rc4_seq_num()
123 || (plain[4] != plain[7])) { krb5_get_rc4_seq_num()
128 *direction = plain[4]; krb5_get_rc4_seq_num()
130 *seqnum = ((plain[0] << 24) | (plain[1] << 16) | krb5_get_rc4_seq_num()
131 (plain[2] << 8) | (plain[3])); krb5_get_rc4_seq_num()
144 unsigned char plain[8]; krb5_get_seq_num() local
153 if ((code = krb5_decrypt(key, cksum, buf, plain, 8))) krb5_get_seq_num()
156 if ((plain[4] != plain[5]) || (plain[4] != plain[6]) || krb5_get_seq_num()
157 (plain[4] != plain[7])) krb5_get_seq_num()
160 *direction = plain[4]; krb5_get_seq_num()
162 *seqnum = ((plain[0]) | krb5_get_seq_num()
163 (plain[1] << 8) | (plain[2] << 16) | (plain[3] << 24)); krb5_get_seq_num()
/linux-4.1.27/drivers/staging/skein/
H A Dthreefish_api.c27 u64 plain[SKEIN_MAX_STATE_WORDS]; /* max number of words*/ threefish_encrypt_block_bytes() local
30 skein_get64_lsb_first(plain, in, key_ctx->state_size / 64); threefish_encrypt_block_bytes()
31 threefish_encrypt_block_words(key_ctx, plain, cipher); threefish_encrypt_block_bytes()
54 u64 plain[SKEIN_MAX_STATE_WORDS]; /* max number of words*/ threefish_decrypt_block_bytes() local
58 threefish_decrypt_block_words(key_ctx, cipher, plain); threefish_decrypt_block_bytes()
59 skein_put64_lsb_first(out, plain, key_ctx->state_size / 8); threefish_decrypt_block_bytes()
/linux-4.1.27/arch/hexagon/kernel/
H A Dtrampoline.S30 /* plain sigreturn is gone. */
/linux-4.1.27/drivers/staging/lustre/lustre/ldlm/
H A Dldlm_plain.c65 /* No policy for plain locks */ ldlm_plain_policy_wire_to_local()
71 /* No policy for plain locks */ ldlm_plain_policy_local_to_wire()
/linux-4.1.27/include/uapi/linux/netfilter/
H A Dxt_osf.h108 * plain numeric value. Can also be made as plain numeric value which
/linux-4.1.27/arch/unicore32/
H A DMakefile44 # Default defconfig and target when executing plain make
/linux-4.1.27/arch/microblaze/lib/
H A Dmuldi3.c11 /* If we still don't have umul_ppmm, define it using plain C. */
/linux-4.1.27/drivers/video/console/
H A Ddummycon.c4 * To be used if there's no other console driver (e.g. for plain VGA text)
/linux-4.1.27/include/linux/
H A Drxrpc.h57 #define RXRPC_SECURITY_PLAIN 0 /* plain secure-checksummed packets only */
H A Dlockref.h7 * These are different from just plain atomic refcounts in that they
H A Dqnx6_fs.h115 /* Audi MMI 3G superblock layout is different to plain qnx6 */
H A Dhighmem.h130 /* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */
H A Dmpi.h27 * however I decided to publish this code under the plain GPL.
H A Dktime.h33 * NOPs and most arithmetic ktime_t operations are plain arithmetic
H A Dnet.h4 * or, in plain English: the networking handling part of the
H A Dprintk.h150 * printk_ratelimited() or plain old __ratelimit(). early_printk()
H A Ddcache.h146 DENTRY_D_LOCK_NORMAL, /* implicitly used by plain spin_lock() APIs. */
H A Disdn.h93 /* Macros checking plain usage */
/linux-4.1.27/include/uapi/linux/
H A Dnet.h4 * or, in plain English: the networking handling part of the
H A Disdn.h82 #define ISDN_USAGE_MASK 7 /* Mask to get plain usage */
/linux-4.1.27/arch/arm/lib/
H A Dxor-neon.c30 * recognize the parallel nature of these functions, and emit plain ARM code,
/linux-4.1.27/arch/avr32/
H A DMakefile8 # Default target when executing plain make
/linux-4.1.27/arch/arm/mach-orion5x/
H A Dtsx09-common.c115 * contains a file that has the ethernet MAC address in plain text
/linux-4.1.27/lib/mpi/
H A Dgeneric_mpih-add1.c27 * however I decided to publish this code under the plain GPL.
H A Dgeneric_mpih-lshift.c26 * however I decided to publish this code under the plain GPL.
H A Dgeneric_mpih-mul1.c26 * however I decided to publish this code under the plain GPL.
H A Dgeneric_mpih-mul2.c26 * however I decided to publish this code under the plain GPL.
H A Dgeneric_mpih-mul3.c26 * however I decided to publish this code under the plain GPL.
H A Dgeneric_mpih-rshift.c27 * however I decided to publish this code under the plain GPL.
H A Dgeneric_mpih-sub1.c26 * however I decided to publish this code under the plain GPL.
H A Dmpih-cmp.c27 * however I decided to publish this code under the plain GPL.
H A Dmpi-inline.h26 * however I decided to publish this code under the plain GPL.
H A Dmpi-internal.h27 * however I decided to publish this code under the plain GPL.
H A Dmpi-pow.c26 * however I decided to publish this code under the plain GPL.
H A Dmpih-div.c27 * however I decided to publish this code under the plain GPL.
H A Dmpih-mul.c27 * however I decided to publish this code under the plain GPL.
/linux-4.1.27/security/selinux/ss/
H A Dconditional.h25 #define COND_BOOL 1 /* plain bool */
/linux-4.1.27/include/linux/i2c/
H A Dapds990x.h46 * format: decimal value * APDS_PARAM_SCALE except df which is plain integer.
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
H A Dllog_cat.c90 CERROR("%s: can't create new plain llog in catalog: rc = %d\n", llog_cat_new_log()
380 /* declare new plain llog */ llog_cat_declare_add_rec()
393 /* declare next plain llog */ llog_cat_declare_add_rec()
726 /* Cleanup deleted plain llog traces from catalog */ llog_cat_cleanup()
745 /* remove plain llog entry from catalog by index */ llog_cat_cleanup()
749 CDEBUG(D_HA, "cancel plain log at index %u of catalog " DOSTID "\n", llog_cat_cleanup()
H A Dllog.c225 "catalog" : "plain", llog_init_handle()
226 flags & LLOG_F_IS_CAT ? "catalog" : "plain"); llog_init_handle()
943 /* backup plain llog */ llog_backup()
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/
H A Dworkitem.c126 LASSERT(!in_interrupt()); /* because we use plain spinlock */ cfs_wi_exit()
157 LASSERT(!in_interrupt()); /* because we use plain spinlock */ cfs_wi_deschedule()
196 LASSERT(!in_interrupt()); /* because we use plain spinlock */ cfs_wi_schedule()
/linux-4.1.27/drivers/block/drbd/
H A Ddrbd_vli.h33 * if transmitted in plain text.
90 * encoding bit polarity runlength is 1 plain bits => 2 code bits.
119 #................. s ........................... plain bits ..........
H A Ddrbd_receiver.c4131 /* if we had been plain connected, and the admin requested to receive_state()
4394 unsigned int plain = INFO_bm_xfer_stats() local
4405 if (total >= plain) INFO_bm_xfer_stats()
4408 /* total < plain. check for overflow, still */ INFO_bm_xfer_stats()
4409 r = (total > UINT_MAX/1000) ? (total / (plain/1000)) INFO_bm_xfer_stats()
4410 : (1000 * total / plain); INFO_bm_xfer_stats()
4416 drbd_info(device, "%s bitmap stats [Bytes(packets)]: plain %u(%u), RLE %u(%u), " INFO_bm_xfer_stats()
H A Ddrbd_main.c1107 /* plain bits covered in this code string */ fill_bitmap_rle_bits()
1115 /* see how much plain bits we can stuff into one packet fill_bitmap_rle_bits()
1209 * send a buffer full of plain text bits instead. */ send_bitmap_rle_or_plain()
H A Ddrbd_int.h237 * the plain text bitmap much more convenient. */ bm_xfer_ctx_bit_to_word_offset()
/linux-4.1.27/arch/sh/kernel/cpu/shmobile/
H A Dpm.c30 * Sleep mode is just plain "sleep" instruction
/linux-4.1.27/drivers/char/hw_random/
H A Dn2rng.h16 #define RNG_CTL_LFSR 0x0000000000000008ULL /* Use LFSR or plain shift */
/linux-4.1.27/arch/arm64/
H A DMakefile59 # Default target when executing plain make
/linux-4.1.27/arch/cris/include/uapi/asm/
H A Dsync_serial.h113 /* plain integer with the size of DMA chunks */
/linux-4.1.27/fs/
H A DMakefile67 # We place ext4 after ext2 so plain ext2 root fs's are mounted using ext2
H A Dfcntl.c484 /* fall-through: fall back on the old plain SIGIO signal */ send_sigio_to_task()
H A Dcompat_ioctl.c960 /* qemu/qemu-img might call these two on plain files for probing */
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/
H A Dsec_plain.c68 * for simplicity, plain policy rpc use fixed layout.
231 CERROR("missing plain header\n"); plain_ctx_verify()
737 CERROR("missing plain header\n"); plain_accept()
985 .sp_name = "plain",
H A Dsec_config.c119 * currently only base flavor "plain" can have bulk specification. sptlrpc_parse_flavor()
125 * format: plain-hash:<hash_alg> sptlrpc_parse_flavor()
H A Dsec.c158 if (!strcmp(name, "plain")) sptlrpc_name2flavor_base()
180 return "plain"; sptlrpc_flavor2name_base()
216 * flavors other than plain sptlrpc_flavor2name()
2228 * return nob of actual plain text size received, or error code.
/linux-4.1.27/arch/mips/include/asm/dec/
H A Dprom.h145 * On plain MIPS we just call PROM functions directly.
/linux-4.1.27/include/uapi/linux/caif/
H A Dcaif_socket.h78 * @CAIF_ATTYPE_PLAIN: Connects to a plain vanilla AT channel.
/linux-4.1.27/net/ipv4/netfilter/
H A Dnf_nat_proto_gre.c16 * field in plain GRE.
/linux-4.1.27/sound/drivers/
H A Dpcm-indirect2.h73 * with plain FIFOs often have no possibility to publish this position.
H A Dml403-ac97cr.c154 #define LM4550_REG_NOSHADOW (1<<3) /* don't do register shadowing, use plain
/linux-4.1.27/scripts/
H A Drecordmcount.pl298 # this we use '\w' so we'll match just plain symbol names,
304 # Sparc64 calls '_mcount' instead of plain 'mcount'.
365 # Microblaze calls '_mcount' instead of plain 'mcount'.
H A Dunifdef.c423 /* plain line handling */ print()
H A Dcheckpatch.pl4925 "plain inline is preferred over $1\n" . $herecurr) &&
/linux-4.1.27/sound/isa/gus/
H A Dgus_main.c232 * Memory detection routine for plain GF1 soundcards
243 snd_printk(KERN_ERR "plain GF1 card at 0x%lx without onboard DRAM?\n", gus->gf1.port); snd_gus_detect_memory()
/linux-4.1.27/drivers/hwmon/
H A Dshtc1.c191 dev_err(dev, "plain i2c transactions not supported\n"); shtc1_probe()
H A Dasb100.c32 * ASB100-A supports pwm1, while plain ASB100 does not. There is no known
/linux-4.1.27/drivers/media/usb/dvb-usb/
H A Dgp8psk-fe.c343 * (Myth incorrectly detects Turbo-QPSK as plain QAM-16)
/linux-4.1.27/drivers/scsi/megaraid/
H A Dmegaraid_ioctl.h96 * @cmdbuf : Pointer to buffer - can point to mbox or plain data buffer
/linux-4.1.27/drivers/gpio/
H A Dgpio-amd8111.c188 * We can't use plain pci_driver mechanism, amd_gpio_init()
H A Dgpiolib-acpi.c795 /* Then from plain _CRS GPIOs */ acpi_gpio_count()
H A Dgpiolib.c1720 /* Then from plain _CRS GPIOs */ acpi_find_gpio()
/linux-4.1.27/drivers/clocksource/
H A Dasm9260_timer.c27 * 0x0 - plain read write mode
/linux-4.1.27/arch/x86/kernel/
H A Dpmc_atom.c352 * We can't use plain pci_driver mechanism, pmc_atom_init()
H A Dapm_32.c1973 /* Some APM bioses corrupt memory or just plain do not work */ apm_is_horked()
/linux-4.1.27/crypto/
H A Deseqiv.c6 * the plain text. This algorithm requires that the block size be equal
H A Dxts.c50 * by encrypting the IV (usually the 'plain' iv) and the other setkey()
H A Dccm.c245 static int crypto_ccm_auth(struct aead_request *req, struct scatterlist *plain, crypto_ccm_auth() argument
275 get_data_to_compute(cipher, pctx, plain, cryptlen); crypto_ccm_auth()
H A Dtcrypt.c468 /* set key, plain text and IV */ test_cipher_speed()
1140 /* set key, plain text and IV */ test_acipher_speed()
/linux-4.1.27/fs/minix/
H A Ditree_common.c170 /* Next simple case - plain lookup or failed read of indirect block */ get_block()
/linux-4.1.27/arch/arm64/kernel/
H A Ddebug-monitors.c272 * Use reader/writer locks instead of plain spinlock.
/linux-4.1.27/arch/arm/nwfpe/
H A Dentry.S115 @ plain LDR instruction. Weird, but it seems harmless.
/linux-4.1.27/net/dccp/
H A Dminisocks.c123 * destructor and make plain sk_free() */ dccp_create_openreq_child()
/linux-4.1.27/drivers/md/
H A Ddm-crypt.c199 * plain: the initial vector is the 32-bit little-endian version of the sector
224 * version 1: is plain aes-cbc mode
1597 * only the cipher name is supplied, use cbc-plain. crypt_ctr_cipher()
1599 if (!chainmode || (!strcmp(chainmode, "plain") && !ivmode)) { crypt_ctr_cipher()
1601 ivmode = "plain"; crypt_ctr_cipher()
1641 else if (strcmp(ivmode, "plain") == 0) crypt_ctr_cipher()
/linux-4.1.27/drivers/media/pci/bt8xx/
H A Dbttv.h266 * anything else with this macro. Just use plain integers from 0 to 3.
/linux-4.1.27/fs/sysv/
H A Ditree.c230 /* Next simple case - plain lookup or failed read of indirect block */ get_block()
/linux-4.1.27/net/netfilter/ipset/
H A Dip_set_bitmap_ipmac.c130 /* If MAC is unset yet, we store plain timeout value bitmap_ipmac_add_timeout()
/linux-4.1.27/net/netfilter/
H A Dnf_conntrack_proto_gre.c16 * field in plain GRE.
/linux-4.1.27/drivers/isdn/hardware/eicon/
H A Dos_bri.c122 Get plain original values of the BAR2 CDM registers diva_bri_init_card()
/linux-4.1.27/drivers/regulator/
H A Dab3100.c386 * is an on/off switch plain an simple. The external
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_link.h79 /* Single Media Direct board is the plain 577xx board with CX4/RJ45 jacks */
/linux-4.1.27/drivers/crypto/
H A Dpadlock-aes.c120 * itself we must supply the plain key for both encryption aes_set_key()
/linux-4.1.27/arch/sparc/include/uapi/asm/
H A Dunistd.h427 * it never had the plain ones and there is no value to adding those
/linux-4.1.27/arch/sparc/math-emu/
H A Dmath_64.c351 /* Change the instruction into plain fmovq */ do_mathemu()
/linux-4.1.27/fs/hfsplus/
H A Dhfsplus_fs.h273 * by hfsplus_write_inode a plain mark_inode_dirty call is enough.
/linux-4.1.27/include/net/sctp/
H A Dsm.h64 SCTP_DISPOSITION_ERROR, /* This is plain old user error. */
/linux-4.1.27/kernel/bpf/
H A Dsyscall.c503 /* plain bpf_prog allocation */ bpf_prog_load()
/linux-4.1.27/arch/arm/
H A DMakefile288 # Default target when executing plain make
/linux-4.1.27/sound/soc/tegra/
H A Dtegra30_ahub.c70 * These functions should not be a plain ref-count. Instead, each active stream
/linux-4.1.27/arch/arm/probes/
H A Ddecode-thumb.c189 /* Data-processing (plain binary immediate) */
588 * Data-processing (plain binary immediate)
/linux-4.1.27/drivers/net/wireless/b43/
H A Dxmit.c826 /* chanid is the SHM channel cookie. Which is the plain b43_rx()
/linux-4.1.27/drivers/infiniband/hw/qib/
H A Dqib_driver.c510 * Both tiderr and qibhdrerr are set for all plain IB qib_kreceive()
/linux-4.1.27/drivers/input/keyboard/
H A Dtegra-kbc.c219 * Function keycodes are max_keys apart from the plain keycodes. tegra_kbc_report_keys()
/linux-4.1.27/arch/sparc/net/
H A Dbpf_jit_comp.c357 * "destination + 4" instead of just plain "destination" above.
/linux-4.1.27/drivers/acpi/acpica/
H A Ddsutils.c580 * We just plain didn't find it -- which is a acpi_ds_create_operand()
/linux-4.1.27/fs/overlayfs/
H A Ddir.c887 /* No debug for the plain case */ ovl_rename2()
/linux-4.1.27/fs/nfs/
H A Dnfs3proc.c619 * Also note that this implementation handles both plain readdir and
/linux-4.1.27/arch/m68k/atari/
H A Dconfig.c88 /* ++roman: This is a more elaborate test for an SCC chip, since the plain
/linux-4.1.27/arch/arm/mach-omap2/
H A Dsleep34xx.S89 adrl r3, l2dis_3630_offset @ may be too distant for plain adr
/linux-4.1.27/net/core/
H A Dnetpoll.c803 * holding the rtnl, so plain rcu_dereference it is __netpoll_cleanup()
H A Dsock.c1545 * destructor and make plain sk_free() */ sk_clone_lock()
H A Ddev.c4414 * We can use a plain write instead of clear_bit(), process_backlog()
/linux-4.1.27/sound/oss/dmasound/
H A Ddmasound_paula.c138 * I think I've optimized anything as far as one can do in plain C, all
H A Ddmasound_atari.c57 * I think I've optimized anything as far as one can do in plain C, all
/linux-4.1.27/sound/usb/usx2y/
H A Dusx2yhwdeppcm.c36 plain usx2y alsa mode is able to achieve 64frames, 4periods, but only at the
/linux-4.1.27/drivers/staging/lustre/lustre/include/
H A Dlustre_dlm.h108 * A lock has both a type (extent, flock, inode bits, or plain) and a mode.
110 * ldlm_{extent,flock,inodebits,plain}.c.
/linux-4.1.27/fs/ext2/
H A Dinode.c614 * return = 0, if plain lookup failed.
672 /* Next simple case - plain lookup or failed read of indirect block */ ext2_get_blocks()
/linux-4.1.27/include/net/
H A Dxfrm.h66 SPD is plain linear list of xfrm_policy rules, ordered by priority.
71 Lookup is plain linear search until the first match with selector.
/linux-4.1.27/fs/ext4/
H A Dindirect.c504 * return = 0, if plain lookup failed.
557 /* Next simple case - plain lookup or failed read of indirect block */ ext4_ind_map_blocks()
H A Dextents.c4265 * return = 0, if plain look up failed (blocks have not been allocated)
H A Dinode.c452 * It returns 0 if plain look up failed (blocks have not been allocated), in
/linux-4.1.27/sound/soc/codecs/
H A Dwm5100.c2073 * plain headphones and give up if neither polarity looks wm5100_micd_irq()
2132 * plain headphone will trigger detection. wm5100_detect()
H A Dwm8996.c2275 * plain headphone will trigger detection. wm8996_detect()
2448 * plain headphones. If both polarities report a low wm8996_micd()
/linux-4.1.27/drivers/i2c/busses/
H A Di2c-rk3x.c223 /* make sure we are in plain RX mode if we read a second chunk */ rk3x_i2c_prepare_read()
/linux-4.1.27/drivers/net/wireless/ath/ath5k/
H A Dreset.c763 * AR5211 so we set MOD_OFDM for plain g (no ath5k_hw_nic_wakeup()
/linux-4.1.27/drivers/media/usb/gspca/
H A Dspca561.c790 /* just plain hue control for 12a */ sd_s_ctrl()
/linux-4.1.27/drivers/misc/genwqe/
H A Dcard_dev.c435 * plain buffer, we lookup our dma_mapping list to find the
/linux-4.1.27/drivers/net/ethernet/ti/
H A Ddavinci_cpdma.c151 * devices (e.g. cpsw switches) use plain old memory. Descriptor pools
/linux-4.1.27/drivers/ssb/
H A Dmain.c745 /* Ops for the plain SSB bus without a host-device (no PCI or PCMCIA). */
/linux-4.1.27/drivers/staging/wlan-ng/
H A Dprism2fw.c800 * file. Each record in the fw file will either be a plain data record,
/linux-4.1.27/drivers/pci/hotplug/
H A Dcpqphp_pci.c285 /* plain (bridges allowed) */ cpqhp_get_bus_dev()
/linux-4.1.27/drivers/input/mouse/
H A Dbcm5974.c181 TYPE1, /* plain trackpad */
/linux-4.1.27/drivers/extcon/
H A Dextcon-arizona.c862 * plain headphones. If both polarities report a low arizona_micd_detect()
/linux-4.1.27/arch/sparc/kernel/
H A Dhead_32.S134 * just plain zero, else it is KERNBASE.
/linux-4.1.27/drivers/base/
H A Dbus.c1227 * with bad ideas only. New subsystems should use plain subsystems; and
/linux-4.1.27/drivers/hid/i2c-hid/
H A Di2c-hid.c271 * @use_data: true: use SET_REPORT HID command, false: send plain OUTPUT report
/linux-4.1.27/fs/nilfs2/
H A Dcpfile.c923 * plain read-only mounts since they are exclusive nilfs_cpfile_change_cpmode()
/linux-4.1.27/include/xen/interface/
H A Dxen.h724 /* Turn a plain number into a C unsigned long constant. */
/linux-4.1.27/tools/perf/
H A Dbuiltin-trace.c1624 * explained. Reproduced with plain ftrace with: trace__syscall_info()
2562 * FIXME: introduce a intarray class, plain parse csv and create a trace__set_filter_pids()
/linux-4.1.27/drivers/pinctrl/
H A Dcore.c1068 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
/linux-4.1.27/arch/arm/probes/kprobes/
H A Dtest-thumb.c654 TEST_GROUP("Data-processing (plain binary immediate)") kprobe_thumb32_test_cases()
/linux-4.1.27/net/ipv4/
H A Dtcp_input.c915 * but it is equivalent to plain S and code short-curcuits it to S.
1267 /* D-SACK. We can detect redundant retransmission in S|R and plain R tcp_sacktag_one()
1395 /* Normally R but no L won't result in plain S */ tcp_shift_skb_data()
4984 * NOTE. Double Dutch. Rendering to plain English: author of comment tcp_check_urg()
/linux-4.1.27/net/netfilter/ipvs/
H A Dip_vs_sync.c9 * Version 0 is the plain old format.
/linux-4.1.27/drivers/net/wireless/
H A Dairo.c1639 u8 *cipher, plain[16]; emmh32_setseed() local
1649 memcpy (plain, aes_counter, 16); emmh32_setseed()
1650 crypto_cipher_encrypt_one(tfm, plain, plain); emmh32_setseed()
1651 cipher = plain; emmh32_setseed()
/linux-4.1.27/drivers/scsi/
H A Desp_scsi.c2236 * Therefore this must be a plain esp100. esp_get_revision()
H A Dscsi_debug.c3938 pp->sys_ind = 0x83; /* plain Linux partition */ sdebug_build_parts()
/linux-4.1.27/arch/sparc/mm/
H A Dinit_64.c704 * plain silly... get_new_mmu_context()
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Dr300_reg.h1389 * Bit (1<<8) is the "test" bit. so plain write is 6 - vd
/linux-4.1.27/drivers/gpu/drm/vmwgfx/
H A Dsvga3d_reg.h319 * Indicates that this format can be used to create offscreen plain surfaces.
/linux-4.1.27/arch/powerpc/sysdev/
H A Dmpic.c788 /* NEVER disable an IPI... that's just plain wrong! */ mpic_mask_ipi()
/linux-4.1.27/arch/mips/mm/
H A Dtlbex.c1283 * create the plain linear handler build_r4000_tlb_refill_handler()
/linux-4.1.27/arch/powerpc/kernel/
H A Deeh.c63 * vibration, humidity, radioactivity or plain-old failed hardware.
/linux-4.1.27/arch/arm/crypto/
H A Dbsaes-armv7.pl1370 cmp $len, #8 @ use plain AES for
/linux-4.1.27/
H A DMakefile248 # A third alternative is to store a setting in .config so that plain
/linux-4.1.27/fs/cifs/
H A Dcifsglob.h599 bool sec_kerberos; /* supports plain Kerberos */
H A Dcifssmb.c512 return -EIO; /* need cryptkey unless plain text */ decode_lanman_negprot_rsp()
634 rc = -EIO; /* no crypt key only if plain text pwd */ CIFSSMBNegotiate()
/linux-4.1.27/fs/fuse/
H A Ddir.c1071 * on file mode. This is the plain old disk filesystem permission
/linux-4.1.27/net/bridge/netfilter/
H A Debtables.c533 /* a plain old entry, heh */ ebt_check_entry_size_and_hooks()
/linux-4.1.27/net/irda/
H A Dirttp.c1165 /* Insert plain TTP header */ irttp_connect_request()
/linux-4.1.27/net/iucv/
H A Daf_iucv.c2203 /* plain data frame */ afiucv_hs_rcv()
/linux-4.1.27/fs/ext3/
H A Dinode.c854 * return = 0, if plain lookup failed.
916 /* Next simple case - plain lookup or failed read of indirect block */ ext3_get_blocks_handle()
H A Dsuper.c1410 a plain journaled filesystem we can keep it set as ext3_setup_super()
/linux-4.1.27/drivers/net/ethernet/packetengines/
H A Dhamachi.c361 02/20/2000 KDU Some of the control was just plain odd. Cleaned up the
/linux-4.1.27/drivers/scsi/aacraid/
H A Daachba.c46 /* values for inqd_pdt: Peripheral device type in plain English */
/linux-4.1.27/drivers/gpu/drm/i915/
H A Dintel_sdvo.c3019 * not the case we have evidence that cloning a plain unscaled mode with intel_sdvo_init()
/linux-4.1.27/drivers/infiniband/hw/ipath/
H A Dipath_driver.c1199 * both tiderr and ipathhdrerr are set for all plain IB ipath_kreceive()
/linux-4.1.27/drivers/infiniband/hw/mlx4/
H A Dqp.c633 /* When tunneling special qps, we use a plain UD qp */ create_qp_common()
/linux-4.1.27/arch/x86/xen/
H A Dmmu.c90 * Identity map, in addition to plain kernel map. This needs to be
/linux-4.1.27/kernel/printk/
H A Dprintk.c175 * Valid characters in property names are [a-zA-Z0-9.-_]. The plain text value
/linux-4.1.27/sound/pci/au88x0/
H A Dau88x0_core.c1975 // Use plain direct output to codec. vortex_connect_codecplay()
/linux-4.1.27/fs/btrfs/
H A Dextent-tree.c3795 * already available), otherwise falls back to plain reducing.
4578 /* If we're just plain full then async reclaim just slows us down. */ need_do_async_reclaim()
/linux-4.1.27/drivers/staging/lustre/lustre/include/lustre/
H A Dlustre_idl.h3194 /* for a catalog the first plain slot is next to it */
/linux-4.1.27/drivers/gpu/drm/
H A Ddrm_crtc.c3756 * Compared to plain enumeration properties userspace is allowed to set any
/linux-4.1.27/drivers/cdrom/
H A Dcdrom.c216 that case switch block size and issue plain READ_10 again, then switch
/linux-4.1.27/drivers/net/ethernet/nvidia/
H A Dforcedeth.c4371 /* with plain spinlock lockdep complains */ nv_set_settings()
/linux-4.1.27/drivers/platform/x86/
H A Dthinkpad_acpi.c3498 * ACPI is handling them, otherwise it is plain impossible hotkey_init()

Completed in 5305 milliseconds