/linux-4.1.27/arch/tile/lib/ |
D | memcpy_64.c | 66 op_t final; /* Final bytes to write to trailing word, if any */ in memcpy() local 235 final = __insn_dblalign(tmp0, tmp1, srci); in memcpy() 313 final = LD8(src8); in memcpy() 320 ST4((uint32_t *)dst1, final); in memcpy() 322 final >>= 32; in memcpy() 326 ST2((uint16_t *)dst1, final); in memcpy() 328 final >>= 16; in memcpy() 332 ST1((uint8_t *)dst1, final); in memcpy() 335 ST4((uint32_t *)dst1, final >> 32); in memcpy() 340 final >>= 32; in memcpy() [all …]
|
/linux-4.1.27/drivers/isdn/hardware/eicon/ |
D | istream.c | 43 int final, 50 int *final, 74 int final, in diva_istream_write() argument 112 ((!length && final) ? DIVA_DFIFO_LAST : 0); in diva_istream_write() 152 int *final, in diva_istream_read() argument 159 *final = 0; in diva_istream_read() 194 *final = 1; in diva_istream_read() 210 if (*final) { in diva_istream_read()
|
D | di.h | 105 int final, 112 int *final,
|
D | divasync.h | 175 int final, 182 int *final, 190 int *final);
|
D | di.c | 617 int final = 0; in isdn_ind() local 623 &final, NULL, NULL); in isdn_ind()
|
/linux-4.1.27/drivers/crypto/ |
D | atmel-sha.c | 352 size_t length, int final) in atmel_sha_xmit_cpu() argument 359 ctx->digcnt[1], ctx->digcnt[0], length, final); in atmel_sha_xmit_cpu() 368 if (final) in atmel_sha_xmit_cpu() 382 size_t length1, dma_addr_t dma_addr2, size_t length2, int final) in atmel_sha_xmit_pdc() argument 388 ctx->digcnt[1], ctx->digcnt[0], length1, final); in atmel_sha_xmit_pdc() 406 if (final) in atmel_sha_xmit_pdc() 426 size_t length1, dma_addr_t dma_addr2, size_t length2, int final) in atmel_sha_xmit_dma() argument 433 ctx->digcnt[1], ctx->digcnt[0], length1, final); in atmel_sha_xmit_dma() 468 if (final) in atmel_sha_xmit_dma() 481 size_t length1, dma_addr_t dma_addr2, size_t length2, int final) in atmel_sha_xmit_start() argument [all …]
|
D | omap-sham.c | 193 int final, int dma); 376 int final, int dma) in omap_sham_write_ctrl_omap2() argument 395 if (final) in omap_sham_write_ctrl_omap2() 445 int final, int dma) in omap_sham_write_ctrl_omap4() argument 476 if (final) { in omap_sham_write_ctrl_omap4() 508 size_t length, int final) in omap_sham_xmit_cpu() argument 515 ctx->digcnt, length, final); in omap_sham_xmit_cpu() 517 dd->pdata->write_ctrl(dd, length, final, 0); in omap_sham_xmit_cpu() 523 if (final) in omap_sham_xmit_cpu() 553 size_t length, int final, int is_sg) in omap_sham_xmit_dma() argument [all …]
|
D | padlock-sha.c | 249 .final = padlock_sha1_final, 273 .final = padlock_sha256_final, 496 .final = padlock_sha1_final_nano, 515 .final = padlock_sha256_final_nano,
|
D | img-hash.c | 190 size_t length, int final) in img_hash_xmit_cpu() argument 197 if (final) in img_hash_xmit_cpu() 712 .final = img_hash_final, 735 .final = img_hash_final, 758 .final = img_hash_final, 781 .final = img_hash_final,
|
D | mxs-dcp.c | 834 .final = dcp_sha_final, 858 .final = dcp_sha_final,
|
D | mv_cesa.c | 976 .final = mv_hash_final, 1000 .final = mv_hash_final,
|
D | bfin_crc.c | 507 .final = bfin_crypto_crc_final,
|
D | sahara.c | 1321 .final = sahara_sha_final, 1348 .final = sahara_sha_final,
|
/linux-4.1.27/arch/ia64/kernel/ |
D | unaligned.c | 566 float_spill_f0 (struct ia64_fpreg *final) in float_spill_f0() argument 568 ia64_stf_spill(final, 0); in float_spill_f0() 572 float_spill_f1 (struct ia64_fpreg *final) in float_spill_f1() argument 574 ia64_stf_spill(final, 1); in float_spill_f1() 957 mem2float_extended (struct ia64_fpreg *init, struct ia64_fpreg *final) in mem2float_extended() argument 961 ia64_stf_spill(final, 6); in mem2float_extended() 965 mem2float_integer (struct ia64_fpreg *init, struct ia64_fpreg *final) in mem2float_integer() argument 969 ia64_stf_spill(final, 6); in mem2float_integer() 973 mem2float_single (struct ia64_fpreg *init, struct ia64_fpreg *final) in mem2float_single() argument 977 ia64_stf_spill(final, 6); in mem2float_single() [all …]
|
/linux-4.1.27/drivers/crypto/ccp/ |
D | ccp-crypto-aes-cmac.c | 59 unsigned int final) in ccp_do_cmac_update() argument 80 if (!final && (len <= block_size)) { in ccp_do_cmac_update() 91 rctx->final = final; in ccp_do_cmac_update() 92 rctx->hash_rem = final ? 0 : len & (block_size - 1); in ccp_do_cmac_update() 94 if (!final && !rctx->hash_rem) { in ccp_do_cmac_update() 100 if (final && (rctx->null_msg || (len & (block_size - 1)))) in ccp_do_cmac_update() 142 if (final) in ccp_do_cmac_update() 161 rctx->cmd.u.aes.cmac_final = final; in ccp_do_cmac_update() 370 alg->final = ccp_aes_cmac_final; in ccp_register_aes_cmac_algs()
|
D | ccp-crypto-sha.c | 58 unsigned int final) in ccp_do_sha_update() argument 73 if (!final && (len <= block_size)) { in ccp_do_sha_update() 84 rctx->final = final; in ccp_do_sha_update() 85 rctx->hash_rem = final ? 0 : len & (block_size - 1); in ccp_do_sha_update() 87 if (!final && !rctx->hash_rem) { in ccp_do_sha_update() 137 rctx->cmd.u.sha.final = rctx->final; in ccp_do_sha_update() 430 alg->final = ccp_sha_final; in ccp_register_sha_alg()
|
D | ccp-crypto.h | 108 unsigned int final; member 162 unsigned int final; member
|
D | ccp-ops.c | 1232 if (!xts->final && (xts->src_len & (AES_BLOCK_SIZE - 1))) in ccp_run_xts_aes_cmd() 1374 if (!sha->final && (sha->src_len & (CCP_SHA_BLOCKSIZE - 1))) in ccp_run_sha_cmd() 1381 if (!sha->final) in ccp_run_sha_cmd() 1472 if (sha->final && !src.sg_wa.bytes_left) in ccp_run_sha_cmd() 1496 if (sha->final && sha->opad) { in ccp_run_sha_cmd() 1546 hmac_cmd.u.sha.final = 1; in ccp_run_sha_cmd() 1683 if (!pt->final && (pt->src_len & (CCP_PASSTHRU_BLOCKSIZE - 1))) in ccp_run_passthru_cmd()
|
/linux-4.1.27/net/irda/ |
D | qos.c | 528 __u16 final; in irlap_param_baud_rate() local 545 final = (__u16) param->pv.i & self->qos_rx.baud_rate.bits; in irlap_param_baud_rate() 547 pr_debug("Final BAUD_RATE: 0x%04x\n", final); in irlap_param_baud_rate() 548 self->qos_tx.baud_rate.bits = final; in irlap_param_baud_rate() 549 self->qos_rx.baud_rate.bits = final; in irlap_param_baud_rate() 564 __u16 final; in irlap_param_link_disconnect() local 579 final = (__u8) param->pv.i & self->qos_rx.link_disc_time.bits; in irlap_param_link_disconnect() 581 pr_debug("Final LINK_DISC: %02x\n", final); in irlap_param_link_disconnect() 582 self->qos_tx.link_disc_time.bits = final; in irlap_param_link_disconnect() 583 self->qos_rx.link_disc_time.bits = final; in irlap_param_link_disconnect()
|
/linux-4.1.27/drivers/staging/rtl8188eu/hal/ |
D | phy.c | 1317 u8 i, final, chn_index; in rtl88eu_phy_iq_calibrate() local 1356 final = 0xff; in rtl88eu_phy_iq_calibrate() 1369 final = 0; in rtl88eu_phy_iq_calibrate() 1377 final = 0; in rtl88eu_phy_iq_calibrate() 1382 final = 1; in rtl88eu_phy_iq_calibrate() 1384 final = 3; in rtl88eu_phy_iq_calibrate() 1399 if (final != 0xff) { in rtl88eu_phy_iq_calibrate() 1400 reg_e94 = result[final][0]; in rtl88eu_phy_iq_calibrate() 1401 reg_e9c = result[final][1]; in rtl88eu_phy_iq_calibrate() 1402 reg_ea4 = result[final][2]; in rtl88eu_phy_iq_calibrate() [all …]
|
/linux-4.1.27/include/linux/ |
D | ccp.h | 219 u32 final; member 273 u32 final; /* Indicates final sha cmd */ member 364 u32 final; member
|
D | crypto.h | 641 int (*final)(struct hash_desc *desc, u8 *out); member 2293 return crypto_hash_crt(desc->tfm)->final(desc, out); in crypto_hash_final()
|
/linux-4.1.27/drivers/staging/skein/ |
D | skein_generic.c | 133 .final = skein256_final, 151 .final = skein512_final, 169 .final = skein1024_final,
|
/linux-4.1.27/arch/arm/crypto/ |
D | sha256_neon_glue.c | 75 .final = sha256_final, 90 .final = sha256_final,
|
D | sha2-ce-glue.c | 72 .final = sha2_ce_final, 87 .final = sha2_ce_final,
|
D | sha256_glue.c | 67 .final = sha256_final, 82 .final = sha256_final,
|
D | sha1_glue.c | 63 .final = sha1_final,
|
D | sha512_neon_glue.c | 253 .final = sha512_neon_final, 270 .final = sha384_neon_final,
|
D | sha1-ce-glue.c | 69 .final = sha1_ce_final,
|
D | sha1_neon_glue.c | 79 .final = sha1_neon_final,
|
D | ghash-ce-glue.c | 137 .final = ghash_final, 274 .final = ghash_async_final,
|
/linux-4.1.27/arch/alpha/lib/ |
D | strncpy.S | 46 subq $27, 1, $2 # clear the final bits in the prev word 72 1: ldq_u $1, 0($16) # clear the leading bits in the final word
|
D | memchr.S | 125 beq $2, $final # .. e1 : 157 $final: subq $5, $0, $18 # .. e1 : $18 <- number of bytes left to do
|
D | ev6-memchr.S | 142 beq $2, $final # U : U L U L 180 $final: subq $5, $0, $18 # E : $18 <- number of bytes left to do
|
D | ev6-stxncpy.S | 317 and a1, 7, t6 # E : avoid final load if possible 322 ldq_u t2, 8(a1) # L : load final src word 330 $u_eocfin: # end-of-count, final word
|
D | ev6-memset.S | 208 mskqh $7,$6,$2 # U : Mask final quad 385 mskqh $7,$6,$2 # U : Mask final quad 572 mskqh $7,$6,$2 # U : Mask final quad
|
D | stxncpy.S | 276 ldq_u t2, 8(a1) # e0 : load final src word 284 $u_eocfin: # end-of-count, final word
|
D | stxcpy.S | 277 srl t12, t5, t12 # e0 : adjust final null return value
|
D | ev6-stxcpy.S | 307 srl t12, t5, t12 # U : adjust final null return value
|
/linux-4.1.27/net/ipv6/ |
D | inet6_connection_sock.c | 74 struct in6_addr *final_p, final; in inet6_csk_route_req() local 81 final_p = fl6_update_dst(fl6, rcu_dereference(np->opt), &final); in inet6_csk_route_req() 197 struct in6_addr *final_p, final; in inet6_csk_route_socket() local 213 final_p = fl6_update_dst(fl6, rcu_dereference(np->opt), &final); in inet6_csk_route_socket()
|
D | syncookies.c | 240 struct in6_addr *final_p, final; in cookie_v6_check() local 245 final_p = fl6_update_dst(&fl6, rcu_dereference(np->opt), &final); in cookie_v6_check()
|
D | udp.c | 742 struct sk_buff *skb, unsigned int final) in flush_stack() argument 751 skb1 = (i == final) ? skb : skb_clone(skb, GFP_ATOMIC); in flush_stack() 1108 struct in6_addr *daddr, *final_p, final; in udpv6_sendmsg() local 1281 final_p = fl6_update_dst(&fl6, opt, &final); in udpv6_sendmsg()
|
D | af_inet6.c | 650 struct in6_addr *final_p, final; in inet6_sk_rebuild_header() local 666 &final); in inet6_sk_rebuild_header()
|
D | datagram.c | 48 struct in6_addr *daddr, *final_p, final; in __ip6_datagram_connect() local 175 final_p = fl6_update_dst(&fl6, opt, &final); in __ip6_datagram_connect()
|
D | raw.c | 737 struct in6_addr *daddr, *final_p, final; in rawv6_sendmsg() local 863 final_p = fl6_update_dst(&fl6, opt, &final); in rawv6_sendmsg()
|
D | tcp_ipv6.c | 122 struct in6_addr *saddr = NULL, *final_p, final; in tcp_v6_connect() local 241 final_p = fl6_update_dst(&fl6, opt, &final); in tcp_v6_connect()
|
/linux-4.1.27/arch/arm64/crypto/ |
D | sha2-ce-glue.c | 90 .final = sha256_ce_final, 105 .final = sha256_ce_final,
|
D | crc32-arm64.c | 227 .final = chksum_final, 248 .final = chksumc_final,
|
D | sha1-ce-glue.c | 89 .final = sha1_ce_final,
|
D | ghash-ce-glue.c | 131 .final = ghash_final,
|
/linux-4.1.27/arch/x86/crypto/ |
D | sha256_ssse3_glue.c | 104 .final = sha256_ssse3_final, 119 .final = sha256_ssse3_final,
|
D | sha512_ssse3_glue.c | 103 .final = sha512_ssse3_final, 118 .final = sha512_ssse3_final,
|
D | crct10dif-pclmul_glue.c | 111 .final = chksum_final,
|
D | ghash-clmulni-intel_glue.c | 150 .final = ghash_final, 288 .final = ghash_async_final,
|
D | sha1_ssse3_glue.c | 110 .final = sha1_ssse3_final,
|
D | crc32-pclmul_glue.c | 156 .final = crc32_pclmul_final,
|
D | crc32c-intel_glue.c | 234 .final = crc32c_intel_final,
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | bindec.S | 98 | the final string area in memory. 102 | digits are stored in the final string. 103 | Test the length of the final exponent string. If the 106 | A16. Write sign bits to final string. 120 | a0: ptr for original operand/final result 231 | a0: ptr for original operand/final result 294 | a0: ptr for original operand/final result 359 | d0: exponent/scratch - final is 0 366 | a0: ptr for original operand/final result 619 | d0: FPCR with size set to ext/scratch final = 0 [all …]
|
D | decbin.S | 56 | A5. Form the final binary number by scaling the mantissa by 62 | Clean up and return. Check if the final mul or div resulted 493 | If the final mul/div in decbin incurred an inex exception,
|
D | kernel_ex.S | 133 | On entry, a0 points to the exceptional operand. The final exceptional
|
D | gen_except.S | 323 | the save. The frame will be unimp only if the final 346 | busy frame was created as the result of an exception on the final
|
D | do_func.S | 82 addl %d1,%d0 |combine for final index into table
|
/linux-4.1.27/arch/s390/crypto/ |
D | sha512_s390.c | 74 .final = s390_sha_final, 113 .final = s390_sha_final,
|
D | sha256_s390.c | 69 .final = s390_sha_final, 106 .final = s390_sha_final,
|
D | sha1_s390.c | 76 .final = s390_sha_final,
|
D | ghash_s390.c | 133 .final = ghash_final,
|
/linux-4.1.27/drivers/misc/ |
D | pti.c | 112 int final; in pti_write_to_aperture() local 126 final = len - (dwordcnt << 2); /* final = trailing bytes */ in pti_write_to_aperture() 127 if (final == 0 && dwordcnt != 0) { /* always need a final dword */ in pti_write_to_aperture() 128 final += 4; in pti_write_to_aperture() 141 for (i = 0; i < final; i++) in pti_write_to_aperture()
|
/linux-4.1.27/drivers/isdn/pcbit/ |
D | edss1.c | 292 chan->fsm_state = action->final; in pcbit_fsm_event() 294 pcbit_state_change(dev, chan, action->init, event, action->final); in pcbit_fsm_event()
|
D | edss1.h | 83 unsigned short final; member
|
/linux-4.1.27/include/crypto/ |
D | hash.h | 126 int (*final)(struct ahash_request *req); member 170 int (*final)(struct shash_desc *desc, u8 *out); member 193 int (*final)(struct ahash_request *req); member
|
/linux-4.1.27/crypto/ |
D | tgr192.c | 635 .final = tgr192_final, 647 .final = tgr160_final, 659 .final = tgr128_final,
|
D | ahash.c | 364 return crypto_ahash_op(req, crypto_ahash_reqtfm(req)->final); in crypto_ahash_final() 410 err = crypto_ahash_reqtfm(req)->final(req); in ahash_def_finup_finish1() 464 hash->final = alg->final; in crypto_ahash_init_tfm()
|
D | sha1_generic.c | 66 .final = sha1_final,
|
D | wp512.c | 1126 .final = wp512_final, 1138 .final = wp384_final, 1150 .final = wp256_final,
|
D | crct10dif_generic.c | 95 .final = chksum_final,
|
D | sha512_generic.c | 168 .final = sha512_final, 182 .final = sha512_final,
|
D | shash.c | 123 err = shash->final(desc, buf); in shash_final_unaligned() 143 return shash->final(desc, out); in crypto_shash_final() 354 crt->final = shash_async_final; in crypto_init_shash_ops_async() 486 crt->final = shash_compat_final; in crypto_init_shash_ops_compat()
|
D | crc32.c | 127 .final = crc32_final,
|
D | crc32c_generic.c | 141 .final = chksum_final,
|
D | md5.c | 143 .final = md5_final,
|
D | ghash-generic.c | 145 .final = ghash_final,
|
D | crypto_null.c | 100 .final = null_final,
|
D | michael_mic.c | 158 .final = michael_final,
|
D | xcbc.c | 253 inst->alg.final = crypto_xcbc_digest_final; in xcbc_create()
|
D | cmac.c | 280 inst->alg.final = crypto_cmac_digest_final; in cmac_create()
|
D | hmac.c | 232 inst->alg.final = hmac_final; in hmac_create()
|
D | mcryptd.c | 536 inst->alg.final = mcryptd_hash_final_enqueue; in mcryptd_create_hash() 662 return shash->final(desc, req->result); in shash_ahash_mcryptd_final()
|
D | md4.c | 233 .final = md4_final,
|
D | sha256_generic.c | 252 .final = sha256_final, 266 .final = sha256_final,
|
D | rmd128.c | 304 .final = rmd128_final,
|
D | rmd256.c | 323 .final = rmd256_final,
|
D | vmac.c | 680 inst->alg.final = vmac_final; in vmac_create()
|
D | rmd160.c | 348 .final = rmd160_final,
|
D | rmd320.c | 372 .final = rmd320_final,
|
D | cryptd.c | 638 inst->alg.final = cryptd_hash_final_enqueue; in cryptd_create_hash()
|
/linux-4.1.27/fs/ |
D | dax.c | 76 loff_t final = end - pos + first; /* The final byte of the buffer */ in dax_new_buf() local 80 if (final < size) in dax_new_buf() 81 memset(addr + final, 0, size - final); in dax_new_buf()
|
/linux-4.1.27/arch/sparc/crypto/ |
D | sha256_glue.c | 163 .final = sha256_sparc64_final, 182 .final = sha224_sparc64_final,
|
D | sha512_glue.c | 151 .final = sha512_sparc64_final, 167 .final = sha384_sparc64_final,
|
D | crc32c_glue.c | 127 .final = crc32c_sparc64_final,
|
D | md5_glue.c | 138 .final = md5_sparc64_final,
|
D | sha1_glue.c | 133 .final = sha1_sparc64_final,
|
/linux-4.1.27/arch/x86/kernel/cpu/mcheck/ |
D | mce.c | 311 static void mce_panic(const char *msg, struct mce *final, char *exp) in mce_panic() argument 348 if (!final || memcmp(m, final, sizeof(struct mce))) { in mce_panic() 354 if (final) { in mce_panic() 355 print_mce(final); in mce_panic() 357 apei_err = apei_write_mce(final); in mce_panic() 1028 struct mce m, *final; in do_machine_check() local 1063 final = this_cpu_ptr(&mces_seen); in do_machine_check() 1064 *final = m; in do_machine_check() 1146 *final = m; in do_machine_check() 1152 m = *final; in do_machine_check()
|
/linux-4.1.27/arch/powerpc/crypto/ |
D | sha256-spe-glue.c | 224 .final = ppc_spe_sha256_final, 241 .final = ppc_spe_sha224_final,
|
D | sha1.c | 127 .final = sha1_final,
|
D | md5-glue.c | 133 .final = ppc_md5_final,
|
D | sha1-spe-glue.c | 178 .final = ppc_spe_sha1_final,
|
/linux-4.1.27/arch/mips/cavium-octeon/crypto/ |
D | octeon-sha256.c | 233 .final = octeon_sha256_final, 250 .final = octeon_sha224_final,
|
D | octeon-sha512.c | 232 .final = octeon_sha512_final, 246 .final = octeon_sha384_final,
|
D | octeon-md5.c | 176 .final = octeon_md5_final,
|
D | octeon-sha1.c | 209 .final = octeon_sha1_final,
|
/linux-4.1.27/drivers/crypto/caam/ |
D | caamhash.c | 132 int (*final)(struct ahash_request *req); member 1305 state->final = ahash_final_ctx; in ahash_update_no_ctx() 1511 state->final = ahash_final_ctx; in ahash_update_first() 1520 state->final = ahash_final_no_ctx; in ahash_update_first() 1544 state->final = ahash_final_no_ctx; in ahash_init() 1572 return state->final(req); in ahash_final() 1621 .final = ahash_final, 1642 .final = ahash_final, 1663 .final = ahash_final, 1684 .final = ahash_final, [all …]
|
/linux-4.1.27/arch/sparc/lib/ |
D | checksum_32.S | 48 addx %g0, %o2, %o2 ! add in final carry 55 addx %g0, %o2, %o2 ! add in final carry 67 4: ldub [%o0], %o5 ! get final byte 72 addx %g0, %o2, %o0 ! add final carry into retval 118 addx %g0, %o2, %o2 ! sink in final carry 127 sub %g7, %o4, %g7 ! final jmp ptr adjust 137 addx %g0, %o2, %o2 ! fetch final carry
|
D | NGmemcpy.S | 153 sub %i2, %g1, %i2 ! final sub-block copy bytes
|
/linux-4.1.27/Documentation/scsi/ |
D | cxgb3i.txt | 9 as CRC computation and verification, and direct DMA to the final host memory 22 payload into pre-posted final destination host-memory buffers based
|
/linux-4.1.27/net/dccp/ |
D | ipv6.c | 189 struct in6_addr *final_p, final; in dccp_v6_send_response() local 206 final_p = fl6_update_dst(&fl6, rcu_dereference(np->opt), &final); in dccp_v6_send_response() 472 struct in6_addr *final_p, final; in dccp_v6_request_recv_sock() local 478 final_p = fl6_update_dst(&fl6, np->opt, &final); in dccp_v6_request_recv_sock() 803 struct in6_addr *saddr = NULL, *final_p, final; in dccp_v6_connect() local 905 final_p = fl6_update_dst(&fl6, opt, &final); in dccp_v6_connect()
|
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/linux/ |
D | linux-crypto-adler.c | 116 .final = adler32_final,
|
/linux-4.1.27/fs/ext4/ |
D | indirect.c | 82 int final = 0; in ext4_block_to_path() local 86 final = direct_blocks; in ext4_block_to_path() 90 final = ptrs; in ext4_block_to_path() 95 final = ptrs; in ext4_block_to_path() 101 final = ptrs; in ext4_block_to_path() 108 *boundary = final - 1 - (i_block & (ptrs - 1)); in ext4_block_to_path()
|
/linux-4.1.27/tools/build/Documentation/ |
D | Build.txt | 34 When succefully finished the $(DIR) directory contains the final object file 90 It's only a matter of 2 single commands to create the final binaries:
|
/linux-4.1.27/Documentation/kbuild/ |
D | kbuild.txt | 55 Additional options passed to final link of vmlinux. 180 symbols in the final module linking stage. It changes such errors 185 KBUILD_MODPOST_NOFINAL can be set to skip the final link of modules.
|
D | makefiles.txt | 632 $(<executable>-objs) lists all objects used to link the final 790 final bootimage there is an optional target named archclean: 831 and builds the final bootimage. 858 the linker when linking the final vmlinux image.
|
/linux-4.1.27/drivers/powercap/ |
D | intel_rapl.c | 758 u64 value, final; in rapl_read_data_raw() local 790 final = value & rp->mask; in rapl_read_data_raw() 791 final = final >> rp->shift; in rapl_read_data_raw() 793 *data = rapl_unit_xlate(rd, rd->package_id, rp->unit, final, 0); in rapl_read_data_raw() 795 *data = final; in rapl_read_data_raw()
|
/linux-4.1.27/tools/perf/Documentation/ |
D | Build.txt | 43 Those objects are then used in final linking:
|
D | perf-script-python.txt | 177 The final couple of functions are, like the begin and end functions, 273 The final script producing the output shown above is shown in its
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | ilsp.S | 89 # codes before performing the final "rts". If the divisor was equal to # 469 swap %d6 # %d6 is low 32 bits of final product 475 add.l %d3, %d5 # %d5 now ms 32 bits of final product 560 # lo([1]) is the final lo 16 bits of the result. 569 # lo portions of [2],[3] have been added in to final result. 686 # lo([1]) is the final lo 16 bits of the result. 695 # lo portions of [2],[3] have been added in to final result.
|
/linux-4.1.27/Documentation/networking/ |
D | dctcp.txt | 29 http://simula.stanford.edu/~alizade/Site/DCTCP_files/dctcp-final.pdf
|
D | rxrpc.txt | 159 received and the final hard-ACK on the last packet of the reply has 236 the reply is transmitted with one or more sendmsgs, and then the final ACK 349 This is delivered to a server application to indicate that the final ACK 645 (9) The final ACK from the client will be posted for retrieval by recvmsg() 650 RXRPC_ACK - indicates final ACK (no data) 652 MSG_EOR will be flagged to indicate that this is the final message for 655 (10) Up to the point the final packet of reply data is sent, the call can be
|
D | netlink_mmap.txt | 304 at once they would be constructed in consecutive frames before a final call
|
/linux-4.1.27/Documentation/early-userspace/ |
D | README | 131 final root filesystem, based on the root= option and optional init= to run 136 load these driver modules. It is also possible to mount the final root 148 init/main.c:init() will run prepare_namespace() to mount the final root
|
D | buffer-format.txt | 65 c_namesize 8 bytes Length of filename, including final \0
|
/linux-4.1.27/fs/ext2/ |
D | inode.c | 168 int final = 0; in ext2_block_to_path() local 175 final = direct_blocks; in ext2_block_to_path() 179 final = ptrs; in ext2_block_to_path() 184 final = ptrs; in ext2_block_to_path() 190 final = ptrs; in ext2_block_to_path() 196 *boundary = final - 1 - (i_block & (ptrs - 1)); in ext2_block_to_path()
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | brcm,iproc-touchscreen.txt | 33 - average_data: Number of data samples which are averaged before a final
|
/linux-4.1.27/scripts/coccinelle/iterators/ |
D | fen.cocci | 2 /// is no point to call of_node_put on the final value.
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/st/ |
D | st,flexgen.txt | 6 - a pre and final dividers (represented by a divider and gate elements)
|
/linux-4.1.27/Documentation/RCU/ |
D | rculist_nulls.txt | 118 to another chain) checking the final 'nulls' value if 119 the lookup met the end of chain. If final 'nulls' value
|
D | rcubarrier.txt | 222 shown below. Note that the final "1" in on_each_cpu()'s argument list
|
/linux-4.1.27/Documentation/ |
D | SecurityBugs | 30 holds the final say when setting a disclosure date. The timeframe for
|
D | crc32.txt | 61 can be precomputed, and merging in the final 32 zero bits to make room 153 final CRC is simply the XOR of the 4 table look-ups.
|
D | DMA-ISA-LPC.txt | 108 The final step is enabling the DMA channel and releasing the DMA
|
D | SubmittingDrivers | 43 to track changes in API's. The final contact point for Linux 2.6
|
D | padata.txt | 119 specifies which CPU will be used for the final callback when the work is
|
D | dynamic-debug-howto.txt | 275 These dyndbg queries are applied in order, with last having final say.
|
/linux-4.1.27/net/bluetooth/ |
D | l2cap_core.c | 907 control->final = (enh & L2CAP_CTRL_FINAL) >> L2CAP_CTRL_FINAL_SHIFT; in __unpack_enhanced_control() 931 control->final = (ext & L2CAP_EXT_CTRL_FINAL) >> L2CAP_EXT_CTRL_FINAL_SHIFT; in __unpack_extended_control() 971 packed |= control->final << L2CAP_EXT_CTRL_FINAL_SHIFT; in __pack_extended_control() 990 packed |= control->final << L2CAP_CTRL_FINAL_SHIFT; in __pack_enhanced_control() 1074 control->final = 1; in l2cap_send_sframe() 1087 control->final, control->poll, control->super); in l2cap_send_sframe() 1898 control->final = 1; in l2cap_ertm_send() 1979 control.final = 1; in l2cap_ertm_resend() 1981 control.final = 0; in l2cap_ertm_resend() 2785 if (control && control->final) { in l2cap_tx_state_wait_f() [all …]
|
/linux-4.1.27/drivers/crypto/vmx/ |
D | ghash.c | 204 .final = p8_ghash_final,
|
/linux-4.1.27/security/smack/ |
D | smack_lsm.c | 3065 struct smack_known *final; in smack_d_instantiate() local 3090 final = sbsp->smk_default; in smack_d_instantiate() 3148 final = &smack_known_star; in smack_d_instantiate() 3156 final = ckp; in smack_d_instantiate() 3170 final = &smack_known_star; in smack_d_instantiate() 3189 final = &smack_known_star; in smack_d_instantiate() 3206 final = skp; in smack_d_instantiate() 3254 if (final == NULL) in smack_d_instantiate() 3257 isp->smk_inode = final; in smack_d_instantiate()
|
/linux-4.1.27/include/net/bluetooth/ |
D | bluetooth.h | 265 final:1, member
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | marvell,orion-pinctrl.txt | 12 final MPP register, separated from the previous one.
|
/linux-4.1.27/net/sctp/ |
D | ipv6.c | 241 struct in6_addr *final_p, final; in sctp_v6_get_dst() local 265 final_p = fl6_update_dst(fl6, np->opt, &final); in sctp_v6_get_dst() 324 final_p = fl6_update_dst(fl6, np->opt, &final); in sctp_v6_get_dst()
|
/linux-4.1.27/Documentation/fb/ |
D | deferred_io.txt | 30 the final image rather than the intermediate stages which is why it's okay
|
/linux-4.1.27/drivers/scsi/be2iscsi/ |
D | be_main.h | 675 u8 final; member 689 u8 final; /* DWORD 3 */ member
|
/linux-4.1.27/net/l2tp/ |
D | l2tp_ip6.c | 487 struct in6_addr *daddr, *final_p, final; in l2tp_ip6_sendmsg() local 595 final_p = fl6_update_dst(&fl6, opt, &final); in l2tp_ip6_sendmsg()
|
/linux-4.1.27/drivers/crypto/ux500/hash/ |
D | hash_core.c | 1524 .final = ahash_final, 1546 .final = ahash_final, 1569 .final = ahash_final, 1593 .final = ahash_final,
|
/linux-4.1.27/drivers/crypto/nx/ |
D | nx-sha256.c | 282 .final = nx_sha256_final,
|
D | nx-sha512.c | 288 .final = nx_sha512_final,
|
D | nx-aes-xcbc.c | 381 .final = nx_xcbc_final,
|
/linux-4.1.27/Documentation/filesystems/ |
D | omfs.txt | 100 the extent. The final extent in each table is a terminator with e_cluster
|
D | vfat.txt | 331 3) If there is free space in the final slot, a Unicode NULL (0x0000) 332 is stored after the final character. After that, all unused 333 characters in the final slot are set to Unicode 0xFFFF.
|
D | path-lookup.txt | 48 (usually the final element, or parent of final element). This is done by taking 330 refcount on final dentry. 343 again. Other cases are successful rcu-drops that are required before the final
|
D | qnx6.txt | 41 So basically the snapshot functionality is realized by an atomic final
|
D | ext3.txt | 181 written to the journal first, and then to its final location.
|
D | gfs2-glocks.txt | 60 go_unlock | Called on the final local unlock of a lock
|
/linux-4.1.27/Documentation/devicetree/bindings/regulator/ |
D | regulator.txt | 27 but includes a final step of writing memory contents to disk.
|
/linux-4.1.27/arch/mn10300/mm/ |
D | Kconfig.cache | 21 The final option is to turn of caching entirely.
|
/linux-4.1.27/arch/x86/crypto/sha-mb/ |
D | sha1_mb.c | 683 .final = sha1_mb_final, 799 .final = sha1_mb_async_final,
|
/linux-4.1.27/arch/powerpc/kvm/ |
D | booke.c | 595 int final; in kvmppc_watchdog_func() local 599 final = 0; in kvmppc_watchdog_func() 604 final = 1; in kvmppc_watchdog_func() 622 if (final && (vcpu->arch.tcr & TCR_WRC_MASK) && in kvmppc_watchdog_func() 635 if (!final) in kvmppc_watchdog_func()
|
/linux-4.1.27/fs/ext3/ |
D | inode.c | 351 int final = 0; in ext3_block_to_path() local 357 final = direct_blocks; in ext3_block_to_path() 361 final = ptrs; in ext3_block_to_path() 366 final = ptrs; in ext3_block_to_path() 372 final = ptrs; in ext3_block_to_path() 377 *boundary = final - 1 - (i_block & (ptrs - 1)); in ext3_block_to_path()
|
/linux-4.1.27/arch/x86/kernel/apic/ |
D | io_apic.c | 458 void (*final)(struct irq_pin_list *entry)) in __io_apic_modify_irq() 467 if (final) in __io_apic_modify_irq() 468 final(entry); in __io_apic_modify_irq() 473 void (*final)(struct irq_pin_list *entry)) in io_apic_modify_irq() 478 __io_apic_modify_irq(entry, mask_and, mask_or, final); in io_apic_modify_irq()
|
/linux-4.1.27/drivers/dma/ |
D | fsl_raid.c | 249 size_t length, dma_addr_t addr, bool final) in fill_cfd_frame() argument 253 efrl |= final << FSL_RE_CF_FINAL_SHIFT; in fill_cfd_frame()
|
/linux-4.1.27/Documentation/x86/ |
D | exception-tables.txt | 157 To understand this we have to look at the final kernel: 184 final kernel executable:
|
/linux-4.1.27/drivers/net/ethernet/tile/ |
D | tilepro.c | 1921 bool final = (i == num_frags - 1); in tile_net_tx() local 1928 .send_completion = final, in tile_net_tx() 1929 .end_of_packet = final in tile_net_tx()
|
/linux-4.1.27/Documentation/misc-devices/ |
D | lis3lv02d | 52 final decision.
|
/linux-4.1.27/Documentation/frv/ |
D | atomic-ops.txt | 84 Then it does the load. Note that the final phase of step (1) is done at the same time as the
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | pnfs.txt | 53 bit which holds it in the pnfs_layout_hdr's list. When the final lseg
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | dra7.dtsi | 927 * determine final biasing 960 * determine final biasing 993 * determine final biasing 1026 * determine final biasing
|
D | omap5.dtsi | 1092 * determine final biasing 1122 * determine final biasing
|
/linux-4.1.27/Documentation/power/ |
D | states.txt | 88 state operates similarly to Suspend-to-RAM, but includes a final step
|
/linux-4.1.27/Documentation/arm/OMAP/ |
D | DSS | 112 The rest of the non standard features are exported via sysfs. Whether the final 159 interface is the best for this in the final version, but I don't quite know
|
/linux-4.1.27/fs/logfs/ |
D | segment.c | 155 static void pad_wbuf(struct logfs_area *area, int final) in pad_wbuf() argument 158 if (final) in pad_wbuf()
|
/linux-4.1.27/Documentation/s390/ |
D | cds.txt | 152 to notify the device driver for every interrupt it observes, or with final status 357 case all I/O interruptions are presented to the device driver until final 375 been issued since the last secondary (final) status.
|
/linux-4.1.27/Documentation/target/ |
D | tcmu-design.txt | 18 3) A final note 366 A final note
|
/linux-4.1.27/Documentation/devicetree/ |
D | of_unittest.txt | 136 data node is attached to the live tree above (Figure 1), the final structure is
|
/linux-4.1.27/arch/frv/kernel/ |
D | sleep.S | 125 # the final part of the sleep sequence...
|
/linux-4.1.27/Documentation/arm/ |
D | vlocks.txt | 17 final value seen in that memory location when all the votes have been
|
/linux-4.1.27/net/wireless/ |
D | Kconfig | 88 times only be possible until you have the final system
|
/linux-4.1.27/drivers/scsi/ |
D | 53c700.scr | 35 ; necessary amount of data and jumps to the next SG segment. The final
|
/linux-4.1.27/drivers/crypto/qce/ |
D | sha.c | 516 alg->final = qce_ahash_final; in qce_ahash_register_one()
|
/linux-4.1.27/Documentation/video4linux/ |
D | videobuf | 304 The final part of a videobuf implementation has no direct callback - it's 343 The final step is to set the size field of the relevant videobuf_buffer
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | intel_display.c | 7132 u32 val, final; in ironlake_init_pch_refclk() local 7178 final = val; in ironlake_init_pch_refclk() 7179 final &= ~DREF_NONSPREAD_SOURCE_MASK; in ironlake_init_pch_refclk() 7181 final |= DREF_NONSPREAD_CK505_ENABLE; in ironlake_init_pch_refclk() 7183 final |= DREF_NONSPREAD_SOURCE_ENABLE; in ironlake_init_pch_refclk() 7185 final &= ~DREF_SSC_SOURCE_MASK; in ironlake_init_pch_refclk() 7186 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK; in ironlake_init_pch_refclk() 7187 final &= ~DREF_SSC1_ENABLE; in ironlake_init_pch_refclk() 7190 final |= DREF_SSC_SOURCE_ENABLE; in ironlake_init_pch_refclk() 7193 final |= DREF_SSC1_ENABLE; in ironlake_init_pch_refclk() [all …]
|
D | intel_dp.c | 4809 *final = &intel_dp->pps_delays; in intel_dp_init_panel_power_sequencer() local 4816 if (final->t11_t12 != 0) in intel_dp_init_panel_power_sequencer() 4880 #define assign_final(field) final->field = (max(cur.field, vbt.field) == 0 ? \ in intel_dp_init_panel_power_sequencer() 4890 #define get_delay(field) (DIV_ROUND_UP(final->field, 10)) in intel_dp_init_panel_power_sequencer()
|
/linux-4.1.27/Documentation/development-process/ |
D | 2.Process | 65 considered to be sufficiently stable and the final 2.6.x release is made. 93 There comes a point where delaying the final release just makes the problem 114 2.6.36.4 was the final stable update for the 2.6.36 release.
|
D | 5.Posting | 81 changes you have made need to be considered in their final form, then 113 patches, but to leave that infrastructure unused until the final patch
|
/linux-4.1.27/arch/frv/ |
D | Kconfig | 176 The final option is to turn of caching entirely.
|
/linux-4.1.27/arch/x86/math-emu/ |
D | README | 117 (d) the magnitude of the final result (after rounding) is exactly 2^-16382. 174 ms-dos extender. The final column is for wm-FPU-emu in Linux 0.97,
|
/linux-4.1.27/drivers/tty/ |
D | tty_io.c | 1774 int do_sleep, final; in tty_release() local 1900 final = !tty->count && !(o_tty && o_tty->count); in tty_release() 1908 if (!final) in tty_release()
|
/linux-4.1.27/arch/sparc/kernel/ |
D | head_32.S | 642 st %g3, [%g4 + %lo(nwindows)] ! store final value
|
/linux-4.1.27/arch/cris/arch-v10/ |
D | README.mm | 198 The Page Table provides the final lookup by using bits 13 to 23 as index:
|
/linux-4.1.27/kernel/power/ |
D | Kconfig | 44 ACPI will be used for the final steps when it is available. One
|
/linux-4.1.27/net/ipv4/ |
D | Kconfig | 68 solely on the packet's final destination address. If you say Y here, 616 http://simula.stanford.edu/~alizade/Site/DCTCP_files/dctcp-final.pdf
|
/linux-4.1.27/arch/sh/lib/ |
D | memcpy-sh4.S | 376 ! Copy the final 0-3 bytes
|
/linux-4.1.27/Documentation/input/ |
D | alps.txt | 181 The final v3 packet type is the trackstick packet.
|
/linux-4.1.27/Documentation/hwmon/ |
D | lm93 | 158 combination of eight control sources. The final PWM is the largest of all
|