Searched refs:__exp (Results 1 – 7 of 7) 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/minijail/ |
D | test_harness.h | 330 __typeof__(_expected) __exp = (_expected); \ 332 if (!(__exp _t __seen)) { \ 336 memcpy(&__exp_print, &__exp, sizeof(__exp)); \ 349 const char *__exp = (_expected); \ 351 if (!(strcmp(__exp, __seen) _t 0)) { /* NOLINT */ \ 352 __TH_LOG("Expected '%s' %s '%s'.", __exp, #_t, __seen); \
|
/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/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/linux-kselftest/tools/testing/selftests/seccomp/ |
D | test_harness.h | 371 __typeof__(_expected) __exp = (_expected); \ 373 if (!(__exp _t __seen)) { \ 374 unsigned long long __exp_print = (uintptr_t)__exp; \ 386 const char *__exp = (_expected); \ 388 if (!(strcmp(__exp, __seen) _t 0)) { \ 389 __TH_LOG("Expected '%s' %s '%s'.", __exp, #_t, __seen); \
|
/external/libcxx/include/ |
D | regex | 2982 …__lookahead(const basic_regex<_CharT, _Traits>& __exp, bool __invert, __node<_CharT>* __s, unsigne… 2983 : base(__s), __exp_(__exp), __mexp_(__mexp), __invert_(__invert) {} 4179 basic_regex __exp; 4180 __exp.__flags_ = __flags_; 4181 __temp = __exp.__parse(++__temp, __last); 4182 unsigned __mexp = __exp.__marked_count_; 4183 __push_lookahead(_VSTD::move(__exp), false, __marked_count_); 4192 basic_regex __exp; 4193 __exp.__flags_ = __flags_; 4194 __temp = __exp.__parse(++__temp, __last); [all …]
|
D | locale | 389 static int __stage2_float_loop(_CharT __ct, bool& __in_units, char& __exp, 469 __num_get<_CharT>::__stage2_float_loop(_CharT __ct, bool& __in_units, char& __exp, char* __a, char*… 500 if (__a_end == __a || (__a_end[-1] & 0x5F) == (__exp & 0x7F)) 508 __exp = 'P'; 509 else if ((__x & 0x5F) == __exp) 511 __exp |= 0x80; 973 char __exp = 'E'; 984 if (this->__stage2_float_loop(*__b, __in_units, __exp, __a, __a_end,
|