1. 10 4月, 2012 2 次提交
  2. 13 3月, 2012 1 次提交
  3. 24 2月, 2012 4 次提交
  4. 23 2月, 2012 2 次提交
  5. 19 1月, 2012 1 次提交
  6. 23 12月, 2011 1 次提交
  7. 29 11月, 2011 1 次提交
  8. 28 11月, 2011 1 次提交
  9. 10 11月, 2011 4 次提交
  10. 21 8月, 2011 1 次提交
  11. 05 8月, 2011 1 次提交
  12. 21 6月, 2011 1 次提交
  13. 14 6月, 2011 2 次提交
  14. 01 6月, 2011 2 次提交
  15. 02 5月, 2011 2 次提交
  16. 17 3月, 2011 1 次提交
  17. 23 1月, 2011 1 次提交
  18. 16 11月, 2010 1 次提交
  19. 30 10月, 2010 1 次提交
  20. 21 10月, 2010 2 次提交
  21. 23 8月, 2010 1 次提交
  22. 21 8月, 2010 1 次提交
    • B
      Use ARRAY_SIZE macro · 66fe09ee
      Blue Swirl 提交于
      Replace array size calculations with ARRAY_SIZE macro.
      
      Implemented with this Coccinelle semantic patch, adapted from
      Linux kernel:
      @@
      type T;
      T[] E;
      @@
      
      - (sizeof(E)/sizeof(*E))
      + ARRAY_SIZE(E)
      
      @@
      type T;
      T[] E;
      @@
      
      - (sizeof(E)/sizeof(E[...]))
      + ARRAY_SIZE(E)
      
      @@
      type T;
      T[] E;
      @@
      
      - (sizeof(E)/sizeof(T))
      + ARRAY_SIZE(E)
      
      Some files (*-dis.c, tests/*) had to be filtered out.
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      66fe09ee
  23. 02 7月, 2010 1 次提交
  24. 29 6月, 2010 2 次提交
  25. 19 6月, 2010 1 次提交
  26. 02 6月, 2010 1 次提交
  27. 13 3月, 2010 1 次提交