source: doc/theses/mike_brooks_MMath/benchmarks/list/op-stack-inslast-inselem.h @ 2b01f8e

ADTast-experimental
Last change on this file since 2b01f8e was 2b01f8e, checked in by Mike Brooks <mlbrooks@…>, 13 months ago

Adjust LL perf to use a random layout of nodes in memory

  • Property mode set to 100644
File size: 523 bytes
Line 
1// stack:    inserts and removes happen at the same end
2// inslast:  stack's action happens at the end called "last", "tail" or "back"
3// inselem:  inserts happen via an element-level operation and removes happen via the api-provided "last"/"tail"/"back"
4
5#define BOP_INIT(lst, iters, insNo, item)   BFX_INSERT_LAST(B_UserItem, lst, (item))
6
7#define BOP_INSERT(lst, iters, insNo, item) BFX_INSERT_AFTER(B_UserItem, lst, (item), iters[(insNo)-1])
8#define BOP_REMOVE(lst, iters, remNo)       BFX_REMOVE_LAST(B_UserItem, lst)
Note: See TracBrowser for help on using the repository browser.