Home
last modified time | relevance | path

Searched refs:val (Results 1 – 25 of 64) sorted by relevance

123

/ndk/sources/host-tools/ndk-stack/elff/
Delf_file.h145 uint8_t pull_val(const uint8_t* val) const { in pull_val() argument
146 return *val; in pull_val()
148 uint8_t pull_val(const uint8_t& val) const { in pull_val() argument
149 return val; in pull_val()
151 int8_t pull_val(const int8_t* val) const { in pull_val() argument
152 return *val; in pull_val()
154 int8_t pull_val(const int8_t& val) const { in pull_val() argument
155 return val; in pull_val()
165 uint16_t pull_val(const uint16_t* val) const { in pull_val() argument
167 return *val; in pull_val()
[all …]
Ddwarf_defs.h169 Elf_Byte val; member
181 if (val == 0) { in get_common()
198 const Elf_Byte* cur = &val; in get_common()
268 return INC_CPTR(&val, value->encoded_size); in process()
303 return at.val == 0; in is_separator()
319 return INC_CPTR_T(Dwarf_Abbr_AT, &at.val, 2); in process()
322 Dwarf_Value val; in process() local
326 reinterpret_cast<const Dwarf_Leb128*>(at.process_unsigned(&val)); in process()
327 *at_value = val.u16; in process()
330 next = reinterpret_cast<const Dwarf_Leb128*>(next->process_unsigned(&val)); in process()
[all …]
Ddwarf_utils.h55 void dump_attrib(Dwarf_At at, Dwarf_Form form, const Dwarf_Value* val);
61 void dump_value(const Dwarf_Value* val);
/ndk/tests/build/issue22345-ICE-postreload/jni/
Dissue22345-ICE-postreload.cpp40 …t_low_f32(v_1203.val[0])), vrev64_f32(vget_low_f32(v_1203.val[1]))), vcombine_f32(vget_high_f32(v_… in cross()
43 result = vmlsq_f32(vmulq_f32(v_1203.val[0], v_2013.val[1]), v_1203.val[1], v_2013.val[0]); in cross()
/ndk/tests/device/test-gnustl-full/unit/
Dnum_put_get_test.cpp56 static bool check_float(float val, float ref) in check_float() argument
59 return val <= ref + epsilon && val >= ref - epsilon; in check_float()
62 static bool check_double(double val, double ref) in check_double() argument
65 return val <= ref + epsilon && val >= ref - epsilon; in check_double()
284 F val; in check_get_float() local
285 str >> val; in check_get_float()
288 CPPUNIT_ASSERT( limits::infinity() > val ); in check_get_float()
297 F val; in check_get_float() local
298 str >> val; in check_get_float()
301 CPPUNIT_ASSERT( limits::infinity() > val ); in check_get_float()
[all …]
Dmath_aux.h19 bool are_equals(_Tp val, _Tp ref) { in are_equals() argument
20 if (val < ref) { in are_equals()
21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon(); in are_equals()
24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon(); in are_equals()
Dmemory_test.cpp28 auto_ptr<int> CreateAutoPtr(int val) in CreateAutoPtr() argument
29 { return auto_ptr<int>(new int(val)); } in CreateAutoPtr()
31 bool CheckEquality(auto_ptr<int> pint, int val) in CheckEquality() argument
32 { return *pint == val; } in CheckEquality()
Dnum_facets_test.cpp40 float val = 1234.56f; in _num_put_get() local
43 fostr << val; in _num_put_get()
55 val = 12345678.9f; in _num_put_get()
63 fostr << val; in _num_put_get()
66 val = 1000000000.0f; in _num_put_get()
68 fostr << val; in _num_put_get()
73 val = 1234.0f; in _num_put_get()
80 fostr << val; in _num_put_get()
83 val = 10000001.0f; in _num_put_get()
85 fostr << val; in _num_put_get()
Dbind_test.cpp39 int operator()(int incr, int& val) const in operator ()()
40 { return val += incr; } in operator ()()
45 int operator()(int& val, int incr) const in operator ()() argument
46 { return val += incr; } in operator ()()
Dlimits_test.cpp88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) { in test_integral_limits() argument
89 if (!test_integral_limits_base(val, unknown_sign, is_signed)) in test_integral_limits()
173 _Tp val = lim::max(); in test_float_limits() local
174 val *= 2; in test_float_limits()
178 CHECK_COND(test_float_values(val, infinity)); in test_float_limits()
/ndk/sources/cxx-stl/llvm-libc++/src/
Dstring.cpp369 string to_string(int val) in to_string() argument
375 size_t n2 = static_cast<size_t>(snprintf(&s[0], s.size()+1, "%d", val)); in to_string()
386 string to_string(unsigned val) in to_string() argument
392 size_t n2 = static_cast<size_t>(snprintf(&s[0], s.size()+1, "%u", val)); in to_string()
403 string to_string(long val) in to_string() argument
409 size_t n2 = static_cast<size_t>(snprintf(&s[0], s.size()+1, "%ld", val)); in to_string()
420 string to_string(unsigned long val) in to_string() argument
426 size_t n2 = static_cast<size_t>(snprintf(&s[0], s.size()+1, "%lu", val)); in to_string()
437 string to_string(long long val) in to_string() argument
443 size_t n2 = static_cast<size_t>(snprintf(&s[0], s.size()+1, "%lld", val)); in to_string()
[all …]
/ndk/tests/device/test-stlport/unit/
Dnum_put_get_test.cpp56 static bool check_float(float val, float ref) in check_float() argument
59 return val <= ref + epsilon && val >= ref - epsilon; in check_float()
62 static bool check_double(double val, double ref) in check_double() argument
65 return val <= ref + epsilon && val >= ref - epsilon; in check_double()
284 F val; in check_get_float() local
285 str >> val; in check_get_float()
288 CPPUNIT_ASSERT( limits::infinity() > val ); in check_get_float()
297 F val; in check_get_float() local
298 str >> val; in check_get_float()
301 CPPUNIT_ASSERT( limits::infinity() > val ); in check_get_float()
[all …]
Dmath_aux.h19 bool are_equals(_Tp val, _Tp ref) { in are_equals() argument
20 if (val < ref) { in are_equals()
21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon(); in are_equals()
24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon(); in are_equals()
Dmemory_test.cpp28 auto_ptr<int> CreateAutoPtr(int val) in CreateAutoPtr() argument
29 { return auto_ptr<int>(new int(val)); } in CreateAutoPtr()
31 bool CheckEquality(auto_ptr<int> pint, int val) in CheckEquality() argument
32 { return *pint == val; } in CheckEquality()
Dnum_facets_test.cpp40 float val = 1234.56f; in _num_put_get() local
43 fostr << val; in _num_put_get()
55 val = 12345678.9f; in _num_put_get()
63 fostr << val; in _num_put_get()
66 val = 1000000000.0f; in _num_put_get()
68 fostr << val; in _num_put_get()
73 val = 1234.0f; in _num_put_get()
80 fostr << val; in _num_put_get()
83 val = 10000001.0f; in _num_put_get()
85 fostr << val; in _num_put_get()
Dbind_test.cpp39 int operator()(int incr, int& val) const in operator ()()
40 { return val += incr; } in operator ()()
45 int operator()(int& val, int incr) const in operator ()() argument
46 { return val += incr; } in operator ()()
Dlimits_test.cpp88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) { in test_integral_limits() argument
89 if (!test_integral_limits_base(val, unknown_sign, is_signed)) in test_integral_limits()
173 _Tp val = lim::max(); in test_float_limits() local
174 val *= 2; in test_float_limits()
178 CHECK_COND(test_float_values(val, infinity)); in test_float_limits()
/ndk/sources/cxx-stl/gabi++/include/
Dunwind-arm.h148 uint32_t val; in _Unwind_GetGR() local
149 _Unwind_VRS_Get(ctx, _UVRSC_CORE, reg, _UVRSD_UINT32, &val); in _Unwind_GetGR()
150 return val; in _Unwind_GetGR()
153 static inline void _Unwind_SetGR(_Unwind_Context* ctx, int reg, uint32_t val) { in _Unwind_SetGR() argument
154 _Unwind_VRS_Set(ctx, _UVRSC_CORE, reg, _UVRSD_UINT32, &val); in _Unwind_SetGR()
160 static inline void _Unwind_SetIP(_Unwind_Context* ctx, uint32_t val) { in _Unwind_SetIP() argument
163 _Unwind_SetGR(ctx, UNWIND_IP_REG, (val | thumbState)); in _Unwind_SetIP()
/ndk/sources/host-tools/make-3.81/
Dar.c86 long int val; in ar_member_date() local
110 val = ar_scan (arname, ar_member_date_1, (intptr_t) memname); in ar_member_date()
116 return (val <= 0 ? (time_t) -1 : (time_t) val); in ar_member_date()
146 register int val; in ar_touch() local
164 val = 1; in ar_touch()
181 val = 0; in ar_touch()
192 return val; in ar_touch()
/ndk/sources/host-tools/sed-4.2.1/lib/
Dquotearg.c628 char *val; member
644 free (sv[i].val); in quotearg_free()
645 if (sv[0].val != slot0) in quotearg_free()
647 free (sv[0].val); in quotearg_free()
649 slotvec0.val = slot0; in quotearg_free()
701 char *val = sv[n].val; in quotearg_n_options() local
704 size_t qsize = quotearg_buffer_restyled (val, size, arg, argsize, in quotearg_n_options()
711 if (val != slot0) in quotearg_n_options()
712 free (val); in quotearg_n_options()
713 sv[n].val = val = xcharalloc (size); in quotearg_n_options()
[all …]
/ndk/sources/cxx-stl/stlport/src/
Dnum_get_float.cpp149 void _Stl_set_exponent(uint64 &val, uint64 exp) in _Stl_set_exponent() argument
150 { val = (val & ~exponent_mask) | ((exp & bit11) << 52); } in _Stl_set_exponent()
331 double val; member
474 return drep.val; in _Stl_atod()
846 __string_to_float(const __iostring& v, float& val) in __string_to_float() argument
849 val = (float)_Stl_string_to_double(v.c_str()); in __string_to_float()
851 val = (float)_Stl_string_to_doubleT<double,ieee754_double,12,IEEE754_DOUBLE_BIAS>(v.c_str()); in __string_to_float()
856 __string_to_float(const __iostring& v, double& val) in __string_to_float() argument
859 val = _Stl_string_to_double(v.c_str()); in __string_to_float()
861 val = _Stl_string_to_doubleT<double,ieee754_double,12,IEEE754_DOUBLE_BIAS>(v.c_str()); in __string_to_float()
[all …]
/ndk/sources/android/cpufeatures/
Dcpu-features.c285 int val = 0; in parse_decimal() local
290 val = val*10 + d; in parse_decimal()
296 *result = val; in parse_decimal()
354 int val, start_value, end_value; in cpulist_parse() local
379 for (val = start_value; val <= end_value; val++) { in cpulist_parse()
380 cpulist_set(list, val); in cpulist_parse()
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/
Dtest_allocator.h60 void construct(pointer p, const T& val) in construct() argument
61 {::new(p) T(val);} in construct()
63 void construct(pointer p, T&& val) in construct() argument
64 {::new(p) T(std::move(val));} in construct()
/ndk/sources/cxx-stl/llvm-libc++/test/re/
Dtest_allocator.h60 void construct(pointer p, const T& val) in construct() argument
61 {::new(p) T(val);} in construct()
63 void construct(pointer p, T&& val) in construct() argument
64 {::new(p) T(std::move(val));} in construct()
/ndk/sources/cxx-stl/llvm-libc++/test/containers/
Dtest_allocator.h60 void construct(pointer p, const T& val) in construct() argument
61 {::new(p) T(val);} in construct()
63 void construct(pointer p, T&& val) in construct() argument
64 {::new(p) T(std::move(val));} in construct()

123