OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__clzsi2
(Results
1 - 6
of
6
) sorted by null
/frameworks/compile/libbcc/runtime/lib/
clzsi2.c
1
/* ===-- clzsi2.c - Implement
__clzsi2
-------------------------------------===
10
* This file implements
__clzsi2
for the compiler_rt library.
22
__clzsi2
(si_int a)
function
apple_versioning.c
49
NOT_HERE_BEFORE_10_6(
__clzsi2
)
/frameworks/compile/libbcc/lib/ExecutionEngine/
RuntimeStub.h
21
extern si_int
__clzsi2
(si_int);
Runtime.def
106
DEF_LLVM_RUNTIME(
__clzsi2
)
/external/clang/utils/OptionalTests/Extra/Runtime/
darwin-clang_rt.c
121
si_int
__clzsi2
(si_int a); // count leading zeros
248
assert(
__clzsi2
(1) == 31);
/frameworks/compile/libbcc/runtime/test/Unit/
clzsi2_test.c
1
//===-- clzsi2_test.c - Test
__clzsi2
-------------------------------------===//
10
// This file tests
__clzsi2
for the compiler_rt library.
21
si_int
__clzsi2
(si_int a);
25
si_int x =
__clzsi2
(a);
27
printf("error in
__clzsi2
(0x%X) = %d, expected %d\n", a, x, expected);
Completed in 80 milliseconds