术语
song_cai_csdn
程序猿
展开
-
什么是scatter / gather
原文地址:/ gather">什么是scatter / gather作者:大鱼JasonWang scatter/gather方式是与block dma方式相对应的一种dma方式。 在dma传输数据的过程中,要求源物理地址和目标物理地址必须是连续的。但在有的计算机体系中,如IA,连续的存储器地址在物理上不一定是连续的,则dma传输要分成多次完成。 如果传输转载 2015-10-12 08:29:33 · 639 阅读 · 0 评论 -
正则表达式
Basic Patterns The power of regular expressions is that they can specify patterns, not just fixed characters. Here are the most basic patterns which match single chars: a, X, 9, < -- ordinary characte原创 2015-10-12 08:29:57 · 346 阅读 · 0 评论 -
记个公式
(a*b) % c = ((a % c) * (b % c) )% c (a+b) % c = ((a + c) * (b + c) )% c原创 2015-10-12 08:30:40 · 237 阅读 · 0 评论