pmap-hlx.in
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. # SetSeed <unsigned int srand() seed>
  2. # CreateElement <index>
  3. # CreateElements <index> <num to create>
  4. # ClearElements
  5. # GetCount <expected count>
  6. # IsEmpty <0 = not empty, 1 = empty>
  7. # Lookup <index> <0 = lookup failed, 1 = lookup success>
  8. # SetAt <index>
  9. # RemoveKey <index> <0 = remove failed, 1 = remove success>
  10. # RemoveAll
  11. # Note: Rhs[] represents using the [] operator on the right hand side
  12. #       of an expression. For example:  value = map[key];
  13. # Rhs[] <index> <0 = item not in map, 1 = item in map>
  14. # Note: Lhs[] represents using the [] operator on the left hand side
  15. #       of an expression. For example: map[key] = value
  16. # Lhs[] <index>
  17. # Note: IsNull should only be used on keys that are in the map.
  18. #       It is intended to test the case where Rhs[] inserts a value
  19. #       into the map when it is not already present
  20. # IsNull <index> <0 = map value is not null, 1 = map value is null>
  21. # RunMapSpecificTests
  22. # InitHashTable <type index> <num buckets>
  23. # ProfileInsertions <type index>
  24. SetSeed 12345
  25. CreateElements 0 1000000
  26. MemCheckpoint
  27. TimeCheckpoint
  28. InitHashTable 1 16417
  29. ProfileInsertions 1
  30. TimeCheckpoint
  31. MemCheckpoint