/linux-4.1.27/net/netfilter/ |
D | nf_conntrack_h323_asn1.c | 103 #define INC_BIT(bs) if((++(bs)->bit)>7){(bs)->cur++;(bs)->bit=0;} argument 104 #define INC_BITS(bs,b) if(((bs)->bit+=(b))>7){(bs)->cur+=(bs)->bit>>3;(bs)->bit&=7;} argument 105 #define BYTE_ALIGN(bs) if((bs)->bit){(bs)->cur++;(bs)->bit=0;} argument 106 #define CHECK_BOUND(bs,n) if((bs)->cur+(n)>(bs)->end)return(H323_ERROR_BOUND) argument 107 static unsigned int get_len(bitstr_t *bs); 108 static unsigned int get_bit(bitstr_t *bs); 109 static unsigned int get_bits(bitstr_t *bs, unsigned int b); 110 static unsigned int get_bitmap(bitstr_t *bs, unsigned int b); 111 static unsigned int get_uint(bitstr_t *bs, int b); 114 static int decode_nul(bitstr_t *bs, const struct field_t *f, char *base, int level); [all …]
|
/linux-4.1.27/drivers/block/drbd/ |
D | drbd_vli.h | 238 static inline void bitstream_init(struct bitstream *bs, void *s, size_t len, unsigned int pad_bits) in bitstream_init() argument 240 bs->buf = s; in bitstream_init() 241 bs->buf_len = len; in bitstream_init() 242 bs->pad_bits = pad_bits; in bitstream_init() 243 bitstream_cursor_reset(&bs->cur, bs->buf); in bitstream_init() 246 static inline void bitstream_rewind(struct bitstream *bs) in bitstream_rewind() argument 248 bitstream_cursor_reset(&bs->cur, bs->buf); in bitstream_rewind() 249 memset(bs->buf, 0, bs->buf_len); in bitstream_rewind() 260 static inline int bitstream_put_bits(struct bitstream *bs, u64 val, const unsigned int bits) in bitstream_put_bits() argument 262 unsigned char *b = bs->cur.b; in bitstream_put_bits() [all …]
|
D | drbd_main.c | 1086 struct bitstream bs; in fill_bitmap_rle_bits() local 1105 bitstream_init(&bs, p->code, size, 0); in fill_bitmap_rle_bits() 1144 bits = vli_encode_bits(&bs, rl); in fill_bitmap_rle_bits() 1157 len = bs.cur.b - p->code + !!bs.cur.bit; in fill_bitmap_rle_bits() 1173 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7); in fill_bitmap_rle_bits()
|
D | drbd_receiver.c | 4307 struct bitstream bs; in recv_bm_rle_bits() local 4317 bitstream_init(&bs, p->code, len, dcbp_get_pad_bits(p)); in recv_bm_rle_bits() 4319 bits = bitstream_get_bits(&bs, &look_ahead, 64); in recv_bm_rle_bits() 4340 (unsigned int)(bs.cur.b - p->code), in recv_bm_rle_bits() 4341 (unsigned int)bs.buf_len); in recv_bm_rle_bits() 4351 bits = bitstream_get_bits(&bs, &tmp, 64 - have); in recv_bm_rle_bits()
|
/linux-4.1.27/drivers/spi/ |
D | spi-bcm2835.c | 88 static inline u32 bcm2835_rd(struct bcm2835_spi *bs, unsigned reg) in bcm2835_rd() argument 90 return readl(bs->regs + reg); in bcm2835_rd() 93 static inline void bcm2835_wr(struct bcm2835_spi *bs, unsigned reg, u32 val) in bcm2835_wr() argument 95 writel(val, bs->regs + reg); in bcm2835_wr() 98 static inline void bcm2835_rd_fifo(struct bcm2835_spi *bs) in bcm2835_rd_fifo() argument 102 while ((bs->rx_len) && in bcm2835_rd_fifo() 103 (bcm2835_rd(bs, BCM2835_SPI_CS) & BCM2835_SPI_CS_RXD)) { in bcm2835_rd_fifo() 104 byte = bcm2835_rd(bs, BCM2835_SPI_FIFO); in bcm2835_rd_fifo() 105 if (bs->rx_buf) in bcm2835_rd_fifo() 106 *bs->rx_buf++ = byte; in bcm2835_rd_fifo() [all …]
|
D | spi-bcm63xx-hsspi.c | 108 static void bcm63xx_hsspi_set_cs(struct bcm63xx_hsspi *bs, unsigned cs, in bcm63xx_hsspi_set_cs() argument 113 mutex_lock(&bs->bus_mutex); in bcm63xx_hsspi_set_cs() 114 reg = __raw_readl(bs->regs + HSSPI_GLOBAL_CTRL_REG); in bcm63xx_hsspi_set_cs() 117 if (active == !(bs->cs_polarity & BIT(cs))) in bcm63xx_hsspi_set_cs() 120 __raw_writel(reg, bs->regs + HSSPI_GLOBAL_CTRL_REG); in bcm63xx_hsspi_set_cs() 121 mutex_unlock(&bs->bus_mutex); in bcm63xx_hsspi_set_cs() 124 static void bcm63xx_hsspi_set_clk(struct bcm63xx_hsspi *bs, in bcm63xx_hsspi_set_clk() argument 130 reg = DIV_ROUND_UP(2048, DIV_ROUND_UP(bs->speed_hz, hz)); in bcm63xx_hsspi_set_clk() 132 bs->regs + HSSPI_PROFILE_CLK_CTRL_REG(profile)); in bcm63xx_hsspi_set_clk() 134 reg = __raw_readl(bs->regs + HSSPI_PROFILE_SIGNAL_CTRL_REG(profile)); in bcm63xx_hsspi_set_clk() [all …]
|
D | spi-bcm63xx.c | 53 static inline u8 bcm_spi_readb(struct bcm63xx_spi *bs, in bcm_spi_readb() argument 56 return bcm_readb(bs->regs + bcm63xx_spireg(offset)); in bcm_spi_readb() 59 static inline u16 bcm_spi_readw(struct bcm63xx_spi *bs, in bcm_spi_readw() argument 62 return bcm_readw(bs->regs + bcm63xx_spireg(offset)); in bcm_spi_readw() 65 static inline void bcm_spi_writeb(struct bcm63xx_spi *bs, in bcm_spi_writeb() argument 68 bcm_writeb(value, bs->regs + bcm63xx_spireg(offset)); in bcm_spi_writeb() 71 static inline void bcm_spi_writew(struct bcm63xx_spi *bs, in bcm_spi_writew() argument 74 bcm_writew(value, bs->regs + bcm63xx_spireg(offset)); in bcm_spi_writew() 90 struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master); in bcm63xx_spi_setup_transfer() local 107 reg = bcm_spi_readb(bs, SPI_CLK_CFG); in bcm63xx_spi_setup_transfer() [all …]
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | common-beacon.c | 57 struct ath9k_beacon_state *bs) in ath9k_cmn_beacon_config_sta() argument 70 memset(bs, 0, sizeof(*bs)); in ath9k_cmn_beacon_config_sta() 86 bs->bs_intval = TU_TO_USEC(conf->intval); in ath9k_cmn_beacon_config_sta() 87 bs->bs_dtimperiod = conf->dtim_period * bs->bs_intval; in ath9k_cmn_beacon_config_sta() 88 bs->bs_nexttbtt = conf->nexttbtt; in ath9k_cmn_beacon_config_sta() 89 bs->bs_nextdtim = conf->nexttbtt; in ath9k_cmn_beacon_config_sta() 91 bs->bs_nextdtim = ath9k_get_next_tbtt(ah, tsf, dtim_intval); in ath9k_cmn_beacon_config_sta() 99 bs->bs_bmissthreshold = DIV_ROUND_UP(conf->bmiss_timeout, conf->intval); in ath9k_cmn_beacon_config_sta() 100 if (bs->bs_bmissthreshold > 15) in ath9k_cmn_beacon_config_sta() 101 bs->bs_bmissthreshold = 15; in ath9k_cmn_beacon_config_sta() [all …]
|
D | common-beacon.h | 21 struct ath9k_beacon_state *bs);
|
D | hw.c | 2269 const struct ath9k_beacon_state *bs) in ath9k_hw_set_sta_beacon_timers() argument 2277 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, bs->bs_nexttbtt); in ath9k_hw_set_sta_beacon_timers() 2278 REG_WRITE(ah, AR_BEACON_PERIOD, bs->bs_intval); in ath9k_hw_set_sta_beacon_timers() 2279 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, bs->bs_intval); in ath9k_hw_set_sta_beacon_timers() 2284 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold); in ath9k_hw_set_sta_beacon_timers() 2286 beaconintval = bs->bs_intval; in ath9k_hw_set_sta_beacon_timers() 2288 if (bs->bs_sleepduration > beaconintval) in ath9k_hw_set_sta_beacon_timers() 2289 beaconintval = bs->bs_sleepduration; in ath9k_hw_set_sta_beacon_timers() 2291 dtimperiod = bs->bs_dtimperiod; in ath9k_hw_set_sta_beacon_timers() 2292 if (bs->bs_sleepduration > dtimperiod) in ath9k_hw_set_sta_beacon_timers() [all …]
|
D | htc_drv_beacon.c | 95 struct ath9k_beacon_state bs; in ath9k_htc_beacon_config_sta() local 101 if (ath9k_cmn_beacon_config_sta(priv->ah, bss_conf, &bs) == -EPERM) in ath9k_htc_beacon_config_sta() 105 ath9k_hw_set_sta_beacon_timers(priv->ah, &bs); in ath9k_htc_beacon_config_sta()
|
D | beacon.c | 476 struct ath9k_beacon_state bs; in ath9k_beacon_config_sta() local 478 if (ath9k_cmn_beacon_config_sta(ah, conf, &bs) == -EPERM) in ath9k_beacon_config_sta() 482 ath9k_hw_set_sta_beacon_timers(ah, &bs); in ath9k_beacon_config_sta()
|
D | hw.h | 1063 const struct ath9k_beacon_state *bs);
|
/linux-4.1.27/crypto/ |
D | xcbc.c | 66 int bs = crypto_shash_blocksize(parent); in crypto_xcbc_digest_setkey() local 69 u8 key1[bs]; in crypto_xcbc_digest_setkey() 74 crypto_cipher_encrypt_one(ctx->child, consts, (u8 *)ks + bs); in crypto_xcbc_digest_setkey() 75 crypto_cipher_encrypt_one(ctx->child, consts + bs, (u8 *)ks + bs * 2); in crypto_xcbc_digest_setkey() 78 return crypto_cipher_setkey(ctx->child, key1, bs); in crypto_xcbc_digest_setkey() 86 int bs = crypto_shash_blocksize(pdesc->tfm); in crypto_xcbc_digest_init() local 87 u8 *prev = PTR_ALIGN(&ctx->ctx[0], alignmask + 1) + bs; in crypto_xcbc_digest_init() 90 memset(prev, 0, bs); in crypto_xcbc_digest_init() 103 int bs = crypto_shash_blocksize(parent); in crypto_xcbc_digest_update() local 105 u8 *prev = odds + bs; in crypto_xcbc_digest_update() [all …]
|
D | cmac.c | 59 unsigned int bs = crypto_shash_blocksize(parent); in crypto_cmac_digest_setkey() local 70 memset(consts, 0, bs); in crypto_cmac_digest_setkey() 73 switch (bs) { in crypto_cmac_digest_setkey() 112 int bs = crypto_shash_blocksize(pdesc->tfm); in crypto_cmac_digest_init() local 113 u8 *prev = PTR_ALIGN((void *)ctx->ctx, alignmask + 1) + bs; in crypto_cmac_digest_init() 116 memset(prev, 0, bs); in crypto_cmac_digest_init() 129 int bs = crypto_shash_blocksize(parent); in crypto_cmac_digest_update() local 131 u8 *prev = odds + bs; in crypto_cmac_digest_update() 134 if ((ctx->len + len) <= bs) { in crypto_cmac_digest_update() 141 memcpy(odds + ctx->len, p, bs - ctx->len); in crypto_cmac_digest_update() [all …]
|
D | hmac.c | 47 int bs = crypto_shash_blocksize(parent); in hmac_setkey() local 62 if (keylen > bs) { in hmac_setkey() 73 memset(ipad + keylen, 0, bs - keylen); in hmac_setkey() 74 memcpy(opad, ipad, bs); in hmac_setkey() 76 for (i = 0; i < bs; i++) { in hmac_setkey() 82 crypto_shash_update(shash, ipad, bs) ?: in hmac_setkey() 85 crypto_shash_update(shash, opad, bs) ?: in hmac_setkey()
|
D | xts.c | 100 const int bs = XTS_BLOCK_SIZE; in crypt() local 130 wsrc += bs; in crypt() 131 wdst += bs; in crypt() 132 } while ((avail -= bs) >= bs); in crypt()
|
D | algif_aead.c | 355 unsigned bs = crypto_aead_blocksize(crypto_aead_reqtfm(&ctx->aead_req)); in aead_recvmsg() local 417 outlen = ((used + bs - 1) / bs * bs); in aead_recvmsg() 424 outlen = ((outlen + bs - 1) / bs * bs); in aead_recvmsg()
|
D | lrw.c | 144 const int bs = LRW_BLOCK_SIZE; in crypt() local 180 wsrc += bs; in crypt() 181 wdst += bs; in crypt() 182 } while ((avail -= bs) >= bs); in crypt()
|
D | ccm.c | 167 unsigned int bs = 16; in compute_mac() local 175 getlen = bs - pctx->ilen; in compute_mac() 178 crypto_xor(odata, idata, bs); in compute_mac() 186 while (datalen >= bs) { in compute_mac() 187 crypto_xor(odata, data, bs); in compute_mac() 190 datalen -= bs; in compute_mac() 191 data += bs; in compute_mac()
|
D | ablkcipher.c | 193 unsigned bs = walk->blocksize; in ablkcipher_copy_iv() local 195 unsigned aligned_bs = ALIGN(bs, alignmask + 1); in ablkcipher_copy_iv() 206 iv = ablkcipher_get_spot(iv, bs) + aligned_bs; in ablkcipher_copy_iv() 207 iv = ablkcipher_get_spot(iv, bs) + aligned_bs; in ablkcipher_copy_iv()
|
D | blkcipher.c | 277 unsigned bs = walk->walk_blocksize; in blkcipher_copy_iv() local 278 unsigned aligned_bs = ALIGN(bs, walk->alignmask + 1); in blkcipher_copy_iv() 290 iv = blkcipher_get_spot(iv, bs) + aligned_bs; in blkcipher_copy_iv() 291 iv = blkcipher_get_spot(iv, bs) + aligned_bs; in blkcipher_copy_iv()
|
D | algif_skcipher.c | 641 unsigned bs = crypto_ablkcipher_blocksize(crypto_ablkcipher_reqtfm( in skcipher_recvmsg_sync() local 672 used -= used % bs; in skcipher_recvmsg_sync()
|
/linux-4.1.27/drivers/misc/sgi-gru/ |
D | grukservices.c | 152 static void gru_load_kernel_context(struct gru_blade_state *bs, int blade_id) in gru_load_kernel_context() argument 159 up_read(&bs->bs_kgts_sema); in gru_load_kernel_context() 160 down_write(&bs->bs_kgts_sema); in gru_load_kernel_context() 162 if (!bs->bs_kgts) { in gru_load_kernel_context() 163 bs->bs_kgts = gru_alloc_gts(NULL, 0, 0, 0, 0, 0); in gru_load_kernel_context() 164 bs->bs_kgts->ts_user_blade_id = blade_id; in gru_load_kernel_context() 166 kgts = bs->bs_kgts; in gru_load_kernel_context() 172 GRU_NUM_KERNEL_CBR * ncpus + bs->bs_async_cbrs); in gru_load_kernel_context() 175 bs->bs_async_dsr_bytes); in gru_load_kernel_context() 181 gru = bs->bs_kgts->ts_gru; in gru_load_kernel_context() [all …]
|
D | grumain.c | 763 struct gru_blade_state *bs) in is_gts_stealable() argument 766 return down_write_trylock(&bs->bs_kgts_sema); in is_gts_stealable() 772 struct gru_blade_state *bs) in gts_stolen() argument 775 up_write(&bs->bs_kgts_sema); in gts_stolen()
|
/linux-4.1.27/block/ |
D | bio-integrity.c | 50 struct bio_set *bs = bio->bi_pool; in bio_integrity_alloc() local 54 if (!bs || !bs->bio_integrity_pool) { in bio_integrity_alloc() 59 bip = mempool_alloc(bs->bio_integrity_pool, gfp_mask); in bio_integrity_alloc() 70 bs->bvec_integrity_pool); in bio_integrity_alloc() 86 mempool_free(bip, bs->bio_integrity_pool); in bio_integrity_alloc() 101 struct bio_set *bs = bio->bi_pool; in bio_integrity_free() local 107 if (bs && bs->bio_integrity_pool) { in bio_integrity_free() 109 bvec_free(bs->bvec_integrity_pool, bip->bip_vec, in bio_integrity_free() 112 mempool_free(bip, bs->bio_integrity_pool); in bio_integrity_free() 473 int bioset_integrity_create(struct bio_set *bs, int pool_size) in bioset_integrity_create() argument [all …]
|
D | blk-mq-tag.c | 81 struct bt_wait_state *bs = &bt->bs[wake_index]; in blk_mq_tag_wakeup_all() local 83 if (waitqueue_active(&bs->wait)) in blk_mq_tag_wakeup_all() 84 wake_up(&bs->wait); in blk_mq_tag_wakeup_all() 91 if (waitqueue_active(&bt->bs[0].wait)) in blk_mq_tag_wakeup_all() 92 wake_up(&bt->bs[0].wait); in blk_mq_tag_wakeup_all() 242 struct bt_wait_state *bs; in bt_wait_ptr() local 246 return &bt->bs[0]; in bt_wait_ptr() 249 bs = &bt->bs[wait_index]; in bt_wait_ptr() 251 return bs; in bt_wait_ptr() 259 struct bt_wait_state *bs; in bt_get() local [all …]
|
D | bio.c | 127 static void bio_put_slab(struct bio_set *bs) in bio_put_slab() argument 135 if (bs->bio_slab == bio_slabs[i].slab) { in bio_put_slab() 247 struct bio_set *bs = bio->bi_pool; in bio_free() local 252 if (bs) { in bio_free() 254 bvec_free(bs->bvec_pool, bio->bi_io_vec, BIO_POOL_IDX(bio)); in bio_free() 260 p -= bs->front_pad; in bio_free() 262 mempool_free(p, bs->bio_pool); in bio_free() 329 struct bio_set *bs = container_of(work, struct bio_set, rescue_work); in bio_alloc_rescue() local 333 spin_lock(&bs->rescue_lock); in bio_alloc_rescue() 334 bio = bio_list_pop(&bs->rescue_list); in bio_alloc_rescue() [all …]
|
D | blk-mq-tag.h | 28 struct bt_wait_state *bs; member
|
D | blk-core.c | 2962 struct bio_set *bs, gfp_t gfp_mask, in blk_rq_prep_clone() argument 2968 if (!bs) in blk_rq_prep_clone() 2969 bs = fs_bio_set; in blk_rq_prep_clone() 2972 bio = bio_clone_fast(bio_src, gfp_mask, bs); in blk_rq_prep_clone()
|
/linux-4.1.27/drivers/pcmcia/ |
D | sa11xx_base.h | 69 #define MECR_SET(mecr, sock, shift, mask, bs) \ argument 72 (((bs)<<(shift))<<((sock)==0?MECR_SOCKET_0_SHIFT:MECR_SOCKET_1_SHIFT))) 78 #define MECR_BSIO_SET(mecr, sock, bs) \ argument 79 MECR_SET((mecr), (sock), MECR_BSIO_SHIFT, MECR_BS_MASK, (bs)) 84 #define MECR_BSA_SET(mecr, sock, bs) \ argument 85 MECR_SET((mecr), (sock), MECR_BSA_SHIFT, MECR_BS_MASK, (bs)) 90 #define MECR_BSM_SET(mecr, sock, bs) \ argument 91 MECR_SET((mecr), (sock), MECR_BSM_SHIFT, MECR_BS_MASK, (bs))
|
/linux-4.1.27/fs/ext3/ |
D | xattr.c | 632 struct ext3_xattr_block_find *bs) in ext3_xattr_block_find() argument 642 bs->bh = sb_bread(sb, EXT3_I(inode)->i_file_acl); in ext3_xattr_block_find() 644 if (!bs->bh) in ext3_xattr_block_find() 646 ea_bdebug(bs->bh, "b_count=%d, refcount=%d", in ext3_xattr_block_find() 647 atomic_read(&(bs->bh->b_count)), in ext3_xattr_block_find() 648 le32_to_cpu(BHDR(bs->bh)->h_refcount)); in ext3_xattr_block_find() 649 if (ext3_xattr_check_block(bs->bh)) { in ext3_xattr_block_find() 657 bs->s.base = BHDR(bs->bh); in ext3_xattr_block_find() 658 bs->s.first = BFIRST(bs->bh); in ext3_xattr_block_find() 659 bs->s.end = bs->bh->b_data + bs->bh->b_size; in ext3_xattr_block_find() [all …]
|
/linux-4.1.27/tools/testing/selftests/sysctl/ |
D | run_stringtests | 15 dd if="${TEST_FILE}" of="${TARGET}" bs=1 2>/dev/null 25 dd if="${TEST_FILE}" of="${TARGET}" bs=1 seek=1 2>/dev/null 36 dd of="${TARGET}" bs="${MAXLEN}" 2>/dev/null 47 dd of="${TARGET}" bs=$(( MAXLEN - 1 )) 2>/dev/null 58 dd of="${TARGET}" bs="${MAXLEN}" 2>/dev/null 69 dd of="${TARGET}" bs=$(( $MAXLEN + 1 )) 2>/dev/null
|
D | common_tests | 72 dd if="${TEST_FILE}" of="${TARGET}" bs=4096 2>/dev/null 82 dd if="${TEST_FILE}" of="${TARGET}" bs=1 seek=1 skip=1 2>/dev/null 92 dd if="${TEST_FILE}" of="${TARGET}" bs=20 seek=2 2>/dev/null 103 dd of="${TARGET}" bs=50 2>/dev/null
|
/linux-4.1.27/fs/ext4/ |
D | xattr.c | 734 struct ext4_xattr_block_find *bs) in ext4_xattr_block_find() argument 744 bs->bh = sb_bread(sb, EXT4_I(inode)->i_file_acl); in ext4_xattr_block_find() 746 if (!bs->bh) in ext4_xattr_block_find() 748 ea_bdebug(bs->bh, "b_count=%d, refcount=%d", in ext4_xattr_block_find() 749 atomic_read(&(bs->bh->b_count)), in ext4_xattr_block_find() 750 le32_to_cpu(BHDR(bs->bh)->h_refcount)); in ext4_xattr_block_find() 751 if (ext4_xattr_check_block(inode, bs->bh)) { in ext4_xattr_block_find() 758 bs->s.base = BHDR(bs->bh); in ext4_xattr_block_find() 759 bs->s.first = BFIRST(bs->bh); in ext4_xattr_block_find() 760 bs->s.end = bs->bh->b_data + bs->bh->b_size; in ext4_xattr_block_find() [all …]
|
/linux-4.1.27/drivers/media/tuners/ |
D | tda827x.c | 97 u8 bs; member 105 { .lomax = 62000000, .spd = 3, .bs = 2, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 1}, 106 { .lomax = 66000000, .spd = 3, .bs = 3, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 1}, 107 { .lomax = 76000000, .spd = 3, .bs = 1, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 0}, 108 { .lomax = 84000000, .spd = 3, .bs = 2, .bp = 0, .cp = 0, .gc3 = 3, .div1p5 = 0}, 109 { .lomax = 93000000, .spd = 3, .bs = 2, .bp = 0, .cp = 0, .gc3 = 1, .div1p5 = 0}, 110 { .lomax = 98000000, .spd = 3, .bs = 3, .bp = 0, .cp = 0, .gc3 = 1, .div1p5 = 0}, 111 { .lomax = 109000000, .spd = 3, .bs = 3, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 0}, 112 { .lomax = 123000000, .spd = 2, .bs = 2, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 1}, 113 { .lomax = 133000000, .spd = 2, .bs = 3, .bp = 1, .cp = 0, .gc3 = 1, .div1p5 = 1}, [all …]
|
/linux-4.1.27/arch/powerpc/lib/ |
D | rheap.c | 158 unsigned long s, e, bs, be; in attach_free_block() local 175 bs = blk->start; in attach_free_block() 176 be = bs + blk->size; in attach_free_block() 178 if (next == NULL && s >= bs) in attach_free_block() 184 if (e == bs) in attach_free_block() 374 unsigned long s, e, m, bs, be; in rh_detach_region() local 398 bs = blk->start; in rh_detach_region() 400 if (s >= bs && e <= be) in rh_detach_region() 409 if (bs == s && be == e) { in rh_detach_region() 417 if (bs == s || be == e) { in rh_detach_region() [all …]
|
/linux-4.1.27/arch/mips/txx9/generic/ |
D | mem_tx4927.c | 43 unsigned int bs = 0; in tx4927_process_sdccr() local 58 bs = 2 << sdccr_bs; in tx4927_process_sdccr() 64 return rs * cs * mw * bs; in tx4927_process_sdccr()
|
/linux-4.1.27/arch/cris/boot/rescue/ |
D | Makefile | 34 dd if=/dev/zero of=tmp2423 bs=1 count=784 36 dd if=testrescue_tmp.bin of=$(obj)/testrescue.bin bs=1 count=784 43 dd if=/dev/zero of=tmp2423 bs=1 count=784 45 dd if=kimagerescue_tmp.bin of=$(obj)/kimagerescue.bin bs=1 count=784
|
/linux-4.1.27/drivers/staging/fbtft/ |
D | fb_tls8204.c | 40 static unsigned bs = 4; variable 41 module_param(bs, uint, 0); 42 MODULE_PARM_DESC(bs, "BS[2:0] Bias voltage level: 0-7 (default: 4)"); 58 write_reg(par, 0x10 | (bs & 0x7)); /* in init_display()
|
D | fb_pcd8544.c | 43 static unsigned bs = 4; variable 44 module_param(bs, uint, 0); 45 MODULE_PARM_DESC(bs, "BS[2:0] Bias voltage level: 0-7 (default: 4)"); 79 write_reg(par, 0x10 | (bs & 0x7)); in init_display()
|
/linux-4.1.27/drivers/media/pci/bt8xx/ |
D | dvb-bt8xx.c | 158 unsigned char bs = 0; in thomson_dtt7579_tuner_calc_regs() local 174 bs = 0x03; in thomson_dtt7579_tuner_calc_regs() 176 bs = 0x02; in thomson_dtt7579_tuner_calc_regs() 178 bs = 0x08; in thomson_dtt7579_tuner_calc_regs() 184 pllbuf[4] = bs; in thomson_dtt7579_tuner_calc_regs() 353 unsigned char bs = 0; in advbt771_samsung_tdtc9251dh0_tuner_calc_regs() local 380 bs = 0x01; in advbt771_samsung_tdtc9251dh0_tuner_calc_regs() 382 bs = 0x01; in advbt771_samsung_tdtc9251dh0_tuner_calc_regs() 384 bs = 0x02; in advbt771_samsung_tdtc9251dh0_tuner_calc_regs() 386 bs = 0x02; in advbt771_samsung_tdtc9251dh0_tuner_calc_regs() [all …]
|
/linux-4.1.27/drivers/crypto/ |
D | omap-sham.c | 460 int bs, nr_dr; in omap_sham_write_ctrl_omap4() local 465 bs = get_block_size(ctx); in omap_sham_write_ctrl_omap4() 466 nr_dr = bs / (2 * sizeof(u32)); in omap_sham_write_ctrl_omap4() 472 ctx->digcnt += bs; in omap_sham_write_ctrl_omap4() 715 #define SG_SA(sg, bs) (IS_ALIGNED(sg->length, bs)) argument 722 int ret, bs; in omap_sham_update_dma_start() local 743 bs = get_block_size(ctx); in omap_sham_update_dma_start() 748 if (!sg_is_last(sg) && !SG_SA(sg, bs)) in omap_sham_update_dma_start() 757 tail = length & (bs - 1); in omap_sham_update_dma_start() 760 tail = bs; in omap_sham_update_dma_start() [all …]
|
D | mv_cesa.c | 778 int bs, ds, ss; in mv_hash_setkey() local 789 bs = crypto_shash_blocksize(ctx->base_hash); in mv_hash_setkey() 804 if (keylen > bs) { in mv_hash_setkey() 816 memset(ipad + keylen, 0, bs - keylen); in mv_hash_setkey() 817 memcpy(opad, ipad, bs); in mv_hash_setkey() 819 for (i = 0; i < bs; i++) { in mv_hash_setkey() 825 crypto_shash_update(shash, ipad, bs) ? : in mv_hash_setkey() 828 crypto_shash_update(shash, opad, bs) ? : in mv_hash_setkey()
|
D | n2_core.c | 449 int err, bs, ds; in n2_hmac_async_setkey() local 460 bs = crypto_shash_blocksize(child_shash); in n2_hmac_async_setkey() 463 if (keylen > bs) { in n2_hmac_async_setkey()
|
/linux-4.1.27/arch/ia64/sn/kernel/ |
D | io_common.c | 231 struct pcibus_bussoft *bs; in sn_pci_fixup_slot() local 252 bs = SN_PCIBUS_BUSSOFT(dev->bus); in sn_pci_fixup_slot() 253 pcidev_info->pdi_pcibus_info = bs; in sn_pci_fixup_slot() 255 if (bs && bs->bs_asic_type < PCIIO_ASIC_MAX_TYPES) { in sn_pci_fixup_slot() 256 SN_PCIDEV_BUSPROVIDER(dev) = sn_pci_provider[bs->bs_asic_type]; in sn_pci_fixup_slot() 262 if (bs && sn_irq_info->irq_irq) { in sn_pci_fixup_slot()
|
/linux-4.1.27/drivers/staging/dgap/ |
D | dgap.c | 1521 struct bs_t __iomem *bs; in dgap_input() local 1542 bs = ch->ch_bs; in dgap_input() 1543 if (!bs) in dgap_input() 1560 head = readw(&(bs->rx_head)); in dgap_input() 1562 tail = readw(&(bs->rx_tail)); in dgap_input() 1568 writeb(1, &(bs->idata)); in dgap_input() 1584 writew(head, &(bs->rx_tail)); in dgap_input() 1585 writeb(1, &(bs->idata)); in dgap_input() 1595 writeb(1, &(bs->idata)); in dgap_input() 1604 tmpchar = readb(&(bs->orun)); in dgap_input() [all …]
|
/linux-4.1.27/drivers/block/ |
D | null_blk.c | 114 static int bs = 512; variable 115 module_param(bs, int, S_IRUGO); 116 MODULE_PARM_DESC(bs, "Block size (in bytes)"); 575 blk_queue_logical_block_size(nullb->q, bs); in null_add_dev() 576 blk_queue_physical_block_size(nullb->q, bs); in null_add_dev() 579 sector_div(size, bs); in null_add_dev() 609 if (bs > PAGE_SIZE) { in null_init() 612 bs = PAGE_SIZE; in null_init()
|
D | nvme-core.c | 1997 unsigned short bs; in nvme_revalidate_disk() local 2025 bs = 1 << ns->lba_shift; in nvme_revalidate_disk() 2033 bs != queue_logical_block_size(disk->queue) || in nvme_revalidate_disk() 2038 blk_queue_logical_block_size(ns->queue, bs); in nvme_revalidate_disk()
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | bitops.h | 52 #define PPC_BITMASK(bs, be) ((PPC_BIT(bs) - PPC_BIT(be)) | PPC_BIT(bs)) argument
|
/linux-4.1.27/lib/ |
D | ts_bm.c | 67 int shift = bm->patlen - 1, bs; in bm_find() local 89 next: bs = bm->bad_shift[text[shift-i]]; in bm_find() 92 shift = max_t(int, shift-i+bs, shift+bm->good_shift[i]); in bm_find()
|
/linux-4.1.27/drivers/atm/ |
D | nicstarmac.c | 108 #define NICSTAR_REG_WRITE(bs, reg, val) \ argument 109 while ( readl(bs + STAT) & 0x0200 ) ; \ 111 #define NICSTAR_REG_READ(bs, reg) \ argument
|
/linux-4.1.27/drivers/block/paride/ |
D | pt.c | 223 int bs; /* block size */ member 556 tape->bs = 0; in pt_identify() 564 tape->bs = xn(buf, 10, 2); in pt_identify() 576 printk(", blocksize %d, %d MB\n", tape->bs, tape->capacity / 1024); in pt_identify() 784 b = (n - 1 + tape->bs) / tape->bs; in pt_read() 785 n = b * tape->bs; /* rounded up to even block */ in pt_read() 885 b = (n - 1 + tape->bs) / tape->bs; in pt_write() 886 n = b * tape->bs; /* rounded up to even block */ in pt_write()
|
D | pf.c | 607 int bs; in pf_get_capacity() local 614 bs = xl(buf, 4); in pf_get_capacity() 615 if (bs != 512) { in pf_get_capacity() 620 pf->name, pf->drive, pf->lun, bs); in pf_get_capacity()
|
/linux-4.1.27/Documentation/scsi/ |
D | wd719x.txt | 19 dd if=wd7296a.sys of=wd719x-risc.bin bs=1 skip=5760 count=14336 20 dd if=wd7296a.sys of=wd719x-wcs.bin bs=1 skip=20096 count=514
|
D | dtc3x80.txt | 38 the transfer state. I have tested with: "dd bs=4k count=2k
|
D | tmscsim.txt | 97 dd if=/dev/sda of=/mnt/floppy/sda bs=512 count=1
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
D | ctxgm107.c | 920 const u32 bs = attrib * priv->ppc_tpc_nr[gpc][ppc]; in gm107_grctx_generate_attrib() local 923 mmio_wr32(info, o + 0xc0, bs); in gm107_grctx_generate_attrib() 929 mmio_wr32(info, u, ((bs / 3 /*XXX*/) << 16) | bs); in gm107_grctx_generate_attrib()
|
/linux-4.1.27/fs/hpfs/ |
D | alloc.c | 118 unsigned bs = near & ~0x3fff; in alloc_in_bmp() local 128 if (bs != ~0x3fff) { in alloc_in_bmp() 134 ret = bs + nr; in alloc_in_bmp() 149 ret = bs + q; in alloc_in_bmp() 172 ret = bs + q; in alloc_in_bmp() 180 …if (hpfs_sb(s)->sb_chk && ((ret >> 14) != (bs >> 14) || (le32_to_cpu(bmp[(ret & 0x3fff) >> 5]) | ~… in alloc_in_bmp()
|
/linux-4.1.27/include/linux/ |
D | bio.h | 359 gfp_t gfp, struct bio_set *bs); 372 gfp_t gfp, struct bio_set *bs) in bio_next_split() argument 377 return bio_split(bio, sectors, gfp, bs); in bio_next_split() 390 extern struct bio *bio_clone_bioset(struct bio *, gfp_t, struct bio_set *bs); 724 static inline int bioset_integrity_create(struct bio_set *bs, int pool_size) in bioset_integrity_create() argument 729 static inline void bioset_integrity_free (struct bio_set *bs) in bioset_integrity_free() argument
|
D | blkdev.h | 808 struct bio_set *bs, gfp_t gfp_mask,
|
/linux-4.1.27/drivers/uwb/ |
D | beacon.c | 473 struct uwb_rc_evt_beacon_size *bs; in uwbd_evt_handle_rc_beacon_size() local 476 if (evt->notif.size < sizeof(*bs)) { in uwbd_evt_handle_rc_beacon_size() 479 evt->notif.size, sizeof(*bs)); in uwbd_evt_handle_rc_beacon_size() 482 bs = container_of(evt->notif.rceb, struct uwb_rc_evt_beacon_size, rceb); in uwbd_evt_handle_rc_beacon_size() 485 "(FIXME: action?)\n", le16_to_cpu(bs->wNewBeaconSize)); in uwbd_evt_handle_rc_beacon_size()
|
/linux-4.1.27/arch/arm/crypto/ |
D | Makefile | 6 obj-$(CONFIG_CRYPTO_AES_ARM_BS) += aes-arm-bs.o 28 aes-arm-bs-y := aesbs-core.o aesbs-glue.o
|
D | aesbs-glue.c | 24 u8 __aligned(8) bs[BIT_SLICED_KEY_MAXSIZE];
|
/linux-4.1.27/tools/testing/selftests/powerpc/mm/ |
D | Makefile | 13 dd if=/dev/zero of=tempfile bs=64k count=1
|
/linux-4.1.27/drivers/md/ |
D | dm-log.c | 258 static inline int log_test_bit(uint32_t *bs, unsigned bit) in log_test_bit() argument 260 return test_bit_le(bit, bs) ? 1 : 0; in log_test_bit() 264 uint32_t *bs, unsigned bit) in log_set_bit() argument 266 __set_bit_le(bit, bs); in log_set_bit() 271 uint32_t *bs, unsigned bit) in log_clear_bit() argument 273 __clear_bit_le(bit, bs); in log_clear_bit()
|
D | dm.c | 189 struct bio_set *bs; member 251 struct bio_set *bs; member 1508 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs); in alloc_tio() 1839 r = blk_rq_prep_clone(clone, rq, tio->md->bs, gfp_mask, in setup_clone() 2380 if (md->bs) in free_dev() 2381 bioset_free(md->bs); in free_dev() 2408 if (md->bs) { in __bind_mempools() 2415 bioset_free(md->bs); in __bind_mempools() 2416 md->bs = p->bs; in __bind_mempools() 2417 p->bs = NULL; in __bind_mempools() [all …]
|
D | dm-crypt.c | 130 struct bio_set *bs; member 421 unsigned bs = crypto_ablkcipher_blocksize(any_tfm(cc)); in crypt_iv_benbi_ctr() local 422 int log = ilog2(bs); in crypt_iv_benbi_ctr() 427 if (1 << log != bs) { in crypt_iv_benbi_ctr() 987 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs); in crypt_alloc_buffer() 1136 clone = bio_clone_fast(io->base_bio, gfp, cc->bs); in kcryptd_io_read() 1526 if (cc->bs) in crypt_dtr() 1527 bioset_free(cc->bs); in crypt_dtr() 1782 cc->bs = bioset_create(MIN_IOS, 0); in crypt_ctr() 1783 if (!cc->bs) { in crypt_ctr()
|
D | md.c | 480 struct bio_set *bs = NULL; in mddev_put() local 489 bs = mddev->bio_set; in mddev_put() 503 if (bs) in mddev_put() 504 bioset_free(bs); in mddev_put()
|
/linux-4.1.27/drivers/mmc/card/ |
D | mmc_test.c | 162 unsigned int *bs; member 2161 ret = mmc_test_rw_multiple(test, rw, rw->bs[i], rw->size, 0); in mmc_test_rw_multiple_size() 2188 unsigned int bs[] = {1 << 12, 1 << 13, 1 << 14, 1 << 15, 1 << 16, in mmc_test_profile_mult_write_blocking_perf() local 2191 .bs = bs, in mmc_test_profile_mult_write_blocking_perf() 2193 .len = ARRAY_SIZE(bs), in mmc_test_profile_mult_write_blocking_perf() 2207 unsigned int bs[] = {1 << 12, 1 << 13, 1 << 14, 1 << 15, 1 << 16, in mmc_test_profile_mult_write_nonblock_perf() local 2210 .bs = bs, in mmc_test_profile_mult_write_nonblock_perf() 2212 .len = ARRAY_SIZE(bs), in mmc_test_profile_mult_write_nonblock_perf() 2226 unsigned int bs[] = {1 << 12, 1 << 13, 1 << 14, 1 << 15, 1 << 16, in mmc_test_profile_mult_read_blocking_perf() local 2229 .bs = bs, in mmc_test_profile_mult_read_blocking_perf() [all …]
|
/linux-4.1.27/fs/xfs/libxfs/ |
D | xfs_fs.h | 322 bstat_get_projid(struct xfs_bstat *bs) in bstat_get_projid() argument 324 return (__uint32_t)bs->bs_projid_hi << 16 | bs->bs_projid_lo; in bstat_get_projid()
|
/linux-4.1.27/Documentation/blockdev/ |
D | ramdisk.txt | 125 dd if=/dev/zero of=/dev/ram0 bs=1k count=2048 138 dd if=/dev/ram0 bs=1k count=2048 | gzip -v9 > /tmp/ram_image.gz 142 dd if=zImage of=/dev/fd0 bs=1k 151 dd if=/tmp/ram_image.gz of=/dev/fd0 bs=1k seek=400
|
/linux-4.1.27/drivers/media/pci/zoran/ |
D | zoran_driver.c | 545 zr->v4l_buffers.buffer[num].bs.length = in zoran_v4l_queue_frame() 765 static int jpg_sync(struct zoran_fh *fh, struct zoran_sync *bs) in jpg_sync() argument 820 *bs = zr->jpg_buffers.buffer[frame].bs; in jpg_sync() 821 bs->frame = frame; in jpg_sync() 853 fh->buffers.buffer[i].bs.frame = i; in zoran_open_init_session() 1365 buf->bytesused = fh->buffers.buffer[num].bs.length; in zoran_v4l2_buffer_status() 1368 buf->sequence = fh->buffers.buffer[num].bs.seq; in zoran_v4l2_buffer_status() 1370 buf->timestamp = fh->buffers.buffer[num].bs.timestamp; in zoran_v4l2_buffer_status() 1403 buf->sequence = fh->buffers.buffer[num].bs.seq; in zoran_v4l2_buffer_status() 1404 buf->timestamp = fh->buffers.buffer[num].bs.timestamp; in zoran_v4l2_buffer_status() [all …]
|
D | zoran_device.c | 1172 v4l2_get_timestamp(&buffer->bs.timestamp); in zoran_reap_stat_com() 1175 buffer->bs.length = (stat_com & 0x7fffff) >> 1; in zoran_reap_stat_com() 1183 buffer->bs.length = 0; in zoran_reap_stat_com() 1185 buffer->bs.seq = in zoran_reap_stat_com() 1409 zr->v4l_buffers.buffer[zr->v4l_grab_frame].bs.seq = zr->v4l_grab_seq; in zoran_irq() 1410 v4l2_get_timestamp(&zr->v4l_buffers.buffer[zr->v4l_grab_frame].bs.timestamp); in zoran_irq()
|
D | zoran.h | 185 struct zoran_sync bs; /* DONE: info to return to application */ member
|
/linux-4.1.27/arch/s390/include/asm/ |
D | eadm.h | 44 u16 bs:4; member
|
/linux-4.1.27/arch/x86/boot/ |
D | Makefile | 138 dd if=/dev/zero of=$(obj)/fdimage bs=1024 count=1440 149 dd if=/dev/zero of=$(obj)/fdimage bs=1024 count=2880
|
/linux-4.1.27/net/atm/ |
D | br2684.c | 806 #define bs(var) b1(var, 0), b1(var, 1), b1(var, 2), b1(var, 3) in br2684_seq_show() macro 809 "%d.%d.%d.%d\n", bs(prefix), bs(netmask)); in br2684_seq_show() 810 #undef bs in br2684_seq_show()
|
/linux-4.1.27/kernel/trace/ |
D | trace_probe.c | 231 unsigned long bs; in find_fetch_type() local 238 if (kstrtoul(type, 0, &bs)) in find_fetch_type() 241 switch (bs) { in find_fetch_type()
|
/linux-4.1.27/tools/testing/selftests/rcutorture/doc/ |
D | rcu-test-image.txt | 10 dd if=/dev/zero of=rcu-test-image bs=400M count=1
|
/linux-4.1.27/arch/powerpc/boot/ |
D | wrapper | 461 count=$overlay_size bs=1 465 count=$overlay_size bs=1
|
/linux-4.1.27/fs/udf/ |
D | inode.c | 1289 int bs = inode->i_sb->s_blocksize; in udf_read_inode() local 1376 ret = udf_alloc_i_data(inode, bs - in udf_read_inode() 1382 bs - sizeof(struct extendedFileEntry)); in udf_read_inode() 1386 ret = udf_alloc_i_data(inode, bs - sizeof(struct fileEntry)); in udf_read_inode() 1391 bs - sizeof(struct fileEntry)); in udf_read_inode() 1398 ret = udf_alloc_i_data(inode, bs - in udf_read_inode() 1404 bs - sizeof(struct unallocSpaceEntry)); in udf_read_inode() 1492 if (iinfo->i_lenEAttr > bs || iinfo->i_lenAlloc > bs) in udf_read_inode() 1495 if (udf_file_entry_alloc_offset(inode) + iinfo->i_lenAlloc > bs) in udf_read_inode() 1506 if (inode->i_size > bs - udf_file_entry_alloc_offset(inode)) in udf_read_inode()
|
/linux-4.1.27/Documentation/dvb/ |
D | lmedm04.txt | 79 echo -ne \\xF0\\x22 | dd conv=notrunc bs=1 count=2 seek=266 of=dvb-usb-lme2510c-rs2000.fw
|
/linux-4.1.27/drivers/target/ |
D | target_core_iblock.c | 162 struct bio_set *bs = ib_dev->ibd_bio_set; in iblock_configure_device() local 179 if (bioset_integrity_create(bs, IBLOCK_BIO_POOL_SIZE) < 0) { in iblock_configure_device() 185 bs->bio_integrity_pool); in iblock_configure_device()
|
/linux-4.1.27/tools/perf/util/ |
D | machine.c | 1470 const struct branch_stack *bs = sample->branch_stack; in sample__resolve_bstack() local 1471 struct branch_info *bi = calloc(bs->nr, sizeof(struct branch_info)); in sample__resolve_bstack() 1476 for (i = 0; i < bs->nr; i++) { in sample__resolve_bstack() 1477 ip__resolve_ams(al->thread, &bi[i].to, bs->entries[i].to); in sample__resolve_bstack() 1478 ip__resolve_ams(al->thread, &bi[i].from, bs->entries[i].from); in sample__resolve_bstack() 1479 bi[i].flags = bs->entries[i].flags; in sample__resolve_bstack()
|
D | pmu.c | 866 const char * const *bs = b; in cmp_string() local 867 return strcmp(*as, *bs); in cmp_string()
|
D | parse-events.c | 1096 const char * const *bs = b; in cmp_string() local 1098 return strcmp(*as, *bs); in cmp_string()
|
/linux-4.1.27/Documentation/filesystems/ |
D | bfs.txt | 45 # dd if=/dev/rdsk/c0b0t0d0sa of=stand.img bs=512
|
D | udf.txt | 30 bs= Set the block size.
|
D | affs.txt | 63 bs=blksize Sets the blocksize to blksize. Valid block sizes are 512, 177 dd if=/dev/zero of=rdb.fixed bs=1 seek=220 count=4
|
/linux-4.1.27/Documentation/block/ |
D | null_blk.txt | 38 bs=[Block size (in bytes)]: Default: 512 bytes
|
/linux-4.1.27/fs/nfsd/ |
D | nfs3xdr.c | 1021 u64 bs = s->f_bsize; in nfs3svc_encode_fsstatres() local 1026 p = xdr_encode_hyper(p, bs * s->f_blocks); /* total bytes */ in nfs3svc_encode_fsstatres() 1027 p = xdr_encode_hyper(p, bs * s->f_bfree); /* free bytes */ in nfs3svc_encode_fsstatres() 1028 p = xdr_encode_hyper(p, bs * s->f_bavail); /* user available bytes */ in nfs3svc_encode_fsstatres()
|
/linux-4.1.27/drivers/s390/block/ |
D | scm_blk_cluster.c | 147 msb->bs = MSB_BS_4K; in scm_prepare_cluster_request()
|
D | scm_blk.c | 196 msb->bs = MSB_BS_4K; in scm_request_prepare()
|
/linux-4.1.27/drivers/video/console/ |
D | fbcon_ccw.c | 198 unsigned int bs = vc->vc_rows*ch; in ccw_clear_margins() local 213 region.dx = info->var.xoffset + bs; in ccw_clear_margins()
|
D | bitblit.c | 213 unsigned int bs = info->var.yres - bh; in bit_clear_margins() local 229 region.dy = info->var.yoffset + bs; in bit_clear_margins()
|
/linux-4.1.27/drivers/input/tablet/ |
D | aiptek.c | 440 int retval, macro, x, y, z, left, right, middle, p, dv, tip, bs, pck; in aiptek_irq() local 543 bs = (data[5] & aiptek->curSetting.stylusButtonLower) != 0 ? 1 : 0; in aiptek_irq() 571 input_report_key(inputdev, BTN_STYLUS, bs); in aiptek_irq() 678 bs = (data[1] & aiptek->curSetting.stylusButtonLower) != 0 ? 1 : 0; in aiptek_irq()
|
/linux-4.1.27/Documentation/fmc/ |
D | fmc-chardev.txt | 40 spusa.root# dd bs=4 skip=64 count=1 if=/dev/fmc-0200 2> /dev/null | od -t x1z
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | PROBLEMS | 51 Disable backing store by starting X with the option "-bs"
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | fake-numa-for-cpusets | 53 [root@xroads /exampleset/ddset]# dd if=/dev/zero of=tmp bs=1024 count=1G
|
/linux-4.1.27/Documentation/power/ |
D | swsusp-and-swap-files.txt | 26 # dd if=/dev/zero of=<swap_file_path> bs=1024 count=<swap_file_size_in_k>
|
/linux-4.1.27/Documentation/video4linux/ |
D | zr364xx.txt | 28 To capture a single image, try this: dd if=/dev/video0 of=test.jpg bs=1M count=1
|
/linux-4.1.27/net/nfc/ |
D | digital_dep.c | 75 u8 bs; member 86 u8 bs; member 479 atr_req->bs = 0; in digital_in_send_atr_req()
|
/linux-4.1.27/tools/lguest/ |
D | lguest.txt | 63 dd if=/dev/zero of=rootfile bs=1M count=2048
|
/linux-4.1.27/fs/btrfs/ |
D | ioctl.c | 2886 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize; in extent_same_check_offsets() local 2891 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs)) in extent_same_check_offsets() 2953 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize; in btrfs_ioctl_file_extent_same() local 2990 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) { in btrfs_ioctl_file_extent_same() 3689 u64 bs = root->fs_info->sb->s_blocksize; in btrfs_ioctl_clone() local 3767 len = ALIGN(src->i_size, bs) - off; in btrfs_ioctl_clone() 3775 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) || in btrfs_ioctl_clone() 3776 !IS_ALIGNED(destoff, bs)) in btrfs_ioctl_clone()
|
D | ctree.h | 389 #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header)) argument
|
D | send.c | 4619 u64 bs = sctx->send_root->fs_info->sb->s_blocksize; in send_write_or_clone() local 4644 if (clone_root && IS_ALIGNED(offset + len, bs)) { in send_write_or_clone()
|
/linux-4.1.27/Documentation/ia64/ |
D | xen.txt | 55 # dd if=/dev/zero of=/root/rhel5.img bs=1M seek=4096 count=0
|
/linux-4.1.27/drivers/misc/cxl/ |
D | pci.c | 94 #define EXTRACT_PPC_BITS(val, bs, be) ((val & PPC_BITMASK(bs, be)) >> PPC_BITLSHIFT(be)) argument
|
/linux-4.1.27/drivers/scsi/ |
D | osst.c | 2689 osst_block_size_page_t * bs; in osst_configure_onstream() local 2730 …bs = (osst_block_size_page_t *) ((STp->buffer)->b_data + sizeof(osst_mode_parameter_header_t) + he… in osst_configure_onstream() 2733 printk(OSST_DEB_MSG "%s:D: 32KB play back: %s\n", name, bs->play32 ? "Yes" : "No"); in osst_configure_onstream() 2734 printk(OSST_DEB_MSG "%s:D: 32.5KB play back: %s\n", name, bs->play32_5 ? "Yes" : "No"); in osst_configure_onstream() 2735 printk(OSST_DEB_MSG "%s:D: 32KB record: %s\n", name, bs->record32 ? "Yes" : "No"); in osst_configure_onstream() 2736 printk(OSST_DEB_MSG "%s:D: 32.5KB record: %s\n", name, bs->record32_5 ? "Yes" : "No"); in osst_configure_onstream() 2742 bs->one = 1; in osst_configure_onstream() 2743 bs->play32 = 0; in osst_configure_onstream() 2744 bs->play32_5 = 1; in osst_configure_onstream() 2745 bs->record32 = 0; in osst_configure_onstream() [all …]
|
/linux-4.1.27/drivers/tty/ |
D | cyclades.c | 3442 const struct zfile_block *b, *bs; in __cyz_load_fw() local 3451 bs = ptr + h->block_offset; in __cyz_load_fw() 3454 (void *)(bs + h->n_blocks) > ptr + len) { in __cyz_load_fw() 3485 for (b = bs; b < bs + h->n_blocks; b++) in __cyz_load_fw() 3497 b = &bs[c->block_list[a]]; in __cyz_load_fw()
|
/linux-4.1.27/Documentation/cgroups/ |
D | memcg_test.txt | 272 # a="$(dd if=/dev/zero bs=1M count=10)"
|
D | blkio-controller.txt | 87 # dd if=/mnt/common/zerofile of=/dev/null bs=4K count=1024
|
/linux-4.1.27/Documentation/arm/ |
D | README | 135 I've just got 240K/s off it (a dd with bs=128k); thats about half of what
|
/linux-4.1.27/drivers/net/ethernet/tile/ |
D | tilegx.c | 362 size_t bs = gxio_mpipe_buffer_size_enum_to_buffer_size(bse); in tile_net_provide_buffer() local 367 len = sizeof(struct sk_buff **) + buffer_alignment + bs; in tile_net_provide_buffer()
|
/linux-4.1.27/drivers/tty/vt/ |
D | vt.c | 1138 static inline void bs(struct vc_data *vc) in bs() function 1746 bs(vc); in do_con_trol() 2579 bs(vc); in vt_console_print()
|
/linux-4.1.27/Documentation/device-mapper/ |
D | thin-provisioning.txt | 70 dd if=/dev/zero of=$metadata_dev bs=4096 count=1
|
/linux-4.1.27/Documentation/input/ |
D | joystick-parport.txt | 3 (c) 1998 Andree Borrmann <a.borrmann@tu-bs.de>
|
/linux-4.1.27/Documentation/ |
D | initrd.txt | 135 # dd if=/dev/zero of=initrd bs=300k count=1
|
D | edac.txt | 727 dd if=/dev/mem of=/dev/null seek=16k bs=4k count=1 >& /dev/null
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 2028 dd if=/dev/zero of=new_filesystem seek=100 count=1 bs=1M
|