diff options
author | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2017-07-04 12:56:22 +0200 |
---|---|---|
committer | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2017-07-05 13:49:48 +0200 |
commit | 461152e4ebd94f7d8b1e20f4cd1c704138ba2083 (patch) | |
tree | b7a00b923becba103ee7e05ab92715a0e48baa3d /newlib/libc/string/flsll.c | |
parent | 2390e71a4278308ba84d937a3fc5a9a10f1f7ecb (diff) | |
download | newlib-461152e4ebd94f7d8b1e20f4cd1c704138ba2083.zip newlib-461152e4ebd94f7d8b1e20f4cd1c704138ba2083.tar.gz newlib-461152e4ebd94f7d8b1e20f4cd1c704138ba2083.tar.bz2 |
Add ffsl(), ffsll(), fls(), flsl(), flsll()
Use compiler builtin for ffs(). Remove duplicate implementation from
Cygwin.
Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
Diffstat (limited to 'newlib/libc/string/flsll.c')
-rw-r--r-- | newlib/libc/string/flsll.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/newlib/libc/string/flsll.c b/newlib/libc/string/flsll.c new file mode 100644 index 0000000..3936184 --- /dev/null +++ b/newlib/libc/string/flsll.c @@ -0,0 +1,38 @@ +/*- + * Copyright (c) 2017 embedded brains GmbH + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include <strings.h> +#include <limits.h> + +int +flsll(long long i) +{ + + if (i == 0) + return 0; + + return (sizeof(i) * CHAR_BIT - __builtin_clzll(i)); +} |