Searched refs:__exp (Results 1 – 6 of 6) sorted by relevance
/external/clang/lib/Headers/ |
D | __clang_cuda_cmath.h | 70 __DEVICE__ float frexp(float __arg, int *__exp) { in frexp() argument 71 return ::frexpf(__arg, __exp); in frexp() 117 __DEVICE__ float ldexp(float __arg, int __exp) { in ldexp() argument 118 return ::ldexpf(__arg, __exp); in ldexp() 129 __DEVICE__ float pow(float __base, float __exp) { in pow() argument 130 return ::powf(__base, __exp); in pow()
|
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/ |
D | test_harness.h | 353 __typeof__(_expected) __exp = (_expected); \ 355 if (!(__exp _t __seen)) { \ 359 memcpy(&__exp_print, &__exp, sizeof(__exp)); \ 371 const char *__exp = (_expected); \ 373 if (!(strcmp(__exp, __seen) _t 0)) { \ 374 __TH_LOG("Expected '%s' %s '%s'.", __exp, #_t, __seen); \
|
/external/linux-kselftest/tools/testing/selftests/ |
D | kselftest_harness.h | 602 __typeof__(_expected) __exp = (_expected); \ 605 if (!(__exp _t __seen)) { \ 606 unsigned long long __exp_print = (uintptr_t)__exp; \ 618 const char *__exp = (_expected); \ 621 if (!(strcmp(__exp, __seen) _t 0)) { \ 622 __TH_LOG("Expected '%s' %s '%s'.", __exp, #_t, __seen); \
|
/external/seccomp-tests/linux/ |
D | test_harness.h | 375 __typeof__(_expected) __exp = (_expected); \ 377 if (!(__exp _t __seen)) { \ 378 unsigned long long __exp_print = (uintptr_t)__exp; \ 390 const char *__exp = (_expected); \ 392 if (!(strcmp(__exp, __seen) _t 0)) { \ 393 __TH_LOG("Expected '%s' %s '%s'.", __exp, #_t, __seen); \
|
/external/libcxx/include/ |
D | regex | 3008 …__lookahead(const basic_regex<_CharT, _Traits>& __exp, bool __invert, __node<_CharT>* __s, unsigne… 3009 : base(__s), __exp_(__exp), __mexp_(__mexp), __invert_(__invert) {} 4206 basic_regex __exp; 4207 __exp.__flags_ = __flags_; 4208 __temp = __exp.__parse(++__temp, __last); 4209 unsigned __mexp = __exp.__marked_count_; 4210 __push_lookahead(_VSTD::move(__exp), false, __marked_count_); 4219 basic_regex __exp; 4220 __exp.__flags_ = __flags_; 4221 __temp = __exp.__parse(++__temp, __last); [all …]
|
D | locale | 379 static int __stage2_float_loop(_CharT __ct, bool& __in_units, char& __exp, 508 __num_get<_CharT>::__stage2_float_loop(_CharT __ct, bool& __in_units, char& __exp, char* __a, char*… 539 if (__a_end == __a || (__a_end[-1] & 0x5F) == (__exp & 0x7F)) 547 __exp = 'P'; 548 else if ((__x & 0x5F) == __exp) 550 __exp |= 0x80; 1027 char __exp = 'E'; 1038 if (this->__stage2_float_loop(*__b, __in_units, __exp, __a, __a_end,
|