aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/robot/counters.robot
diff options
context:
space:
mode:
authorJan Gelety <jgelety@cisco.com>2016-09-19 10:30:36 +0200
committerPeter Mikus <pmikus@cisco.com>2016-09-20 05:32:28 +0000
commit99074f29dbc69fabda5073c476b229f5cf00c59b (patch)
treec680408714b7e2156a4bfb5b873e6442986a625a /resources/libraries/robot/counters.robot
parent56a9ea7e421100594d8be68c0ff15236f5c50a6e (diff)
Update of VPP_STABLE_VER
- use new vpp ref build: 16.12-rc0~101-gc5d9cda~b1124_amd64 - build tested by semiweekly job: https://jenkins.fd.io/job/csit-vpp-verify-master-semiweekly/1037/ Change-Id: I6d95f26679cb15ce7a7887913c67924d32683a75 Signed-off-by: Jan Gelety <jgelety@cisco.com>
Diffstat (limited to 'resources/libraries/robot/counters.robot')
0 files changed, 0 insertions, 0 deletions
RIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef included_clib_xy_h #define included_clib_xy_h #include <vppinfra/types.h> /* Basic definitions: coordinates and points. */ typedef double xy_float_t; typedef __complex__ double xy_t; typedef __complex__ int ixy_t; typedef __complex__ char i8xy_t; typedef __complex__ short i16xy_t; typedef __complex__ int i32xy_t; /* X/Y components of a point: can be used as either rvalue/lvalue. */ #define xy_x(x) __real__ (x) #define xy_y(x) __imag__ (x) /* Unit vectors in x/y directions. */ #define xy_x_unit_vector (1) #define xy_y_unit_vector (1I) #endif /* included_clib_xy_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */