summaryrefslogtreecommitdiffstats
path: root/spec/if/rtems/basedefs/align-down.yml
diff options
context:
space:
mode:
Diffstat (limited to 'spec/if/rtems/basedefs/align-down.yml')
-rw-r--r--spec/if/rtems/basedefs/align-down.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/spec/if/rtems/basedefs/align-down.yml b/spec/if/rtems/basedefs/align-down.yml
deleted file mode 100644
index a309b03f..00000000
--- a/spec/if/rtems/basedefs/align-down.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
-brief: |
- Returns the specified value aligned down to the specified alignment.
-copyrights:
-- Copyright (C) 2016 embedded brains GmbH (http://www.embedded-brains.de)
-definition:
- default: |
- ( ( ${.:/params[0]/name} ) & ~( ( ${.:/params[1]/name} ) - 1 ) )
- variants: []
-description: null
-enabled-by: true
-interface-type: macro
-links:
-- role: interface-placement
- uid: header
-- role: interface-ingroup
- uid: group
-name: RTEMS_ALIGN_DOWN
-notes: null
-params:
-- description: |
- is the value to align down.
- dir: null
- name: _value
-- description: |
- is the desired alignment in bytes. The alignment shall be a power of two,
- otherwise the returned value is undefined. The alignment parameter is
- evaluated twice.
- dir: null
- name: _alignment
-return:
- return: |
- The specified value aligned down to the specified alignment is returned.
- return-values: []
-type: interface